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.
lambda-s3-archiver
Advanced tools
This nodejs module will read and archive files in AWS S3 bucket using stream, and store the archive file in S3 as well.
npm install lambda-s3-archiver --save
This nodejs module will read and archive files in AWS S3 bucket using stream, and store the archive file in S3 as well. It works very well archiving any files in S3 bucket. Since it is using stream in both reading the source files and writing the archive file, it can safely process large files without too much memory needed in the lambda.
/*
* This nodejs module will read and archive files in AWS S3 bucket using stream, and store the archived file in S3 as well..
* @param {sourceBucket} - the S3 bucket containing the files to archive
* @param {sourcePath} - the S3 prefix/path containing the files to archive
* @param {sourceFiles} - (OPTIONAL) the list of filenames in the sourcePath to archive
* - If not specified, all the files in sourcePath will be included in the archive
* @param {outputFilename} - the filename of the archive file. Default to 'archive'.
* @param {outputFormat} - the format of the archive file (zip | tar). Default to 'zip'.
* @param {uploadOptions} - additional options passed to s3.upload https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/S3.html#upload-property
* @return {object} - a JSON object containing the details of the archive file.
{
s3Bucket: 's3-bucket-name',
fileKey: 's3-prefix-path/archive.zip',
fileSize: 1024
}
*/
const s3Archiver = require('lambda-s3-archiver');
const result = await s3Archiver.archive('s3-bucket-name', 's3-prefix-path');
console.log(result);
const s3Archiver = require('lambda-s3-archiver');
const result = await s3Archiver.archive('s3-bucket-name', 's3-prefix-path', [], 'outputFile', 'zip');
console.log(result);
const s3Archiver = require('lambda-s3-archiver');
const result = await s3Archiver.archive('s3-bucket-name', 's3-prefix-path', ['files1', 'files2'], 'outputFile', 'tar');
console.log(result);
const s3Archiver = require('lambda-s3-archiver');
const result = await s3Archiver.archive('s3-bucket-name', '', [], 'outputFile', 'zip');
console.log(result);
Please make sure the lambda has read and write access to the source S3 Bucket.
Sample Lambda using the lambda-s3-archiver, with Cloudformation, can be found in https://github.com/francismeynard/aws-journey/tree/master/sample-s3-archiver-service.
npm run test
1.0.0 - Initial stable release
1.1.0 - Added support for additional s3.upload params
1.2.0 - Fixed issue on archiving ALL files in the S3 prefix/folder where the prefix is included s3.listObjects.
1.3.0 - Added support for path with more than 1000 files.
1.4.0 - Added support to archive at the S3 root level.
FAQs
This nodejs module will read and archive files in AWS S3 bucket using stream, and store the archive file in S3 as well.
We found that lambda-s3-archiver 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.