-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathtransportSecurity.js
More file actions
482 lines (409 loc) · 12.5 KB
/
transportSecurity.js
File metadata and controls
482 lines (409 loc) · 12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
/**
* Transport Security Middleware
* Issue #827: End-to-End Encryption for Sensitive Data
*
* Enforces secure transport protocols (HTTPS/TLS)
* Implements security headers and policies
* Compliant with PCI DSS, GDPR, and OWASP recommendations
*
* Features:
* - HTTPS enforcement (HSTS)
* - TLS version requirements (TLS 1.2+)
* - Certificate pinning support
* - Security headers (CSP, X-Frame-Options, etc.)
* - Request integrity verification
* - API endpoint security
*/
const crypto = require('crypto');
/**
* Enforce HTTPS connections
* Redirects HTTP to HTTPS in production
*/
function enforceHTTPS(req, res, next) {
// Skip in development
if (process.env.NODE_ENV !== 'production') {
return next();
}
// Check if request is secure
const isSecure = req.secure ||
req.headers['x-forwarded-proto'] === 'https' ||
req.connection.encrypted;
if (!isSecure) {
// Redirect to HTTPS
const httpsUrl = `https://${req.headers.host}${req.url}`;
console.warn(`Redirecting insecure request to HTTPS: ${req.url}`);
return res.redirect(301, httpsUrl);
}
next();
}
/**
* HTTP Strict Transport Security (HSTS)
* Forces browsers to use HTTPS for all future requests
*/
function enforceHSTS(req, res, next) {
// Set HSTS header (1 year, include subdomains, preload)
res.setHeader(
'Strict-Transport-Security',
'max-age=31536000; includeSubDomains; preload'
);
next();
}
/**
* Comprehensive security headers
* Implements OWASP recommendations
*/
function securityHeaders(req, res, next) {
// Content Security Policy
res.setHeader(
'Content-Security-Policy',
"default-src 'self'; " +
"script-src 'self' 'unsafe-inline' 'unsafe-eval'; " +
"style-src 'self' 'unsafe-inline'; " +
"img-src 'self' data: https:; " +
"font-src 'self' data:; " +
"connect-src 'self' https:; " +
"frame-ancestors 'none'; " +
"base-uri 'self'; " +
"form-action 'self'"
);
// Prevent clickjacking
res.setHeader('X-Frame-Options', 'DENY');
// Prevent MIME type sniffing
res.setHeader('X-Content-Type-Options', 'nosniff');
// Enable XSS filter in browsers
res.setHeader('X-XSS-Protection', '1; mode=block');
// Referrer policy
res.setHeader('Referrer-Policy', 'strict-origin-when-cross-origin');
// Permissions policy (formerly Feature-Policy)
res.setHeader(
'Permissions-Policy',
'geolocation=(), microphone=(), camera=(), payment=()'
);
// Prevent DNS prefetching
res.setHeader('X-DNS-Prefetch-Control', 'off');
// Remove X-Powered-By header
res.removeHeader('X-Powered-By');
next();
}
/**
* TLS version enforcement
* Requires TLS 1.2 or higher
*/
function enforceTLSVersion(req, res, next) {
if (process.env.NODE_ENV !== 'production') {
return next();
}
const tlsVersion = req.connection.getProtocol?.() || '';
// Check TLS version (should be TLSv1.2 or TLSv1.3)
if (tlsVersion && !['TLSv1.2', 'TLSv1.3'].includes(tlsVersion)) {
console.error(`Insecure TLS version detected: ${tlsVersion}`);
return res.status(426).json({
error: 'Upgrade Required',
message: 'TLS 1.2 or higher is required'
});
}
next();
}
/**
* Certificate pinning validation
* Verifies client certificates for enhanced security
*/
function certificatePinning(allowedFingerprints = []) {
return (req, res, next) => {
// Skip in development
if (process.env.NODE_ENV !== 'production' || allowedFingerprints.length === 0) {
return next();
}
const cert = req.connection.getPeerCertificate?.();
if (!cert || !cert.fingerprint) {
return next(); // No client cert (may be optional)
}
// Calculate certificate fingerprint
const fingerprint = cert.fingerprint.replace(/:/g, '').toLowerCase();
if (!allowedFingerprints.includes(fingerprint)) {
console.error(`Invalid certificate fingerprint: ${fingerprint}`);
return res.status(403).json({
error: 'Forbidden',
message: 'Invalid client certificate'
});
}
req.clientCertificate = cert;
next();
};
}
/**
* Request integrity verification using HMAC
* Ensures request hasn't been tampered with in transit
*/
function verifyRequestIntegrity(options = {}) {
const secret = options.secret || process.env.REQUEST_INTEGRITY_SECRET;
if (!secret) {
console.warn('Request integrity secret not configured');
return (req, res, next) => next();
}
return (req, res, next) => {
// Skip for GET requests (optional)
if (options.skipGET && req.method === 'GET') {
return next();
}
const signature = req.headers['x-request-signature'];
const timestamp = req.headers['x-request-timestamp'];
const nonce = req.headers['x-request-nonce'];
if (!signature || !timestamp || !nonce) {
// If integrity headers not present, skip validation (optional)
if (options.optional) {
return next();
}
return res.status(400).json({
error: 'Bad Request',
message: 'Request integrity headers missing'
});
}
// Check timestamp (prevent replay attacks)
const now = Date.now();
const requestTime = parseInt(timestamp);
const maxAge = options.maxAge || 300000; // 5 minutes default
if (Math.abs(now - requestTime) > maxAge) {
return res.status(400).json({
error: 'Bad Request',
message: 'Request timestamp expired'
});
}
// Verify signature
const payload = `${req.method}:${req.path}:${timestamp}:${nonce}`;
const expectedSignature = crypto
.createHmac('sha256', secret)
.update(payload)
.digest('hex');
if (!crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(expectedSignature))) {
console.error('Request integrity verification failed');
return res.status(400).json({
error: 'Bad Request',
message: 'Request signature invalid'
});
}
// Store nonce to prevent replay
// In production, use Redis or similar
req.verifiedIntegrity = true;
next();
};
}
/**
* API key encryption in transit
* Encrypts sensitive headers before transmission
*/
function encryptSensitiveHeaders(sensitiveHeaders = ['x-api-key', 'authorization']) {
return (req, res, next) => {
// This is typically handled by client, but we can validate format
for (const header of sensitiveHeaders) {
const value = req.headers[header];
if (value && !value.startsWith('encrypted:')) {
console.warn(`Unencrypted sensitive header detected: ${header}`);
// In strict mode, reject
if (process.env.HEADER_ENCRYPTION_STRICT === 'true') {
return res.status(400).json({
error: 'Bad Request',
message: `Header ${header} must be encrypted`
});
}
}
}
next();
};
}
/**
* Secure WebSocket upgrade enforcement
*/
function secureWebSocketUpgrade(req, res, next) {
if (req.headers.upgrade === 'websocket') {
// Ensure WSS (WebSocket Secure) in production
if (process.env.NODE_ENV === 'production') {
const isSecure = req.secure ||
req.headers['x-forwarded-proto'] === 'https';
if (!isSecure) {
console.error('Insecure WebSocket upgrade attempt');
return res.status(426).json({
error: 'Upgrade Required',
message: 'WebSocket connections must use WSS protocol'
});
}
}
// Validate WebSocket origin
const origin = req.headers.origin;
const allowedOrigins = (process.env.ALLOWED_WS_ORIGINS || '').split(',');
if (allowedOrigins.length > 0 && !allowedOrigins.includes(origin)) {
console.error(`WebSocket upgrade from unauthorized origin: ${origin}`);
return res.status(403).json({
error: 'Forbidden',
message: 'WebSocket origin not allowed'
});
}
}
next();
}
/**
* Encryption cipher suite validation
* Ensures strong cipher suites are used
*/
function validateCipherSuite(req, res, next) {
if (process.env.NODE_ENV !== 'production') {
return next();
}
const cipher = req.connection.getCipher?.();
if (!cipher) {
return next(); // Can't determine cipher
}
// Weak cipher suites to block (PCI DSS requirement)
const weakCiphers = [
'RC4', 'DES', '3DES', 'MD5', 'NULL', 'EXPORT', 'anon'
];
const cipherName = cipher.name || '';
for (const weak of weakCiphers) {
if (cipherName.includes(weak)) {
console.error(`Weak cipher suite detected: ${cipherName}`);
return res.status(426).json({
error: 'Upgrade Required',
message: 'This cipher suite is not supported. Please use a stronger cipher.'
});
}
}
// Log cipher for monitoring
if (!req.connection._cipherLogged) {
console.log(`Connection using cipher: ${cipherName} (${cipher.version})`);
req.connection._cipherLogged = true;
}
next();
}
/**
* API endpoint encryption status
* Tracks which endpoints handle encrypted data
*/
function markEncryptedEndpoint(options = {}) {
return (req, res, next) => {
req.encryptedEndpoint = {
requiresHTTPS: options.requiresHTTPS !== false,
dataEncrypted: options.dataEncrypted !== false,
purpose: options.purpose || 'userData',
complianceLevel: options.complianceLevel || 'high'
};
// Add header to indicate encrypted endpoint
res.setHeader('X-Endpoint-Encrypted', 'true');
res.setHeader('X-Encryption-Purpose', options.purpose || 'userData');
next();
};
}
/**
* Generate client integrity token
* Used by clients to sign requests
*/
function generateIntegrityToken(req, res, next) {
const secret = process.env.REQUEST_INTEGRITY_SECRET;
if (!secret) {
return next();
}
// Generate nonce
const nonce = crypto.randomBytes(16).toString('hex');
const timestamp = Date.now();
// Store in response headers for client to use in next request
res.setHeader('X-Server-Nonce', nonce);
res.setHeader('X-Server-Timestamp', timestamp);
next();
}
/**
* Monitor transport security metrics
*/
class TransportSecurityMonitor {
constructor() {
this.metrics = {
httpsRequests: 0,
httpRedirects: 0,
tlsVersionBlocked: 0,
weakCipherBlocked: 0,
integrityFailures: 0,
certificateFailures: 0
};
}
recordMetric(type) {
if (this.metrics[type] !== undefined) {
this.metrics[type]++;
}
}
getMetrics() {
return { ...this.metrics };
}
reset() {
for (const key in this.metrics) {
this.metrics[key] = 0;
}
}
}
const transportMonitor = new TransportSecurityMonitor();
/**
* Middleware to record transport security metrics
*/
function recordTransportMetrics(req, res, next) {
const isSecure = req.secure || req.headers['x-forwarded-proto'] === 'https';
if (isSecure) {
transportMonitor.recordMetric('httpsRequests');
} else {
transportMonitor.recordMetric('httpRedirects');
}
next();
}
/**
* Get transport security status
*/
function getTransportSecurityStatus(req) {
const isSecure = req.secure || req.headers['x-forwarded-proto'] === 'https';
const tlsVersion = req.connection.getProtocol?.() || 'Unknown';
const cipher = req.connection.getCipher?.();
return {
secure: isSecure,
protocol: req.protocol,
tlsVersion,
cipher: cipher ? {
name: cipher.name,
version: cipher.version,
bits: cipher.bits
} : null,
encrypted: isSecure && tlsVersion.includes('TLS'),
pciCompliant: isSecure && ['TLSv1.2', 'TLSv1.3'].includes(tlsVersion),
headers: {
hsts: !!res.getHeader('Strict-Transport-Security'),
csp: !!res.getHeader('Content-Security-Policy'),
xFrameOptions: !!res.getHeader('X-Frame-Options')
}
};
}
/**
* Comprehensive transport security suite
* Combines all security middlewares
*/
function transportSecuritySuite(options = {}) {
return [
recordTransportMetrics,
options.enforceHTTPS !== false ? enforceHTTPS : null,
options.enforceHSTS !== false ? enforceHSTS : null,
options.securityHeaders !== false ? securityHeaders : null,
options.enforceTLS !== false ? enforceTLSVersion : null,
options.validateCipher !== false ? validateCipherSuite : null,
options.integrityCheck ? verifyRequestIntegrity(options.integrityOptions || {}) : null
].filter(Boolean);
}
module.exports = {
enforceHTTPS,
enforceHSTS,
securityHeaders,
enforceTLSVersion,
certificatePinning,
verifyRequestIntegrity,
encryptSensitiveHeaders,
secureWebSocketUpgrade,
validateCipherSuite,
markEncryptedEndpoint,
generateIntegrityToken,
transportSecuritySuite,
recordTransportMetrics,
getTransportSecurityStatus,
transportMonitor
};