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.
@machinshin/multer-gcs
Advanced tools
Google Cloud Storage Multer Storage Engine
Multer Storage Engine that uses Google Cloud Storage as a storage system.
Please read official documentation at https://googlecloudplatform.github.io/gcloud-node/#/docs/v0.36.0/storage for additional options
npm install multer-gcs
var multer = require( 'multer' );
var gcs = require( 'multer-gcs' );
var storage = gcs({
filename : function( req, file, cb ) {
cb(null, file.fieldname + '-' + Date.now());
},
bucket: 'bucket-name', // Required : bucket name to upload
projectId: 'dummy-project', // Required : Google project ID
keyFilename: '/path/to/keyfile.json', // Required : JSON credentials file for Google Cloud Storage
acl: 'publicRead' // Optional : Defaults to projectPrivate. See options in the link below:
//https://cloud.google.com/storage/docs/access-control/lists
});
var gcsUpload = multer({ storage: storage });
app.post( '/upload', gcsUpload.single( 'file' ), function( req, res, next ) {
res.send( 'File was uploaded successfully!' );
});
You can also use environment variables for multer-gcs parameters.
GCS_BUCKET='bucket-name'
GCLOUD_PROJECT='dummy-project'
GCS_KEYFILE='/path/to/keyfile.json'
FAQs
Streaming multer storage engine for Google Cloud Storage
The npm package @machinshin/multer-gcs receives a total of 0 weekly downloads. As such, @machinshin/multer-gcs popularity was classified as not popular.
We found that @machinshin/multer-gcs 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.