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.5.0 (2021-02-08)
#233
: Implement real fifo queue1d63739
: Implement true FIFO697eef1
: Add validations for creating fifo-queuedde8037
: Upgrade dependencies40bab64
: Update package-lock2911576
: Add edge case for fifo deduplicationf071e93
: Add unit tests5ff6a19
: Update renovatedc288ea
: Upgrade dependencies8b5453f
: Upgrade major dependencies72e9e61
: Upgrade dependenciese5eed58
: Upgrade dependenciesf0bbb21
: Add TODOsFAQs
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.