
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.
decrypt-kms-env
Advanced tools
Simple util for decrypting secure environment variables encrypted using KMS
Simple util for decrypting secure environment variables encrypted using KMS.
Include decrypt-kms-env
in your project's package.json
.
Once installed, run your application in your Dockerfile prefixed:
RUN eval $(./node_modules/.bin/decrypt-kms-env) && npm start
Follows a simple convention whereby:
secure:
,decrypt-kms-env
is passed to eval
in a shell, values are decrypted in-place. Scrubbed debug output is provided so you can confirm env vars have been decrypted and set.> eval $(./node_modules/.bin/decrypt-kms-env)
Decrypted SecureValueA=************1231
Decrypted SecureValueB=************913X
If you don't have access to a shell to set env vars before starting your app, you can run decrypt-kms-env
via JS.
var dke = require('decrypt-kms-env');
dke(process.env, function(err, scrubbed) {
if (err) throw err;
// Values in process.env are now decrypted.
// To debug use `scrubbed` instead of logging `process.env` directly.
// console.log(scrubbed);
});
We use this from within Docker containers to decrypt env vars encrypted via KMS.
For projects using python
& awscli
rather than node, the v1.x
branch of this project can be used.
# Install
curl -sL https://github.com/mapbox/decrypt-kms-env/archive/v1.0.6.tar.gz | tar --gunzip --extract --strip-components=1 --exclude=readme.md --directory=/usr/local
# Run app
. decrypt-kms-env && npm start
FAQs
Simple util for decrypting secure environment variables encrypted using KMS
The npm package decrypt-kms-env receives a total of 322 weekly downloads. As such, decrypt-kms-env popularity was classified as not popular.
We found that decrypt-kms-env 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.