
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@larsthorup/local
Advanced tools
Simplify requiring local modules
The purpose of this module is to make it easy to keep self-contained Node modules in the same repo as the rest of your app during initial development, in such a way that you can easily convert the module to be a real external module eventually.
npm install @larsthorup/local --save
var local = require('@larsthorup/local');
var config = local('config');
You can optionally declare local modules in dependency order in package.json. If so, local() will verify requests against the declaration, unless NODE_ENV is production:
{
"config": {
"@larsthorup/local": {
"modules": [
"core",
"lib"
]
}
}
}
var util = local('util'); // Note: will throw an error
var core = local('core'); // Note: will succeed if in some source file in lib
var lib = local('lib'); // Note: will throw an error if in some source file in core
FAQs
Simplify requiring local modules
We found that @larsthorup/local 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.