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.
@tejp/testing-streams
Advanced tools
Streams for test cases.
The streams read/write predefined data and errors.
A readable stream that produces the given chunks
of data when sombody tries
to read from the stream.
chunks
is an array that contains data objects, but it can also contain Error
instances if the stream should emit errors. Additionally chunks
can contain
functions that are called as callbacks and can implement more complicated custom
behavior.
For each read() the stream processes the next items in chunks
.
function readHandler(stream) {
// We could push some data
stream.push("some data");
// We could also emit an error
stream.emit('error', new Error("some error"));
// If we return a truthy value, the ChunkReader immediately processes
// the next chunk. If it's falsy ChunkReader instead waits for the
// next read.
return true;
}
const reader = new ChunkReader(["plain data", readHandler, new Error("a failure")])
// calls to reader.read() will return "plain data" and "some data" and then raise
// errors "some error" and "a failure".
A writable stream that accepts and ignores anything that is written to it .
FAQs
Streams for test cases
The npm package @tejp/testing-streams receives a total of 1 weekly downloads. As such, @tejp/testing-streams popularity was classified as not popular.
We found that @tejp/testing-streams 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.