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.
Allows for programming with assertions/invariant-based programming during development without slowing down production.
Allows for programming with assertions/invariant-based programming during development without slowing down production.
Any donations would be much appreciated. 😄
deassert
is available as part of the Tidelift Subscription.
Tidelift is working with the maintainers of deassert
and a growing network of open source maintainers
to ensure your open source software supply chain meets enterprise standards now and into the future.
Learn more.
# Install with npm
npm install -D deassert
# Install with pnpm
pnpm add -D deassert
# Install with yarn
yarn add -D deassert
# Install with bun
bun add -D deassert
import deassert from "deassert";
const result = deassert(code, options);
console.log(result.code);
modules
An array of modules to be considered assert modules. These modules will be what is stripped out.
["assert", "assert/strict", "node:assert", "node:assert/strict"];
sourceMap
Determines if a source map should be generated.
MagicString source map options can be passed in.
false
If true
is passed, then these options will be used:
{
"hires": true,
}
ast
The AST of the code that is passed in.
Providing this is optional, but if you have the AST already then we can use that instead of generating our own.
undefined
acornOptions
The options provided to Acorn to parse the input code. These are not used if an AST is provided.
{
"sourceType": "module",
"ecmaVersion": "latest",
}
FAQs
Allows for programming with assertions/invariant-based programming during development without slowing down production.
We found that deassert demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.