Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
blocking-promise-chain
Advanced tools
A chain of promises that blocks when a limit is reached. This is useful in an async function to keep an outstanding number of promises running (to keep target busy). See below for examples:
Say you have a loop that's doing some external IO:
async function worker() {
for (const data of allMyData) {
await request.post(serverUrl, data);
}
}
Nothing wrong here, except that the next post starts only when previous post is finished. To keep server fully busy, we should maintain a queue of outstanding requests. Using this module, code becomes:
import {BlockingPromiseChain} from 'blocking-promise-chain';
const MaxQueuedRequest = 10;
async function worker() {
let chain = new BlockingPromiseChain(MaxQueuedRequest);
for (const data of allMyData) {
await chain.add(request.post(serverUrl, data));
}
await chain.flush(); // ensure all outstanding requests are finished
}
Simple as that.
FAQs
blocking-promise-chain
The npm package blocking-promise-chain receives a total of 1 weekly downloads. As such, blocking-promise-chain popularity was classified as not popular.
We found that blocking-promise-chain 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.