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.
A JS framework for the fastest process manager written in C++ and Rust, Fproc.
npm install fprocjs
const FPROC = require("fprocjs");
const fproc = new FPROC(async () => {
// Run when ready
// Run the test file with an ID of 0 (first process)
console.log(await fproc.run("node examples/run.js", 0));
// Get all running processes
console.log(await fproc.list());
// Stop the first process
console.log(await fproc.stop(0));
// Restart the first process
console.log(await fproc.restart(0));
// Delete the first process
console.log(await fproc.delete(0));
// Close the connection to fproc (If you don't do this Node will run until you do)
fproc.closeFproc();
});
Look at src/fproc.js for all functions and full documentation
Go to https://github.com/BlueCannonBall/fproc/blob/main/README.md for instructions
FAQs
A JS framework for the fastest process manager written in C++ and Rust, Fproc.
The npm package fprocjs receives a total of 0 weekly downloads. As such, fprocjs popularity was classified as not popular.
We found that fprocjs 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.