Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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 16,579 weekly downloads. As such, gulp-clone popularity was classified as 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.