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.
A minimal reimplementation of AbortController and AbortSignal.
This library is only 0.8kb minified, but it's not strictly spec-compliant, if you need that go with abort-controller
.
npm install --save aborter
import Aborter from 'aborter';
const aborter = new Aborter ();
console.log ( aborter.signal.aborted ); // => false
aborter.signal.addEventListener ( 'abort', () => {
console.log ( aborter.signal.aborted ); // => true
});
aborter.abort (); // Aborting, causing event handlers to be triggered and the "aborted" property to be set to "true"
MIT © Fabio Spampinato
FAQs
A minimal reimplementation of AbortController and AbortSignal.
We found that aborter 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.