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.
List and manage the variables system environment, and uses other extra features.
List and manages all system environment variables.
$ npm install entorn --save
console.log("List all environment variables:" + entorn.list());
console.log("CPUs: ", entorn.cpus); // list of all CPU
console.log("Free memory: ", entorn.free);
console.log("Similary: ", entorn.similary("NODE")); // list of all variables similar environment
console.log("have java installed? " + entorn.hasJavaHome()); // true | false
console.log("where java is installed? " + entorn.getJavaHome()); // string dir folder java
console.log("What is the name of the user of this computer? ", entorn.User()); // username of the session
console.log("You have it set android? ", entorn.hasAndroidHome()); // true | false
console.log("has axs?", entorn.has("axs")); // true | false
console.log("or, has SESSION?", entorn.has("SESSION")); // true | false
console.log("get NODE_PATH", entorn.get("NODE_PATH")); // string dir folder
//console.log("Set: ", entorn.set("YOUR_ENV_VAR", "ANY VALUES"));
console.log("CPUs: ", entorn.cpus);
console.log("Free memory: ", entorn.free);
console.log("Network Interfaces: ", entorn.networkInterfaces);
console.log("or Network Interfaces: ", entorn.ni);
console.log("Platform: ", entorn.platform); // 'aix', 'darwin', 'freebsd', 'linux', 'openbsd', 'sunos', 'win32'
console.log("Total memory: ", entorn.totalmem);
console.log("Current folder: ", entorn.current); // Returns the current working directory of the Node.js process. Similiar to command "pwd" on bash linux
console.log("Version nodejs: ", entorn.version);
console.log("or Version nodejs: ", entorn.v);
console.log("Detail Nodejs: ", entorn.vdetail);
/**
* [listmodules listing nodemodules globals]
*/
entorn.listmodules(function (err, list) {
if (err) console.log("ERROR", err);
console.log("Listing nodemodules globals:", list);
});
/**
* [exec command in the shell or cmd]
*/
entorn.exec("atom .", function (err, stdout) {
if (err) console.log("ERROR", err);
console.log("Result:", stdout);
});
FAQs
List and manage the variables system environment, and uses other extra features.
We found that entorn 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.