
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.
aws-serverless-express-binary
Advanced tools
Supported image upload forward to Node Server. This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using your existing Node.js application framework.
Customized from https://github.com/awslabs/aws-serverless-express
. This supported image upload via node server like NestJS, etc...
Check details at: https://github.com/awslabs/aws-serverless-express
npm install aws-serverless-express-binary
req.on("data", function(chunk) {
data.push(chunk);
})
.on("end", function() {
body = Buffer.concat(data).toString();
var bb = new busboy({ headers: { 'content-type': contentType } });
bb.on('file', function (fieldname, file, filename, encoding, mimetype) {
const mimeType = mimetype;
const ext = filename.split('.')[1];
let chunks;
file.on('data', function (data) {
chunks = data;
}).on('end', function () {
let base64Image = new Buffer(chunks.toString(), 'binary').toString('base64');
const fileData = new Buffer(base64Image, 'base64');
});
})
bb.end(body);
FAQs
Supported image upload forward to Node Server. This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using your existing Node.js application framework.
The npm package aws-serverless-express-binary receives a total of 149 weekly downloads. As such, aws-serverless-express-binary popularity was classified as not popular.
We found that aws-serverless-express-binary 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.