
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Duplicate files in memory.
Install with npm.
npm install --save-dev gulp-clone
clone.sink()
property.gulp-clone is useful in all those situations where you perform a destructive operation on your files (as for example concat) and you want to keep your original files for further processing or saving.
var gulp = require('gulp');
var concat = require('gulp-concat');
var clone = require('gulp-clone');
var es = require('event-stream');
gulp.task('default', function () {
var scripts = gulp.src('assets/**/*.js');
var bundle = scripts.pipe(clone())
.pipe(concat('bundle.js'));
// Merge the streams together, then write them to the out folder
return es.merge(scripts, bundle).pipe(gulp.dest('out'));
});
##Example - Bypass mode
var gulp = require('gulp');
var concat = require('gulp-concat');
var clone = require('gulp-clone');
var cloneSink = clone.sink();
gulp.task('default', function () {
gulp.src('assets/**/*.js')
.pipe(cloneSink) //<- clone objects streaming through this point
.pipe(concat("bundle.js"))
.pipe(cloneSink.tap()) //<- output cloned objects + bundle.js
.pipe(gulp.dest('out/')); //<- saves bundle.js + original files in one pass
});
MIT @ Mario Casciaro
FAQs
Clone files in memory in a gulp stream
The npm package gulp-clone receives a total of 0 weekly downloads. As such, gulp-clone popularity was classified as not popular.
We found that gulp-clone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.