Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
An implementation of Amazon's SQS
$ sqslite --help
Usage: sqslite [options]
A SQS http server
Options:
--help Display this help message and exit
--port <port> The port to listen on (default: 4567)
Report bugs at github.com/jennyEckstein/sqslite/issues
Or programmatically:
const sqslite = require('sqslite');
sqslite({}).listen(3001, (err, address) => {
if (err) throw err;
console.log(`server listening on ${address}`);
});
Once running, here's how to use AWS SDK to connect:
const AWS = require('aws-sdk');
const sqs = new AWS.SQS({ endpoint: 'http://localhost:3001' });
await sqs.listQueues().promise();
With npm do:
$ npm install -g sqslite
At the moment only createQueue and listQueue are available.
v0.4.2 (2020-11-30)
#189
: Add change message visibility batch function#188
: Update dependency prettier to ^2.2.1#180
: Update dependency aws-sdk to ^2.799.0#181
: Update dependency @types/node to ^14.14.10#182
: Update dependency superstruct to ^0.10.13#183
: Update dependency typescript to ^4.1.2#184
: Update dependency prettier to ^2.2.0#185
: Update dependency eslint to ^7.14.0#186
: Update dependency lint-staged to ^10.5.269929a2
: Validate VisibilityTimeout parameter for changeMessageVisibility function0707017
: Upgrade to latest version of superstruct with breaking changesFAQs
Lightweight module for integration testing AWS SQS.
The npm package sqslite receives a total of 117 weekly downloads. As such, sqslite popularity was classified as not popular.
We found that sqslite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.