
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
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 85 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.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.