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.
@heyveryouaire/string_and_more
Advanced tools
const { lower } = require("heyveryouaire/string_and_more")
lower("string")
const { upper } = require("heyveryouaire/string_and_more")
upper("string")
const { getPersonGender } = require("heyveryouaire/string_and_more")
getPersonGender({
name: "name",
sex: "male"
})
tscongif.json
{
"compilerOptions": {
/* Language and Environment */
"target": "es2016",
/* Modules */
"module": "commonjs",
// ..
/* Emit */
"declaration": true, // Generate declaration
// ..
"outDir": "lib",
// ..
"esModuleInterop": true,
// ..
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
// ..
/* Completeness */
// ..
"skipLibCheck": true,
"exclude": ["node_modules"]
}
}
package.json
{
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"build": "tsc"
},
}
FAQs
Char manipulate && gender check
The npm package @heyveryouaire/string_and_more receives a total of 2 weekly downloads. As such, @heyveryouaire/string_and_more popularity was classified as not popular.
We found that @heyveryouaire/string_and_more 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.