
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-signed-request
Advanced tools
Module to send signed requests to an AWS service.
Heavily inspired by aws samples.
npm install --save aws-signed-request
var elastic = require('aws-signed-request')({
endpoint: 'htps://your.elasticsearch.es.amazon.com',
region: 'eu-west-1',
service: 'es'
});
elastic.send({
method: 'GET',
path: '/domain/index/id'
}, function (err, data) {
console.log(data);
});
var gateway = require('aws-signed-request')({
endpoint: 'https://your.api.gateway.amazon.com',
region: 'eu-west-1',
service: 'execute-api'
});
gateway.send({
method: 'POST',
path: '/action'
}, function (err, data) {
console.log(data);
});
By default the module expects a JSON response. If you're expecting plain text you can call
elastic.send({
method: 'GET',
path: '/_cat/indices',
json: false
}, function (err, data) {
console.log(data); // as plain text
});
If json:true
and the response is not a valid JSON, the callback receives an error containing responseText
for debug purposes.
Clone the repo, write some test, make them pass and pull request your changes.
You can watch your tests by running
npm install -g watch
watch "npm test" . -d
FAQs
Helper to send signed request from a lambda
The npm package aws-signed-request receives a total of 1 weekly downloads. As such, aws-signed-request popularity was classified as not popular.
We found that aws-signed-request 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.