@blamejs/core 0.7.49 → 0.7.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,8 @@ upgrading across more than a few patches at a time.
8
8
 
9
9
  ## v0.7.x
10
10
 
11
+ - **0.7.50** (2026-05-05) — `b.guardJwt` — JWT identifier-safety primitive (KIND="identifier"). Validates user-supplied JWT compact-serialization strings against the canonical CVE-class refuse list before hand-off to a verifier — `b.guardJwt` never replaces signature verification, it reduces the input space the verifier sees. Threat catalog: shape malformation; `alg=none` (CVE-2015-9235 jsonwebtoken / CVE-2018-0114 java-jwt) — universally refused at every profile; alg-allowlist drift (PQC-first default: ML-DSA / SLH-DSA / EdDSA / ES* / RS* / PS*); `kid` path-traversal (operator `keyResolver` path-injection class — e.g. `kid: "../etc/passwd"` would escape a key-directory `fs.readFile(keyDir + kid)` resolver); `typ` confusion (non-JWT-shape media-type tokens coerced into the slot); oversized header / payload / signature segment defense (decompression bomb + parser DoS); `exp` / `nbf` / `iat` sanity (past `exp` = replay; far-future `nbf` / `iat` = clock-skew / attacker-shaped); required-claims enforcement (default `iss` / `exp` / `iat` at strict); unknown `crit` field refuse (RFC 7515 §4.1.11 — operator MUST refuse crit values it doesn't understand); BIDI / null / control / zero-width universal refuse. **`b.guardJwt.kidSafe(kid)`** is the documented contract for operator `keyResolver` implementations: throws on traversal indicators or control bytes, returns the validated kid on success. Profiles: `strict` (refuse everything), `balanced` (refuse alg=none / kid-traversal / unknown-crit; audit the rest), `permissive` (universal-refuse class still refused). Postures: `hipaa` / `pci-dss` / `soc2` strict overlay; `gdpr` balanced overlay. Auto-registers into `b.guardAll` as a STANDALONE_GUARD.
12
+
11
13
  - **0.7.49** (2026-05-05) — `b.middleware.headers(opts)` — inbound HTTP header threat-detection middleware. Sits at the top of the request lifecycle. Threat catalog: `header-name-shape` (header name not a valid RFC 9110 §5.1 token); `header-value-control-byte` (CR / LF / NUL inside any header value — header-injection defense in depth on top of Node's rejection); `header-count-cap` (default 100 inbound headers max); `header-value-cap` (default 8 KiB per value); `smuggling-cl-te` (RFC 9112 §6.1 — both Content-Length and Transfer-Encoding present, the canonical CL.TE / TE.CL request-smuggling vector); `smuggling-cl-multi` / `smuggling-te-multi` (multiple values for either header — proxy-desync class); `deprecated-trust-header` (X-Forwarded-For / -Proto / -Host / -Port / X-Real-IP present without operator-supplied `trustProxy: true` opt — operators should adopt RFC 7239 `Forwarded`). On `mode: "enforce"` + `refuseOnHigh` (default), refuses with HTTP 400 + JSON body listing detected high-severity issues; emits one audit row per issue regardless of mode. Complements the existing per-route smuggling defense in `b.middleware.bodyParser` by running the same check at the top of the chain (covers GET / HEAD requests that don't body-parse).
12
14
 
13
15
  - **0.7.48** (2026-05-05) — `b.cookies.parseSafe(header, opts)` + `b.middleware.cookies(opts)` — inbound cookie-header threat detection. The existing `b.cookies.parse` is lenient (last-write-wins, silent skip on malformed pairs); `parseSafe` returns `{ jar, issues }` and surfaces every detected anomaly: header-cap (oversized Cookie header), header-control-byte (CR / LF / NUL injected through proxy — header-injection prelude class), pair-malformed (missing `=`), pair-empty-name, name-cap (oversized name), value-cap (oversized value), duplicate-name (cookie-tossing class — same name appearing more than once in one Cookie header indicates an attacker-set parent-domain cookie shadowing the legitimate one). The middleware shape (`b.middleware.cookies({ mode, audit, refuseOnHigh })`) wires `parseSafe` into the request lifecycle: populates `req.cookieJar`, emits one audit row per detected issue, and refuses with HTTP 400 on any high-severity issue when `mode: "enforce"` (default). Existing `b.cookies` invariants (RFC 6265bis token grammar enforcement, `__Host-` / `__Secure-` prefix invariants, SameSite=None requires Secure, `Partitioned` / CHIPS attribute support, length caps on serialize-side) remain unchanged — this slice closes the inbound-detection gap.
package/index.js CHANGED
@@ -115,6 +115,7 @@ var guardUuid = require("./lib/guard-uuid");
115
115
  var guardCidr = require("./lib/guard-cidr");
116
116
  var guardTime = require("./lib/guard-time");
117
117
  var guardMime = require("./lib/guard-mime");
118
+ var guardJwt = require("./lib/guard-jwt");
118
119
  var guardAll = require("./lib/guard-all");
119
120
  var ssrfGuard = require("./lib/ssrf-guard");
120
121
  var authHeader = require("./lib/auth-header");
@@ -261,6 +262,7 @@ module.exports = {
261
262
  guardCidr: guardCidr,
262
263
  guardTime: guardTime,
263
264
  guardMime: guardMime,
265
+ guardJwt: guardJwt,
264
266
  guardAll: guardAll,
265
267
  ssrfGuard: ssrfGuard,
266
268
  authHeader: authHeader,
@@ -288,6 +288,15 @@ var GuardTimeError = defineClass("GuardTimeError", { alwaysPermane
288
288
  // script-host content types), BIDI / zero-width / control / null-byte
289
289
  // universal refuse. alwaysPermanent.
290
290
  var GuardMimeError = defineClass("GuardMimeError", { alwaysPermanent: true });
291
+ // GuardJwtError covers JWT identifier violations: shape malformation
292
+ // (not 3 base64url segments), alg=none refuse (canonical CVE-class —
293
+ // CVE-2015-9235 jsonwebtoken / CVE-2018-0114 java-jwt), alg-allowlist
294
+ // drift, kid path-traversal (operator keyResolver path-injection
295
+ // class), typ confusion, oversized header / payload / signature,
296
+ // exp / nbf / iat sanity, missing required claims, unknown crit
297
+ // fields (RFC 7515 §4.1.11), BIDI / null / control / zero-width
298
+ // universal refuse. alwaysPermanent.
299
+ var GuardJwtError = defineClass("GuardJwtError", { alwaysPermanent: true });
291
300
  // DoraError covers DORA Article 17 incident-reporting workflow errors
292
301
  // (classification refusal, report-shape validation, ESA-template
293
302
  // generation, audit-chain integration). Permanent — these are
@@ -352,6 +361,7 @@ module.exports = {
352
361
  GuardCidrError: GuardCidrError,
353
362
  GuardTimeError: GuardTimeError,
354
363
  GuardMimeError: GuardMimeError,
364
+ GuardJwtError: GuardJwtError,
355
365
  DoraError: DoraError,
356
366
  ComplianceError: ComplianceError,
357
367
  SmtpPolicyError: SmtpPolicyError,
package/lib/guard-all.js CHANGED
@@ -94,6 +94,7 @@ var STANDALONE_GUARDS = [
94
94
  require("./guard-cidr"),
95
95
  require("./guard-time"),
96
96
  require("./guard-mime"),
97
+ require("./guard-jwt"),
97
98
  ];
98
99
 
99
100
  // Framework-wide profile + posture vocabulary that every guard MUST
@@ -0,0 +1,518 @@
1
+ "use strict";
2
+ /**
3
+ * guard-jwt — JWT identifier-safety primitive (b.guardJwt).
4
+ *
5
+ * Validates user-supplied JWT compact-serialization strings against
6
+ * the canonical CVE-class refuse list before hand-off to a verifier.
7
+ * KIND="identifier" — consumes ctx.identifier (or ctx.token).
8
+ *
9
+ * Threat catalog:
10
+ * - Shape malformation — not 3 dot-separated base64url segments
11
+ * (RFC 7515 §3 / RFC 7519 §3 compact serialization).
12
+ * - alg=none — RFC 7518 §3.6 explicit "no signature" — universally
13
+ * refused; the canonical alg-confusion CVE class
14
+ * (CVE-2015-9235 jsonwebtoken; CVE-2018-0114 java-jwt).
15
+ * - alg algorithm-confusion — operator's verifier may treat HS256
16
+ * with an RSA public key as HMAC, allowing forgery; flag any
17
+ * unexpected alg.
18
+ * - kid path traversal — kid header used by some operators to
19
+ * resolve key files; `..` / `/` / null-byte in kid would escape
20
+ * the keystore directory.
21
+ * - typ confusion — typ != "jwt" / "JWT" / "JWS" indicates a non-
22
+ * JWT token coerced into the slot.
23
+ * - Oversized header / payload / signature — defense against
24
+ * decompression bombs and parser DoS.
25
+ * - exp / nbf / iat sanity — exp in the past, nbf in the far
26
+ * future, iat way in the future all indicate replay or clock-
27
+ * skew issues.
28
+ * - Unknown crit fields — RFC 7515 §4.1.11 — operator MUST refuse
29
+ * tokens carrying crit headers it doesn't understand.
30
+ * - BIDI / null / control / zero-width universal refuse.
31
+ *
32
+ * var rv = b.guardJwt.validate(jwtString, { profile: "strict" });
33
+ * var g = b.guardJwt.gate({ profile: "strict" });
34
+ */
35
+
36
+ var codepointClass = require("./codepoint-class");
37
+ var lazyRequire = require("./lazy-require");
38
+ var gateContract = require("./gate-contract");
39
+ var C = require("./constants");
40
+ var numericBounds = require("./numeric-bounds");
41
+ var safeJson = require("./safe-json");
42
+ var { GuardJwtError } = require("./framework-error");
43
+
44
+ var observability = lazyRequire(function () { return require("./observability"); });
45
+ void observability;
46
+
47
+ var _err = GuardJwtError.factory;
48
+
49
+ // JWT compact serialization shape — three base64url segments separated
50
+ // by dots. base64url alphabet is A-Z / a-z / 0-9 / `-` / `_`.
51
+ var JWT_SHAPE_RE = /^[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]*$/;
52
+
53
+ // kid path-traversal indicators.
54
+ var KID_TRAVERSAL_RE = /\.\.|\/|\\|%2e%2e|%2f|%5c/i;
55
+
56
+ // Default operator-allowed alg list — PQC-first per the framework.
57
+ var DEFAULT_ALLOWED_ALGS = Object.freeze([
58
+ "ML-DSA-87", "ML-DSA-65", "ML-DSA-44",
59
+ "SLH-DSA-SHAKE-256f", "SLH-DSA-SHAKE-256s",
60
+ "SLH-DSA-SHA2-256f", "SLH-DSA-SHA2-256s",
61
+ "EdDSA", "ES256", "ES384", "ES512",
62
+ "RS256", "RS384", "RS512",
63
+ "PS256", "PS384", "PS512",
64
+ ]);
65
+
66
+ function _b64urlDecodeJson(seg) {
67
+ if (!seg) return null;
68
+ var pad = (4 - (seg.length % 4)) % 4;
69
+ var b64 = seg.replace(/-/g, "+").replace(/_/g, "/") + "=".repeat(pad);
70
+ try {
71
+ var json = Buffer.from(b64, "base64").toString("utf8");
72
+ return safeJson.parse(json, { rejectProto: true });
73
+ } catch (_e) {
74
+ return null;
75
+ }
76
+ }
77
+
78
+ // ---- Profile presets ----
79
+
80
+ var PROFILES = Object.freeze({
81
+ "strict": {
82
+ bidiPolicy: "reject",
83
+ controlPolicy: "reject",
84
+ nullBytePolicy: "reject",
85
+ zeroWidthPolicy: "reject",
86
+ algNonePolicy: "reject",
87
+ algAllowlistPolicy: "reject",
88
+ kidTraversalPolicy: "reject",
89
+ typConfusionPolicy: "reject",
90
+ expSanityPolicy: "reject",
91
+ nbfSanityPolicy: "reject",
92
+ iatSanityPolicy: "reject",
93
+ critUnknownPolicy: "reject",
94
+ allowedAlgs: DEFAULT_ALLOWED_ALGS,
95
+ requiredClaims: ["iss", "exp", "iat"],
96
+ knownCrit: [], // empty — every crit field is unknown by default
97
+ nbfFutureSlackMs: C.TIME.minutes(5),
98
+ iatFutureSlackMs: C.TIME.minutes(5),
99
+ maxHeaderBytes: C.BYTES.kib(2),
100
+ maxPayloadBytes: C.BYTES.kib(8),
101
+ maxSignatureBytes: C.BYTES.kib(4),
102
+ maxBytes: C.BYTES.kib(16),
103
+ maxRuntimeMs: C.TIME.seconds(2),
104
+ },
105
+ "balanced": {
106
+ bidiPolicy: "reject",
107
+ controlPolicy: "reject",
108
+ nullBytePolicy: "reject",
109
+ zeroWidthPolicy: "reject",
110
+ algNonePolicy: "reject", // alg=none refused at every profile
111
+ algAllowlistPolicy: "audit",
112
+ kidTraversalPolicy: "reject", // kid traversal refused at every profile
113
+ typConfusionPolicy: "audit",
114
+ expSanityPolicy: "audit",
115
+ nbfSanityPolicy: "audit",
116
+ iatSanityPolicy: "audit",
117
+ critUnknownPolicy: "reject", // unknown crit refused at every profile (RFC 7515)
118
+ allowedAlgs: DEFAULT_ALLOWED_ALGS,
119
+ requiredClaims: ["iss", "exp"],
120
+ knownCrit: [],
121
+ nbfFutureSlackMs: C.TIME.minutes(15),
122
+ iatFutureSlackMs: C.TIME.minutes(15),
123
+ maxHeaderBytes: C.BYTES.kib(2),
124
+ maxPayloadBytes: C.BYTES.kib(32),
125
+ maxSignatureBytes: C.BYTES.kib(8),
126
+ maxBytes: C.BYTES.kib(64),
127
+ maxRuntimeMs: C.TIME.seconds(2),
128
+ },
129
+ "permissive": {
130
+ bidiPolicy: "reject", // BIDI refused at every profile
131
+ controlPolicy: "reject", // controls refused at every profile
132
+ nullBytePolicy: "reject", // null refused at every profile
133
+ zeroWidthPolicy: "reject", // zero-width refused at every profile
134
+ algNonePolicy: "reject", // alg=none refused at every profile
135
+ algAllowlistPolicy: "allow",
136
+ kidTraversalPolicy: "reject", // kid traversal refused at every profile
137
+ typConfusionPolicy: "audit",
138
+ expSanityPolicy: "audit",
139
+ nbfSanityPolicy: "audit",
140
+ iatSanityPolicy: "audit",
141
+ critUnknownPolicy: "reject", // unknown crit refused at every profile
142
+ allowedAlgs: null,
143
+ requiredClaims: [],
144
+ knownCrit: [],
145
+ nbfFutureSlackMs: C.TIME.hours(1),
146
+ iatFutureSlackMs: C.TIME.hours(1),
147
+ maxHeaderBytes: C.BYTES.kib(4),
148
+ maxPayloadBytes: C.BYTES.kib(64),
149
+ maxSignatureBytes: C.BYTES.kib(16),
150
+ maxBytes: C.BYTES.kib(128),
151
+ maxRuntimeMs: C.TIME.seconds(2),
152
+ },
153
+ });
154
+
155
+ var DEFAULTS = Object.freeze(Object.assign({}, PROFILES["strict"], {
156
+ mode: "enforce",
157
+ }));
158
+
159
+ var COMPLIANCE_POSTURES = Object.freeze({
160
+ "hipaa": Object.assign({}, PROFILES["strict"], {
161
+ forensicSnippetBytes: C.BYTES.bytes(256),
162
+ }),
163
+ "pci-dss": Object.assign({}, PROFILES["strict"], {
164
+ forensicSnippetBytes: C.BYTES.bytes(256),
165
+ }),
166
+ "gdpr": Object.assign({}, PROFILES["balanced"], {
167
+ forensicSnippetBytes: C.BYTES.bytes(128),
168
+ }),
169
+ "soc2": Object.assign({}, PROFILES["strict"], {
170
+ forensicSnippetBytes: C.BYTES.bytes(512),
171
+ }),
172
+ });
173
+
174
+ function _resolveOpts(opts) {
175
+ return gateContract.resolveProfileAndPosture(opts, {
176
+ profiles: PROFILES,
177
+ compliancePostures: COMPLIANCE_POSTURES,
178
+ defaults: DEFAULTS,
179
+ errorClass: GuardJwtError,
180
+ errCodePrefix: "jwt",
181
+ });
182
+ }
183
+
184
+ function _detectIssues(input, opts) {
185
+ var issues = [];
186
+ if (typeof input !== "string") {
187
+ return [{ kind: "bad-input", severity: "high",
188
+ ruleId: "jwt.bad-input",
189
+ snippet: "jwt is not a string" }];
190
+ }
191
+ if (input.length === 0) {
192
+ return [{ kind: "empty", severity: "high",
193
+ ruleId: "jwt.empty",
194
+ snippet: "jwt is empty" }];
195
+ }
196
+ if (Buffer.byteLength(input, "utf8") > opts.maxBytes) {
197
+ return [{ kind: "jwt-cap", severity: "high",
198
+ ruleId: "jwt.jwt-cap",
199
+ snippet: "jwt input exceeds maxBytes " + opts.maxBytes }];
200
+ }
201
+
202
+ var charThreats = codepointClass.detectCharThreats(input, opts, "jwt");
203
+ for (var ci = 0; ci < charThreats.length; ci += 1) issues.push(charThreats[ci]);
204
+
205
+ if (!JWT_SHAPE_RE.test(input)) { // allow:regex-no-length-cap — input bounded by maxBytes
206
+ issues.push({
207
+ kind: "jwt-shape", severity: "high",
208
+ ruleId: "jwt.jwt-shape",
209
+ snippet: "input does not match JWT compact-serialization shape " +
210
+ "(three base64url segments separated by dots)",
211
+ });
212
+ return issues;
213
+ }
214
+
215
+ var segments = input.split(".");
216
+ var headerSeg = segments[0];
217
+ var payloadSeg = segments[1];
218
+ var signatureSeg = segments[2];
219
+
220
+ if (Buffer.byteLength(headerSeg, "utf8") > opts.maxHeaderBytes) {
221
+ issues.push({
222
+ kind: "header-cap", severity: "high",
223
+ ruleId: "jwt.header-cap",
224
+ snippet: "JWT header segment exceeds maxHeaderBytes " +
225
+ opts.maxHeaderBytes,
226
+ });
227
+ }
228
+ if (Buffer.byteLength(payloadSeg, "utf8") > opts.maxPayloadBytes) {
229
+ issues.push({
230
+ kind: "payload-cap", severity: "high",
231
+ ruleId: "jwt.payload-cap",
232
+ snippet: "JWT payload segment exceeds maxPayloadBytes " +
233
+ opts.maxPayloadBytes,
234
+ });
235
+ }
236
+ if (Buffer.byteLength(signatureSeg, "utf8") > opts.maxSignatureBytes) {
237
+ issues.push({
238
+ kind: "signature-cap", severity: "high",
239
+ ruleId: "jwt.signature-cap",
240
+ snippet: "JWT signature segment exceeds maxSignatureBytes " +
241
+ opts.maxSignatureBytes,
242
+ });
243
+ }
244
+
245
+ var header = _b64urlDecodeJson(headerSeg);
246
+ if (!header || typeof header !== "object") {
247
+ issues.push({
248
+ kind: "header-decode", severity: "high",
249
+ ruleId: "jwt.header-decode",
250
+ snippet: "JWT header is not decodable JSON or contains " +
251
+ "prototype-pollution keys",
252
+ });
253
+ return issues;
254
+ }
255
+
256
+ // alg=none — universal refuse.
257
+ if (typeof header.alg === "string" &&
258
+ header.alg.toLowerCase() === "none") {
259
+ issues.push({
260
+ kind: "alg-none", severity: "critical",
261
+ ruleId: "jwt.alg-none",
262
+ snippet: "JWT header alg=none — RFC 7518 §3.6 explicit-no-signature; " +
263
+ "canonical CVE-class refuse",
264
+ });
265
+ }
266
+ // alg allowlist enforcement.
267
+ if (opts.algAllowlistPolicy !== "allow" &&
268
+ opts.allowedAlgs && Array.isArray(opts.allowedAlgs)) {
269
+ if (typeof header.alg !== "string" ||
270
+ opts.allowedAlgs.indexOf(header.alg) === -1) {
271
+ issues.push({
272
+ kind: "alg-not-allowed",
273
+ severity: opts.algAllowlistPolicy === "reject" ? "high" : "warn",
274
+ ruleId: "jwt.alg-not-allowed",
275
+ snippet: "JWT alg `" + (header.alg || "<missing>") + "` not in " +
276
+ "operator allowlist (" + opts.allowedAlgs.length +
277
+ " entries)",
278
+ });
279
+ }
280
+ }
281
+
282
+ // kid path-traversal.
283
+ if (typeof header.kid === "string" &&
284
+ opts.kidTraversalPolicy !== "allow" &&
285
+ KID_TRAVERSAL_RE.test(header.kid)) { // allow:regex-no-length-cap — header object size bounded by maxHeaderBytes
286
+ issues.push({
287
+ kind: "kid-traversal", severity: "critical",
288
+ ruleId: "jwt.kid-traversal",
289
+ snippet: "JWT kid `" + header.kid + "` contains path-traversal " +
290
+ "indicators (`..`, `/`, `\\`, percent-encoded forms) — " +
291
+ "operator keyResolver MUST sanitize before file-system " +
292
+ "use",
293
+ });
294
+ }
295
+
296
+ // typ confusion.
297
+ if (typeof header.typ === "string" &&
298
+ opts.typConfusionPolicy !== "allow") {
299
+ var typLow = header.typ.toLowerCase();
300
+ if (typLow !== "jwt" && typLow !== "jws" && typLow !== "at+jwt" &&
301
+ typLow !== "id_token") {
302
+ issues.push({
303
+ kind: "typ-confusion",
304
+ severity: opts.typConfusionPolicy === "reject" ? "high" : "warn",
305
+ ruleId: "jwt.typ-confusion",
306
+ snippet: "JWT typ `" + header.typ + "` is not a known JWT-shape " +
307
+ "media-type token",
308
+ });
309
+ }
310
+ }
311
+
312
+ // Unknown crit fields.
313
+ if (Array.isArray(header.crit) && opts.critUnknownPolicy !== "allow") {
314
+ var known = opts.knownCrit || [];
315
+ for (var ki = 0; ki < header.crit.length; ki += 1) {
316
+ var c = header.crit[ki];
317
+ if (known.indexOf(c) === -1) {
318
+ issues.push({
319
+ kind: "crit-unknown",
320
+ severity: opts.critUnknownPolicy === "reject" ? "high" : "warn",
321
+ ruleId: "jwt.crit-unknown",
322
+ snippet: "JWT crit `" + c + "` is not in operator's knownCrit " +
323
+ "allowlist (RFC 7515 §4.1.11 requires refusing unknown crit)",
324
+ });
325
+ }
326
+ }
327
+ }
328
+
329
+ // Payload claim sanity (only if payload is decodable).
330
+ var payload = _b64urlDecodeJson(payloadSeg);
331
+ if (payload && typeof payload === "object") {
332
+ var nowSec = Math.floor(Date.now() / 1000); // allow:raw-byte-literal — seconds-per-millisecond conversion
333
+
334
+ // exp in the past.
335
+ if (typeof payload.exp === "number" &&
336
+ opts.expSanityPolicy !== "allow") {
337
+ if (payload.exp < nowSec) {
338
+ issues.push({
339
+ kind: "exp-past",
340
+ severity: opts.expSanityPolicy === "reject" ? "high" : "warn",
341
+ ruleId: "jwt.exp-past",
342
+ snippet: "JWT exp " + payload.exp + " is in the past " +
343
+ "(now=" + nowSec + ")",
344
+ });
345
+ }
346
+ }
347
+
348
+ // nbf far-future.
349
+ if (typeof payload.nbf === "number" &&
350
+ opts.nbfSanityPolicy !== "allow") {
351
+ var nbfSlackSec = Math.floor(opts.nbfFutureSlackMs / 1000); // allow:raw-byte-literal — seconds-per-millisecond conversion
352
+ if (payload.nbf > nowSec + nbfSlackSec) {
353
+ issues.push({
354
+ kind: "nbf-far-future",
355
+ severity: opts.nbfSanityPolicy === "reject" ? "high" : "warn",
356
+ ruleId: "jwt.nbf-far-future",
357
+ snippet: "JWT nbf " + payload.nbf + " is more than " +
358
+ nbfSlackSec + " seconds in the future",
359
+ });
360
+ }
361
+ }
362
+
363
+ // iat far-future.
364
+ if (typeof payload.iat === "number" &&
365
+ opts.iatSanityPolicy !== "allow") {
366
+ var iatSlackSec = Math.floor(opts.iatFutureSlackMs / 1000); // allow:raw-byte-literal — seconds-per-millisecond conversion
367
+ if (payload.iat > nowSec + iatSlackSec) {
368
+ issues.push({
369
+ kind: "iat-far-future",
370
+ severity: opts.iatSanityPolicy === "reject" ? "high" : "warn",
371
+ ruleId: "jwt.iat-far-future",
372
+ snippet: "JWT iat " + payload.iat + " is more than " +
373
+ iatSlackSec + " seconds in the future",
374
+ });
375
+ }
376
+ }
377
+
378
+ // Required claims.
379
+ if (Array.isArray(opts.requiredClaims)) {
380
+ for (var rci = 0; rci < opts.requiredClaims.length; rci += 1) {
381
+ var c2 = opts.requiredClaims[rci];
382
+ if (payload[c2] === undefined) {
383
+ issues.push({
384
+ kind: "claim-missing", severity: "high",
385
+ ruleId: "jwt.claim-missing",
386
+ snippet: "JWT payload missing required claim `" + c2 + "`",
387
+ });
388
+ }
389
+ }
390
+ }
391
+ }
392
+
393
+ return issues;
394
+ }
395
+
396
+ function validate(input, opts) {
397
+ opts = _resolveOpts(opts);
398
+ numericBounds.requireAllPositiveFiniteIntIfPresent(opts,
399
+ ["maxBytes", "maxHeaderBytes", "maxPayloadBytes", "maxSignatureBytes",
400
+ "nbfFutureSlackMs", "iatFutureSlackMs"],
401
+ "guardJwt.validate", GuardJwtError, "jwt.bad-opt");
402
+ if (typeof input !== "string") {
403
+ return {
404
+ ok: false,
405
+ issues: [{ kind: "bad-input", severity: "high",
406
+ ruleId: "jwt.bad-input",
407
+ snippet: "jwt is not a string" }],
408
+ };
409
+ }
410
+ return gateContract.aggregateIssues(_detectIssues(input, opts));
411
+ }
412
+
413
+ function sanitize(input, opts) {
414
+ opts = _resolveOpts(opts);
415
+ if (typeof input !== "string") {
416
+ throw _err("jwt.bad-input", "sanitize requires string input");
417
+ }
418
+ // JWT shape can't be repaired — sanitize either passes through
419
+ // valid input or throws.
420
+ var issues = _detectIssues(input, opts);
421
+ for (var i = 0; i < issues.length; i += 1) {
422
+ if (issues[i].severity === "critical" || issues[i].severity === "high") {
423
+ throw _err(issues[i].ruleId || "jwt.refused",
424
+ "guardJwt.sanitize: " + issues[i].snippet);
425
+ }
426
+ }
427
+ return input;
428
+ }
429
+
430
+ function gate(opts) {
431
+ opts = _resolveOpts(opts);
432
+ return gateContract.buildGuardGate(
433
+ opts.name || "guardJwt:" + (opts.profile || "default"),
434
+ opts,
435
+ async function (ctx) {
436
+ var identifier = ctx && (ctx.identifier || ctx.token || ctx.jwt || "");
437
+ if (!identifier) return { ok: true, action: "serve" };
438
+ var rv = validate(identifier, opts);
439
+ if (rv.issues.length === 0) return { ok: true, action: "serve" };
440
+ var hasCritical = rv.issues.some(function (i) {
441
+ return i.severity === "critical";
442
+ });
443
+ var hasHigh = rv.issues.some(function (i) {
444
+ return i.severity === "high";
445
+ });
446
+ if (!hasCritical && !hasHigh) {
447
+ return { ok: true, action: "audit-only", issues: rv.issues };
448
+ }
449
+ return { ok: false, action: "refuse", issues: rv.issues };
450
+ });
451
+ }
452
+
453
+ var buildProfile = gateContract.makeProfileBuilder(PROFILES);
454
+
455
+ function compliancePosture(name) {
456
+ return gateContract.lookupCompliancePosture(name, COMPLIANCE_POSTURES,
457
+ _err, "jwt");
458
+ }
459
+
460
+ var _jwtRulePacks = gateContract.makeRulePackLoader(GuardJwtError, "jwt");
461
+ var loadRulePack = _jwtRulePacks.load;
462
+
463
+ // Operator helper — `kidSafe(kid)` throws on traversal indicators.
464
+ // Documented as the contract for keyResolver implementations.
465
+ function kidSafe(kid) {
466
+ if (typeof kid !== "string" || kid.length === 0) {
467
+ throw _err("jwt.kid-empty", "kid must be a non-empty string");
468
+ }
469
+ if (KID_TRAVERSAL_RE.test(kid)) { // allow:regex-no-length-cap — operator-supplied kid; bounded by upstream JWT size cap
470
+ throw _err("jwt.kid-traversal",
471
+ "kid `" + kid + "` contains path-traversal indicators");
472
+ }
473
+ for (var i = 0; i < kid.length; i += 1) {
474
+ var cc = kid.charCodeAt(i);
475
+ if (cc < 0x20 || cc === 0x7F) { // allow:raw-byte-literal — control-byte boundary check
476
+ throw _err("jwt.kid-control",
477
+ "kid contains control byte at index " + i);
478
+ }
479
+ }
480
+ return kid;
481
+ }
482
+
483
+ module.exports = {
484
+ // ---- guard-* family registry exports ----
485
+ NAME: "jwt",
486
+ KIND: "identifier",
487
+ INTEGRATION_FIXTURES: Object.freeze({
488
+ kind: "identifier",
489
+ // Benign: minimal v4 token with alg=ES256, valid JSON header / payload.
490
+ benignBytes: Buffer.from(
491
+ "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9." +
492
+ "eyJpc3MiOiJleGFtcGxlIiwiZXhwIjo5OTk5OTk5OTk5LCJpYXQiOjE3MDAwMDAwMDB9." +
493
+ "sig", "utf8"),
494
+ benignIdentifier:
495
+ "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9." +
496
+ "eyJpc3MiOiJleGFtcGxlIiwiZXhwIjo5OTk5OTk5OTk5LCJpYXQiOjE3MDAwMDAwMDB9." +
497
+ "sig",
498
+ // Hostile: alg=none — universal refuse class.
499
+ hostileBytes: Buffer.from(
500
+ "eyJhbGciOiJub25lIiwidHlwIjoiSldUIn0." +
501
+ "eyJzdWIiOiJhdHRhY2tlciIsImV4cCI6OTk5OTk5OTk5OX0.", "utf8"),
502
+ hostileIdentifier:
503
+ "eyJhbGciOiJub25lIiwidHlwIjoiSldUIn0." +
504
+ "eyJzdWIiOiJhdHRhY2tlciIsImV4cCI6OTk5OTk5OTk5OX0.",
505
+ }),
506
+ // ---- primitive surface ----
507
+ validate: validate,
508
+ sanitize: sanitize,
509
+ gate: gate,
510
+ kidSafe: kidSafe,
511
+ buildProfile: buildProfile,
512
+ compliancePosture: compliancePosture,
513
+ loadRulePack: loadRulePack,
514
+ PROFILES: PROFILES,
515
+ DEFAULTS: DEFAULTS,
516
+ COMPLIANCE_POSTURES: COMPLIANCE_POSTURES,
517
+ GuardJwtError: GuardJwtError,
518
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blamejs/core",
3
- "version": "0.7.49",
3
+ "version": "0.7.50",
4
4
  "description": "The Node framework that owns its stack.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "blamejs contributors",
@@ -2,10 +2,10 @@
2
2
  "$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
3
3
  "bomFormat": "CycloneDX",
4
4
  "specVersion": "1.5",
5
- "serialNumber": "urn:uuid:edb0b995-1067-4678-bbbc-7072a4712f7a",
5
+ "serialNumber": "urn:uuid:fd92fe0b-46b7-4794-836b-2b5e010a0fd5",
6
6
  "version": 1,
7
7
  "metadata": {
8
- "timestamp": "2026-05-05T22:04:11.156Z",
8
+ "timestamp": "2026-05-05T22:18:17.867Z",
9
9
  "lifecycles": [
10
10
  {
11
11
  "phase": "build"
@@ -19,14 +19,14 @@
19
19
  }
20
20
  ],
21
21
  "component": {
22
- "bom-ref": "@blamejs/core@0.7.49",
22
+ "bom-ref": "@blamejs/core@0.7.50",
23
23
  "type": "library",
24
24
  "name": "blamejs",
25
- "version": "0.7.49",
25
+ "version": "0.7.50",
26
26
  "scope": "required",
27
27
  "author": "blamejs contributors",
28
28
  "description": "The Node framework that owns its stack.",
29
- "purl": "pkg:npm/%40blamejs/core@0.7.49",
29
+ "purl": "pkg:npm/%40blamejs/core@0.7.50",
30
30
  "properties": [],
31
31
  "externalReferences": [
32
32
  {
@@ -54,7 +54,7 @@
54
54
  "components": [],
55
55
  "dependencies": [
56
56
  {
57
- "ref": "@blamejs/core@0.7.49",
57
+ "ref": "@blamejs/core@0.7.50",
58
58
  "dependsOn": []
59
59
  }
60
60
  ]