envtrap
v3.1.0
Published
Zero-Configuration Runtime Secret Leak Detector for Node.js 18+
Maintainers
Readme
envtrap
A zero-configuration runtime secret leak detector and egress firewall for Node.js.
envtrap wraps your Node.js application and intercepts every outbound channel in real time — before secrets, credentials, or sensitive environment variables can be exfiltrated by malicious code, compromised packages, or insider threats.
Unlike static analysis (SAST) tools that scan source code at build time, envtrap operates at execution time — inspecting actual traffic, subprocesses, DNS queries, and output streams as they happen.
Developer & Architecture Documentation
If you want to understand how the codebase works, how modules are intercepted, or how to contribute, refer to our modular developer guides:
- System Architecture: High-level design, directory structure layout map, and component responsibilities.
- Interception Flow & Runtime Hooks: ESM loaders, CommonJS require patching, parent-child communication line protocol, and TLS proxy decryption.
- SOLID Coding Principles & Standards: Details on Clean Architecture boundaries, SOLID design patterns, stateless execution, and testability design guidelines.
- Extending envtrap: Step-by-step guides to add a new scan channel, create custom secret loaders, write custom reporters, and add integration tests.
- Contributing Guidelines: Setup instructions, local testing, build compilation, and PR rules.
- Security Policy: Supported versions and disclosure rules.
- License: MIT License details.
Interception Channels
envtrap intercepts leaks across five distinct runtime vectors:
- HTTPS/HTTP MITM Proxy (
networkchannel): Routes outbound TCP connections through an ephemeral, in-memory loopback proxy. Intercepts request headers, URLs, and payloads, verifying them before forwarding. Ephemeral TLS certificates are generated on-the-fly and trusted by injecting a temporary Root CA intoNODE_EXTRA_CA_CERTS. - Standard Output Scanning (
stdout/stderrchannels): Hooks standard output streams to search for registered credentials. Matches are redacted using a secure SHA-256 fingerprint placeholder. - Subprocess Environment Check (
child_processchannel): Hooks Node.js process creation modules (child_process.spawn,exec,fork, and their synchronous equivalents) at the binding layer to prevent sensitive credentials from being inherited by child processes. - DNS Resolution Auditing (
dnschannel): Hooks the corenode:dnsmodule to detect secrets encoded directly inside hostname resolution queries. - High-Entropy Label Detection: Uses Shannon entropy analysis on subdomain labels to automatically flag potential base64/hex DNS tunneling vectors.
Installation
# Global install
npm install -g envtrap
# Dev dependency
npm install --save-dev envtrap
# One-off, no install
npx envtrap run node app.jsUsage
Prefix your existing Node.js startup command with envtrap run:
envtrap run node app.js
# Express / Fastify
envtrap run node server.js
# NestJS
envtrap run node dist/main.js
# Next.js (server-side protection)
envtrap run npm run startCLI Flags
# Custom .env file path
envtrap run --env-file .env.production node app.js
# Disable HTTPS MITM proxy (bypasses network interception)
envtrap run --no-mitm node app.js
# Verbose output (logs cert issuance and network handshake information)
envtrap run --verbose node app.js
# Quiet mode (suppress terminal alerts, prints exit summary only)
envtrap run --quiet node app.js
# Append JSONL events to a custom file
envtrap run --log-file logs/envtrap.jsonl node app.js
# Verify the syntax of envtrap.json
envtrap checkConfiguration (envtrap.json)
You can customize rules by creating an envtrap.json file in your project root:
{
"channels": {
"stdout": "warn",
"stderr": "warn",
"network": "block",
"child_process": "warn",
"dns": "block"
},
"exclusions": {
"domains": ["api.stripe.com", "api.openai.com"],
"paths": ["test/**", "**/__tests__/**"]
},
"entropy": {
"threshold": 3.5,
"minLength": 12
},
"quiet": false,
"logFile": null
}Channel Modes
block: Halts execution, closes the network stream, or interrupts the system command immediately when a secret leak is detected.warn: Emits a warning log detailing the leak event, redacts the matched content, and allows the operation to proceed.off: Disables the corresponding interception channel entirely.
Exclusions & Subdomain Bypasses
domains: Bypasses network interception for specific target hosts. These domains are automatically appended to the environment'sNO_PROXYparameters.paths: Glob patterns targeting source files. Detections originating from source code inside these paths are ignored.
