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.
Environment variable zero-config configuration in Node.js and Browser
Configuration is tedious. Worrying about file locations, data formats and reacting to change is complex in Node. It gets even harder when developing code shared between Node and Browser.
envyconf is a simplistic approach:
window
,
in Node use process.env
.In the browser, envyConf
is available in window
after loading the script.
In Node.JS/Webpack, it can be loaded as a CommonJS or es6 module.
const {envyConf} = require('envyconf')
// or
import {envyConf} from 'envyconf'
Running this in Node.JS:
MYAPP_BAR='metasyntax' node -e "console.log(envyConf('MYAPP', {FOO: '42'}))"
# {FOO: 42, BAR: 'metasyntax'}
The same in Browser:
window.MYAPP_BAR='metasyntax'
console.log(envyConf('MYAPP', {FOO: '42'}))
// {FOO: 42, BAR: 'metasyntax'}
FAQs
Environment variable zero-config configuration in Node.js and Browser
The npm package envyconf receives a total of 1 weekly downloads. As such, envyconf popularity was classified as not popular.
We found that envyconf 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.