CWE-316: Cleartext Storage of Sensitive Information in Memory - JavaScript/Node.js
Overview
Storing sensitive data (passwords, cryptographic keys, tokens) in memory as cleartext in JavaScript exposes it to core dumps, attached debuggers, and heap profilers. JavaScript strings are immutable and cannot be overwritten in place, so they can remain until garbage collection and may appear in heap snapshots. Use Buffer for sensitive data where APIs support it, clear buffers explicitly with fill(0), and avoid logging or concatenating sensitive values.
Primary Defence: Use Buffer for passwords and keys with explicit .fill(0) in finally blocks where the surrounding APIs allow it, minimize string copies, use crypto.timingSafeEqual() for fixed-length secret comparisons, and keep secrets out of logs, heap snapshots, crash reports, and long-lived process state.
Common Vulnerable Patterns
Storing password as String
// VULNERABLE - String is immutable, persists in V8 heap
class InsecureAuth {
constructor() {
// Password stored as immutable string
this.password = '';
}
login(username, password) {
// Password stored as string - cannot be cleared
this.password = password;
// Password remains in memory indefinitely
const result = this.verifyPassword(username, password);
// Even setting to empty string doesn't clear original
this.password = '';
return result;
}
}
Why this is vulnerable: JavaScript strings are immutable, so there is no operation that overwrites one - reassigning the variable only drops a reference. V8's scavenger then copies surviving objects between semispaces, which means a string that lives long enough exists at more than one address, and the abandoned copies are not zeroed.
The retrieval path is ordinary tooling. v8.writeHeapSnapshot(), a --inspect session's heap profiler, or a core dump read with llnode all render every live string in plaintext, and snapshots are routinely captured to diagnose leaks in production.
Storing API keys as string properties
// VULNERABLE - API keys persist in heap
class APIClient {
constructor(apiKey, apiSecret) {
// Immutable strings - visible in heap dumps
this.apiKey = apiKey;
this.apiSecret = apiSecret;
}
async makeRequest(endpoint) {
// API key exposed in memory
const response = await fetch(endpoint, {
headers: {
'Authorization': `Bearer ${this.apiKey}`
}
});
return response.json();
}
}
Why this is vulnerable: A property on a module-level or singleton client keeps the value reachable for the process lifetime, so it appears in every snapshot taken after startup rather than only during a request.
process.env deserves separate mention because it is where keys usually come from. Node materialises the environment into strings at startup and they are never collected, so process.env.API_KEY is resident whether or not anything reads it - and on Linux the same values are readable from /proc/self/environ by any process running as the same user, without touching the heap at all.
Logging sensitive data
import winston from 'winston';
const logger = winston.createLogger({
transports: [new winston.transports.File({ filename: 'app.log' })]
});
// VULNERABLE - Password logged to file
function login(username, password) {
logger.debug(`Login attempt: ${username} with password ${password}`);
// Password now in log files and log string objects
const success = authenticate(username, password);
logger.info(`Login result: ${success}`);
return success;
}
Why this is vulnerable: A template literal is evaluated before the logger sees it, so the string is built whether or not debug is enabled - the level check happens after the interpolation, and the constructed string is garbage but not gone.
Winston and pino both offer redaction, and both work on paths they were configured with: redact: ['password'] misses body.password, credentials.pass, and anything an object spread renamed on the way in. Passing whole request or config objects to a logger is what turns that from a theoretical gap into the usual cause, because the object carries fields nobody enumerated.
Not clearing Buffers
import crypto from 'crypto';
// VULNERABLE - Buffer never cleared
function hashPassword(password) {
const passwordBuffer = Buffer.from(password, 'utf8');
// Use buffer for hashing
const hash = crypto.createHash('sha256')
.update(passwordBuffer)
.digest('hex');
// Buffer never cleared - remains in memory
return hash;
}
Why this is vulnerable: This is the one case in Node where clearing is genuinely available and was skipped. Buffer wraps mutable memory, so passwordBuffer.fill(0) in a finally block does what the equivalent cannot do for a string.
It only closes half of this example, and the half it leaves is the one that matters. Buffer.from(password, 'utf8') copies from a password that is already a string, so the plaintext is on the heap before the buffer exists and stays there after it is wiped. Clearing buffers is worth doing where the secret arrives as bytes - from a socket, a file read, or crypto.randomBytes() - and is close to pointless where a string was the source.
Concatenating sensitive strings
// VULNERABLE - Creates multiple immutable copies
function buildAuthHeader(username, password) {
// Each concatenation creates new immutable string
const credentials = username + ':' + password;
const encoded = Buffer.from(credentials).toString('base64');
const header = 'Basic ' + encoded;
// Now we have 4+ copies of sensitive data in memory:
// password, credentials, encoded, header
return header;
}
Why this is vulnerable: Each step allocates a new immutable string and abandons the previous one, so the count in the comment is a lower bound rather than an estimate. V8 also represents a + b as a rope that references both operands rather than copying them immediately, which keeps the inputs alive for longer than the source suggests - the flattening happens when something reads the result.
Buffer.from(credentials) then copies again into memory that can be cleared, and .toString('base64') copies back out into memory that cannot. Base64 is an encoding, not a protection: the header is as recoverable from a snapshot as the password was.
Secure Patterns
Using Buffer for passwords with explicit clearing
import crypto from 'crypto';
class SecureAuth {
authenticate(username, passwordString) {
// Convert to Buffer immediately (mutable)
const passwordBuffer = Buffer.from(passwordString, 'utf8');
try {
// Use buffer for authentication
return this.verifyPassword(username, passwordBuffer);
} finally {
// Always clear buffer from memory
passwordBuffer.fill(0);
}
}
verifyPassword(username, passwordBuffer) {
// The stored record carries the per-user salt with the hash
const { salt, hash: storedHash } = this.getStoredCredential(username);
// scrypt is a password KDF: deliberately slow and memory-hard.
// crypto.createHash('sha256') would be the wrong primitive here - a
// fast hash is what an offline cracker wants.
const hash = crypto.scryptSync(passwordBuffer, salt, storedHash.length, {
N: 2 ** 15, r: 8, p: 1, maxmem: 64 * 1024 * 1024
});
try {
return hash.length === storedHash.length
&& crypto.timingSafeEqual(hash, storedHash);
} finally {
hash.fill(0);
}
}
}
Why this works:
Bufferobjects are mutable: Unlike strings, they can be overwritten in place withfill(0)- Buffers exist outside V8's managed heap: This avoids string table persistence and enables explicit clearing
finallyblock: Clearing happens even if authentication throws- A password KDF, not a general-purpose hash:
crypto.scryptSyncis deliberately slow and memory-hard, so an attacker holding the stored hashes cannot test candidates at GPU speed.createHash('sha256')is the wrong primitive for this even with a salt, andcrypto.pbkdf2Syncwith 600,000 SHA-256 iterations is the alternative where scrypt's memory cost is unacceptable - Per-user salt from the stored record: identical passwords produce different hashes, so one precomputed table cannot cover the user base
timingSafeEqual()reduces timing leakage for equal-length values: it throws on a length mismatch, so the lengths are compared first - and the derived hash is cleared infinallylike the password buffer- Minimizes string copies: Using
Bufferfor crypto operations avoids creating intermediate cleartext strings
Secure key management with automatic cleanup
import crypto from 'crypto';
class SecureKeyManager {
constructor(keyBuffer) {
// Store key in Buffer
this.keyBuffer = Buffer.from(keyBuffer);
this.cleared = false;
}
encrypt(plaintext) {
if (this.cleared) {
throw new Error('Key has been cleared');
}
const iv = crypto.randomBytes(12);
const cipher = crypto.createCipheriv('aes-256-gcm', this.keyBuffer, iv);
const encrypted = Buffer.concat([
cipher.update(plaintext),
cipher.final()
]);
const authTag = cipher.getAuthTag();
// Return iv + authTag + encrypted
return Buffer.concat([iv, authTag, encrypted]);
}
decrypt(ciphertext) {
if (this.cleared) {
throw new Error('Key has been cleared');
}
const iv = ciphertext.slice(0, 12);
const authTag = ciphertext.slice(12, 28);
const encrypted = ciphertext.slice(28);
const decipher = crypto.createDecipheriv('aes-256-gcm', this.keyBuffer, iv);
decipher.setAuthTag(authTag);
return Buffer.concat([
decipher.update(encrypted),
decipher.final()
]);
}
clear() {
if (!this.cleared && this.keyBuffer) {
this.keyBuffer.fill(0);
this.cleared = true;
}
}
}
// Usage with explicit cleanup
function processData(keyBuffer, data) {
const keyManager = new SecureKeyManager(keyBuffer);
try {
const encrypted = keyManager.encrypt(data);
// Use encrypted data
return encrypted;
} finally {
// Always clear key
keyManager.clear();
keyBuffer.fill(0);
}
}
Why this works:
- Clearable buffers: Keys are held in
Bufferobjects (mutable, outside the V8 heap) rather than strings, sofill(0)can overwrite them - AES-256-GCM security: Authenticated encryption - the auth tag gives integrity alongside confidentiality
- Nonce uniqueness: A fresh random 96-bit nonce per encryption, the common GCM recommendation, prevents nonce reuse under the same key
- Fail-fast enforcement: the
clearedflag makesencrypt()anddecrypt()throw once the key has been cleared - Complete cleanup: the
finallyinprocessData()clears both the manager's copy (keyManager.clear()) and the caller's buffer (keyBuffer.fill(0))
Express session with secure password handling
import express from 'express';
import bcrypt from 'bcrypt';
import crypto from 'crypto';
const app = express();
app.use(express.json());
// A real bcrypt hash of a value nobody knows, at the same cost as a live one.
// Verified against when the username does not exist, so both branches cost the
// same. A hash of '' would return in under a millisecond and reopen the gap.
const DUMMY_HASH = await bcrypt.hash(crypto.randomBytes(32).toString('base64'), 10);
app.post('/login', async (req, res) => {
const { username, password } = req.body;
// Convert password to Buffer immediately
const passwordBuffer = Buffer.from(password, 'utf8');
try {
// Get stored hash from database
const user = await User.findOne({ username });
// bcrypt.compare() accepts a Buffer, so nothing here converts back to a
// string. Hash unconditionally - branching on `user` first is what
// publishes which usernames exist.
const isValid = await bcrypt.compare(
passwordBuffer,
user ? user.passwordHash : DUMMY_HASH
);
if (user && isValid) {
req.session.userId = user.id;
res.json({ success: true });
} else {
res.status(401).json({ error: 'Invalid credentials' });
}
} finally {
// Clear password buffer
passwordBuffer.fill(0);
}
});
Why this works:
bcrypt.compare()takes aBuffer: so theBufferis the thing bcrypt is handed and.fill(0)clears the copy that was actually used. Converting back with.toString('utf8')is a common reflex here and it is not required - it produces an uncleanable string and leaves theBufferclearing you nothing- What this does not fix:
req.body.passwordis already a string by the time the handler runs, becauseexpress.json()parsed it. That copy cannot be cleared, so the honest description of this pattern is that it avoids adding copies downstream, not that it removes the one that exists - Configurable work factor: 10 rounds means 2^10 = 1,024 key-setup iterations, around 60 ms per verification on current hardware. Raise it until verification costs what you are willing to pay per login
- Session-based auth:
req.session.userId = user.idenables stateful authentication without password re-transmission - Enumeration prevention needs the uniform cost, not just the uniform message: an early
returnfor an unknown user answers in microseconds where a real verification takes tens of milliseconds, and the response body being identical does not hide that. Measured on bcrypt 6.0 at cost 10: 56 ms for a known user against 0.003 ms for an unknown one before this change, and 60 ms against 60 ms after it. The endpoint now runs the KDF on every request, so rate-limit it
Secure JWT token handler
import jwt from 'jsonwebtoken';
import crypto from 'crypto';
// The Next.js example below imports this file as '../../../lib/secure-jwt-handler'
export class SecureJWTHandler {
constructor(secretBuffer) {
// Store secret in Buffer
this.secretBuffer = Buffer.from(secretBuffer);
this.cleared = false;
}
createToken(payload) {
if (this.cleared) {
throw new Error('Secret has been cleared');
}
// jwt.sign accepts Buffer as secret
return jwt.sign(payload, this.secretBuffer, {
algorithm: 'HS256',
expiresIn: '1h'
});
}
verifyToken(token) {
if (this.cleared) {
throw new Error('Secret has been cleared');
}
return jwt.verify(token, this.secretBuffer, {
algorithms: ['HS256']
});
}
clear() {
if (!this.cleared && this.secretBuffer) {
this.secretBuffer.fill(0);
this.cleared = true;
}
}
}
Using it, as its own file - kept out of the module so importing the class does
not mint and verify a token as a side effect of the require:
import crypto from 'crypto';
import { SecureJWTHandler } from '../../../lib/secure-jwt-handler';
const secretBuffer = crypto.randomBytes(32);
const jwtHandler = new SecureJWTHandler(secretBuffer);
try {
const token = jwtHandler.createToken({ userId: 123 });
// Use token
const payload = jwtHandler.verifyToken(token);
console.log('User ID:', payload.userId);
} finally {
// Clear secret
jwtHandler.clear();
secretBuffer.fill(0);
}
Why this works:
- Clearable secret: the signing secret lives in a
Buffer, sofill(0)overwrites it in place instead of leaving a string behind - HMAC-SHA256 security: the signature covers the payload, so a modified token fails verification;
expiresIn: '1h'bounds how long one stays usable - Algorithm protection:
algorithms: ['HS256']inverify()prevents algorithm confusion attacks - Fail-fast enforcement: the
clearedflag makes token creation and verification throw once the secret has been cleared - Usage pattern: Generate 32-byte random secret (
crypto.randomBytes(32)), use in try-finally, clear both handler and original buffer on shutdown
Secure credential storage with crypto timing
import crypto from 'crypto';
class SecureCredentialStore {
constructor() {
this.credentials = new Map();
}
setCredential(key, valueString) {
// Convert to Buffer
const valueBuffer = Buffer.from(valueString, 'utf8');
// Store Buffer (mutable)
this.credentials.set(key, valueBuffer);
}
verifyCredential(key, inputString) {
const stored = this.credentials.get(key);
if (!stored) {
return false;
}
// Convert input to Buffer
const inputBuffer = Buffer.from(inputString, 'utf8');
try {
// Constant-time comparison (prevents timing attacks)
if (stored.length !== inputBuffer.length) {
return false;
}
return crypto.timingSafeEqual(stored, inputBuffer);
} finally {
// Clear input buffer
inputBuffer.fill(0);
}
}
clearCredential(key) {
const credential = this.credentials.get(key);
if (credential) {
// Clear buffer
credential.fill(0);
this.credentials.delete(key);
}
}
clearAll() {
// Clear all stored credentials
for (const [key, buffer] of this.credentials) {
buffer.fill(0);
}
this.credentials.clear();
}
}
// Usage
const store = new SecureCredentialStore();
try {
store.setCredential('apiKey', '<redacted-api-key>');
// Verify credential
const isValid = store.verifyCredential('apiKey', '<redacted-api-key>');
console.log('Valid:', isValid);
} finally {
// Always clear when done
store.clearAll();
}
Why this works:
- Mutable storage: credentials are held as
Bufferobjects rather than immutable strings, sofill(0)can clear them once they are no longer needed - Timing-safe comparison:
crypto.timingSafeEqual()compares equal-length buffers without an early exit, so the time taken does not vary with how many bytes matched - Length check trade-off:
timingSafeEqual()needs equal-length buffers, so the lengths are compared first; that leaks the credential's length, which is usually not secret - Cleanup methods:
clearCredential()zeros a buffer before removing it;clearAll()zeros every stored credential on shutdown or logout - Use cases: in-memory credential caches, API key stores, and session managers that hold a secret briefly and clear it explicitly
Next.js API route with secure password handling
// pages/api/auth/login.js
import bcrypt from 'bcrypt';
import crypto from 'crypto';
import { connectToDatabase } from '../../../lib/db';
// See the Express example above: a real hash at live cost, used for the
// unknown-username branch so it takes as long as a real verification. Held as
// a promise rather than a top-level `await`, because Next.js transpiles route
// modules and top-level await is not available in every build target.
// The JWT handler from the Express example above, as its own module
import { SecureJWTHandler } from '../../../lib/secure-jwt-handler';
const dummyHash = bcrypt.hash(crypto.randomBytes(32).toString('base64'), 10);
export default async function handler(req, res) {
if (req.method !== 'POST') {
return res.status(405).json({ error: 'Method not allowed' });
}
const { username, password } = req.body;
// Convert password to Buffer
const passwordBuffer = Buffer.from(password, 'utf8');
try {
const { db } = await connectToDatabase();
const user = await db.collection('users').findOne({ username });
// Buffer straight into bcrypt - no intermediate string - and no early
// return for the unknown user, so both paths cost the same.
const isValid = await bcrypt.compare(
passwordBuffer,
user ? user.passwordHash : await dummyHash
);
if (user && isValid) {
// Create session (using httpOnly cookies)
const token = createSecureSession(user.id);
res.setHeader('Set-Cookie', `token=${token}; HttpOnly; Secure; SameSite=Strict; Path=/`);
res.status(200).json({ success: true });
} else {
res.status(401).json({ error: 'Invalid credentials' });
}
} finally {
// Clear password buffer
passwordBuffer.fill(0);
}
}
function createSecureSession(userId) {
// Use secure JWT or session token
const secretBuffer = Buffer.from(process.env.JWT_SECRET, 'utf8');
try {
const jwtHandler = new SecureJWTHandler(secretBuffer);
const token = jwtHandler.createToken({ userId });
jwtHandler.clear();
return token;
} finally {
secretBuffer.fill(0);
}
}
Why this works:
- Buffer clearing: Converts password to
Bufferimmediately and clears it infinally. TheBufferis what bcrypt receives, so this is the copy that was used rather than one made only to be wiped - Next.js has already parsedreq.body.passwordinto a string that cannot be cleared - BCrypt verification:
compare()uses the salt and parameters encoded in the stored hash and avoids direct plaintext comparison. It acceptsBufferas well asstring, which is what keeps this path free of an intermediate string - Uniform cost for the unknown user: comparing against
dummyHashrather than returning early means the response time no longer says whether the account exists - Secure cookies:
httpOnlyprevents XSS access;Securerequires HTTPS;SameSite=Strictblocks cross-site requests, which is defense in depth against CSRF rather than a replacement for a token;Path=/available to all routes - JWT integration:
createSecureSession()loads the secret from the env var as aBuffer, mints the token, and clears the secret immediately; the outer try-finally clears it on the failure path too
Password hashing with automatic cleanup
import crypto from 'crypto';
import { promisify } from 'util';
const pbkdf2 = promisify(crypto.pbkdf2);
async function hashPassword(passwordString) {
const passwordBuffer = Buffer.from(passwordString, 'utf8');
const salt = crypto.randomBytes(16);
let hash;
let combined;
try {
// Use PBKDF2 for key derivation
hash = await pbkdf2(passwordBuffer, salt, 600000, 32, 'sha256');
// Combine salt + hash
combined = Buffer.concat([salt, hash]);
// Return as base64 for storage
return combined.toString('base64');
} finally {
// Clear intermediate buffers after the storage string has been produced
passwordBuffer.fill(0);
salt.fill(0);
if (hash) hash.fill(0);
if (combined) combined.fill(0);
}
}
async function verifyPassword(passwordString, storedHash) {
const passwordBuffer = Buffer.from(passwordString, 'utf8');
const combined = Buffer.from(storedHash, 'base64');
let inputHash;
try {
// Extract salt and hash
const salt = combined.slice(0, 16);
const originalHash = combined.slice(16);
// Hash input password with same salt
inputHash = await pbkdf2(passwordBuffer, salt, 600000, 32, 'sha256');
// Constant-time comparison
return crypto.timingSafeEqual(originalHash, inputHash);
} finally {
// Clear buffers
passwordBuffer.fill(0);
combined.fill(0);
if (inputHash) inputHash.fill(0);
}
}
Why this works:
- Computational cost: PBKDF2-HMAC-SHA256 with 600,000 iterations follows current OWASP guidance where PBKDF2 is required; tune parameters on production hardware and prefer Argon2id or bcrypt where appropriate
- Memory clearing: Password converted to
Bufferand cleared infinallyto minimize cleartext exposure - Rainbow table prevention: Random salt per password ensures identical passwords produce different hashes
- Storage simplification: Concatenates salt+hash as single base64 buffer; during verification, extracts salt (first 16 bytes) and compares using
crypto.timingSafeEqual()(constant-time) - Use case: More secure than simple SHA-256 (too fast); recommended for custom auth without bcrypt/Argon2 libraries
Secure environment variable handling
import crypto from 'crypto';
class SecureConfig {
constructor() {
this.secrets = new Map();
this.loadSecrets();
}
loadSecrets() {
// Load secrets from environment
const secretKeys = ['DB_PASSWORD', 'API_KEY', 'JWT_SECRET'];
for (const key of secretKeys) {
const value = process.env[key];
if (value) {
// Store as Buffer
this.secrets.set(key, Buffer.from(value, 'utf8'));
// Removes the entry, not the value: `value` is a V8 string
// that already exists and cannot be overwritten. What this
// buys is that code reading process.env later - a logger
// dumping config, a crash reporter, a dependency - no longer
// finds it. See the note under "Why this works".
delete process.env[key];
}
}
}
getSecret(key) {
const secret = this.secrets.get(key);
if (!secret) {
throw new Error(`Secret ${key} not found`);
}
// Return copy to prevent external modification
return Buffer.from(secret);
}
clearSecrets() {
for (const [key, buffer] of this.secrets) {
buffer.fill(0);
}
this.secrets.clear();
}
}
// Global config instance
const config = new SecureConfig();
// Cleanup on process exit
process.on('exit', () => {
config.clearSecrets();
});
process.on('SIGINT', () => {
config.clearSecrets();
process.exit(0);
});
// Usage
function connectToDatabase() {
const passwordBuffer = config.getSecret('DB_PASSWORD');
try {
// Pass the Buffer to any driver option that accepts one. Where the
// driver only takes a string, `passwordBuffer.toString('utf8')` is the
// conversion - and at that point the clearing below stops buying
// anything, because the string it produced cannot be cleared.
connect({ password: passwordBuffer });
} finally {
passwordBuffer.fill(0);
}
}
Why this works:
- Reachability, not erasure - this is the bullet to read before adopting the pattern.
delete process.env[key]removes the property; the string it referred to was created by Node at startup and is still on the V8 heap afterwards, unreachable from your code and impossible to overwrite. Verified on Node 24: the value captured before thedeleteis still readable from the local that holds it, and nothing in the language can zero it. What the pattern actually buys is that later code cannot find the secret throughprocess.env- which is worth having, because config dumps, crash reporters and dependencies read that object - and that the surviving copy is one rather than one per reader - Explicit clearing:
fill(0)clears theBuffercopies on shutdown (exit,SIGINThandlers), so those are gone even though the original strings are not - Encapsulation:
getSecret()returns copy (Buffer.from()) to prevent external modification or reference retention - callers must clear what they are handed, asconnectToDatabase()does - It does not undo the operating system's copy: the environment block is also readable outside the process, as the
Storing API keys as string propertiessection above describes. If that matters, the fix is not to inject the secret through the environment at all - fetch it from a vault or a mounted secret file at the point of use - Limitations: the cleanup handlers do not run on
SIGKILL, though keeping every secret behind oneSecureConfigclass keeps what has to be audited in one place
Considerations
This is a mitigation, not an elimination, and the difference matters when deciding how far to go. A managed runtime gives you no way to guarantee a secret is gone: the garbage collector copies values as it compacts, immutable strings cannot be overwritten at all, pages may be written to swap, and a crash dump captures whatever happens to be resident. Clearing buffers shortens the window an attacker with memory access must hit. It does not close it. Say which you are buying before spending much effort.
The boundary is the API you have to call. Holding a credential in a mutable buffer only helps if everything downstream accepts one. The moment a library requires a string, the conversion creates a copy you cannot clear, and the care taken upstream buys almost nothing. Judge by whether the whole path can avoid the conversion; if it cannot, spend the effort on the operational controls instead.
Buffer only helps to the edge of your own code. V8 strings are immutable
and moved by the garbage collector, so a secret that becomes a string is beyond
reach. Keeping it in a Buffer and calling .fill(0) works while the value
stays in your code, but most libraries and every JSON boundary take strings, and
process.env values are already strings before your code runs. Trace the whole
path before restructuring.
Most of the real exposure is operational rather than in the code. Whether process dumps are enabled, whether swap is encrypted, whether the host is shared, how long worker processes live, and whether debuggers can attach in production will usually change the risk more than any in-process buffer handling. If you can only do one thing, restricting dump generation and shortening process lifetime tends to beat clearing arrays.
The strongest version of this fix is not holding the secret at all. Fetching a credential from a vault at the point of use, keeping it for the shortest span the operation needs, and letting the platform hold anything long-lived removes the question rather than managing it.
Testing
- Normal input: verify login, password hashing, token signing, and credential-cache flows still work with buffer-based handling.
- Boundary input: test failed authentication, thrown errors, cancelled requests, and signal/shutdown handlers to confirm cleanup paths execute.
- Malicious input: capture a controlled heap snapshot in a test environment and search for known test secrets, checking that avoidable long-lived copies are gone.
Additional Resources
- crypto.timingSafeEqual()
- CWE-316: Cleartext Storage of Sensitive Information in Memory
- Node.js Buffer Documentation
- OWASP Password Storage Cheat Sheet - the source for the PBKDF2 iteration count, bcrypt work factor, and Argon2 parameters used here
- OWASP Secure Coding Practices