Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
lambda-leak
Advanced tools
Simple utility to detect resource leaks in AWS Lambda handlers using Node.js that can lead to expensive charges lengthy operations or failures from timeouts.
Install via npm.
npm install lambda-leak
The lambda-leak
detector should be used within a unit testing environment, like mocha
, to capture and diagnose potential resource leaks. The
following example demonstrates how to use the leak detector inside a unit test.
'use strict';
const lambdaLeak = require( 'lambda-leak' );
const handler = require( 'my-lambda-handler-module' );
describe( 'myModule', function() {
describe( 'handler', function() {
it( 'detect leak in my handler', function( done ) {
const state = lambdaLeak.capture();
handler( {/* event*/, { /* context */}, function( err, result ) {
if( err ) {
return done( err );
}
let difference = state..getDifferenceInHandles();
if( difference.length > 0 ) {
console.log( 'leaks', difference );
// leaks detected
done( new Error( 'leaks detected' ) );
}
done();
});
});
});
});
lambda-leak
lambda-tester
- reduce the time and effort to test AWS Lambda handlers.We'd love to get feedback on how you're using lambda-tester and things we could add to make this tool better. Feel free to contact us at feedback@vandium.io
FAQs
AWS Lambda Resource Leak Detector
We found that lambda-leak 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.