@blamejs/exceptd-skills 0.16.8 → 0.16.9

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_meta": {
3
3
  "schema_version": "1.1.0",
4
- "last_updated": "2026-05-18",
4
+ "last_updated": "2026-06-01",
5
5
  "last_threat_review": "2026-05-17",
6
6
  "purpose": "Zero-day learning loop output. Each entry maps a CVE to: attack vector, defense chain analysis, framework coverage, new control requirements generated, and exposure scoring. v1.1.0 (2026-05-15): every entry now carries ai_discovered_zeroday boolean + ai_discovery_source enum + ai_discovery_date + ai_assist_factor ladder, per AGENTS.md Hard Rule #7.",
7
7
  "note": "Never delete entries. Closed gaps are marked status: closed. History is data.",
@@ -17,7 +17,7 @@
17
17
  "rebuild_after_days": 365,
18
18
  "note": "Per-entry last_verified governs decay. Skills depending on this catalog must check entry freshness before high-stakes use."
19
19
  },
20
- "entry_count": 430
20
+ "entry_count": 439
21
21
  },
22
22
  "CVE-2026-31431": {
23
23
  "name": "Copy Fail",
@@ -25104,5 +25104,530 @@
25104
25104
  "ai_discovery_source": "vendor_research",
25105
25105
  "ai_discovery_date": "2026-05-28",
25106
25106
  "ai_assist_factor": "low"
25107
+ },
25108
+ "CVE-2023-51764": {
25109
+ "name": "Postfix SMTP smuggling (non-standard end-of-data sequence enables sender spoofing past SPF/DKIM/DMARC)",
25110
+ "lesson_date": "2026-06-01",
25111
+ "attack_vector": {
25112
+ "description": "SMTP smuggling: the MTA accepts a non-standard end-of-data sequence, letting an attacker smuggle a second message that inherits the outer connection's SPF/DKIM/DMARC pass and delivers a spoofed sender. Disclosed Dec 2023 (SEC Consult).",
25113
+ "privileges_required": "none (unauthenticated inbound SMTP connection to the MTA)",
25114
+ "complexity": "low — public technique and tooling; integrity (spoofing) impact, not RCE.",
25115
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25116
+ },
25117
+ "defense_chain": {
25118
+ "prevention": {
25119
+ "what_would_have_worked": "Upgrade the MTA to the fixed release and set the strict end-of-data handling option (Postfix smtpd_forbid_unauth_pipelining + discard CHUNKING; Sendmail srv_features 'o'; Exim 4.97.1). Align inbound end-of-data interpretation with the rest of the mail path.",
25120
+ "was_this_required": true,
25121
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25122
+ "adequacy": "Necessary and largely sufficient — the fix closes the parsing differential. DMARC/SPF/DKIM alone do NOT help: smuggling passes them on the outer envelope."
25123
+ },
25124
+ "detection": {
25125
+ "what_would_have_worked": "Probe inbound MTAs for acceptance of <LF>.<LF> / <LF>.<CR><LF> end-of-data; alert on delivered messages containing a second smuggled envelope that inherited an authentication pass.",
25126
+ "was_this_required": false,
25127
+ "framework_requiring_it": null,
25128
+ "adequacy": "Catches the parsing differential directly; sender-authentication telemetry will not flag it because the spoof passes authentication."
25129
+ },
25130
+ "response": {
25131
+ "what_would_have_worked": "Patch/reconfigure, then review delivered mail in the exposure window for spoofed senders that passed DMARC, and warn recipients of any phishing/BEC delivered through the channel.",
25132
+ "was_this_required": true,
25133
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25134
+ "adequacy": "Required — the spoofing channel delivers authenticated-looking phishing until the parsing differential is closed."
25135
+ }
25136
+ },
25137
+ "framework_coverage": {
25138
+ "NIST-800-53-SI-2": {
25139
+ "covered": true,
25140
+ "adequate": false,
25141
+ "gap": "Patch SLA leaves a spoofing-capable MTA live for weeks; the fix is partly a configuration change the standard patch process does not surface."
25142
+ },
25143
+ "ISO-27001-2022-A.8.8": {
25144
+ "covered": true,
25145
+ "adequate": false,
25146
+ "gap": "'Appropriate timescales' undefined for an active phishing-delivery channel."
25147
+ },
25148
+ "NIS2-Art21-network-security": {
25149
+ "covered": true,
25150
+ "adequate": false,
25151
+ "gap": "Assumes SPF/DKIM/DMARC are sufficient anti-spoofing; SMTP smuggling bypasses all three on the outer envelope."
25152
+ },
25153
+ "PCI-DSS-4.0-6.3.3": {
25154
+ "covered": true,
25155
+ "adequate": false,
25156
+ "gap": "A BEC delivery vector in front of CDE personnel; 30-day window is acceptance of a phishing channel."
25157
+ }
25158
+ },
25159
+ "compliance_exposure_score": {
25160
+ "percent_audit_passing_orgs_still_exposed": 60,
25161
+ "basis": "Organizations that pass audits run mainstream MTAs on standard patch SLAs and rely on SPF/DKIM/DMARC, which SMTP smuggling defeats; the end-of-data configuration hardening is rarely in the documented patch procedure.",
25162
+ "theater_pattern": "email_authentication_assumed_sufficient"
25163
+ },
25164
+ "ai_discovered_zeroday": false,
25165
+ "ai_discovery_source": "human_researcher",
25166
+ "ai_assist_factor": "none"
25167
+ },
25168
+ "CVE-2023-51765": {
25169
+ "name": "Sendmail SMTP smuggling (non-standard end-of-data sequence enables sender spoofing past SPF/DKIM/DMARC)",
25170
+ "lesson_date": "2026-06-01",
25171
+ "attack_vector": {
25172
+ "description": "SMTP smuggling: the MTA accepts a non-standard end-of-data sequence, letting an attacker smuggle a second message that inherits the outer connection's SPF/DKIM/DMARC pass and delivers a spoofed sender. Disclosed Dec 2023 (SEC Consult).",
25173
+ "privileges_required": "none (unauthenticated inbound SMTP connection to the MTA)",
25174
+ "complexity": "low — public technique and tooling; integrity (spoofing) impact, not RCE.",
25175
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25176
+ },
25177
+ "defense_chain": {
25178
+ "prevention": {
25179
+ "what_would_have_worked": "Upgrade the MTA to the fixed release and set the strict end-of-data handling option (Postfix smtpd_forbid_unauth_pipelining + discard CHUNKING; Sendmail srv_features 'o'; Exim 4.97.1). Align inbound end-of-data interpretation with the rest of the mail path.",
25180
+ "was_this_required": true,
25181
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25182
+ "adequacy": "Necessary and largely sufficient — the fix closes the parsing differential. DMARC/SPF/DKIM alone do NOT help: smuggling passes them on the outer envelope."
25183
+ },
25184
+ "detection": {
25185
+ "what_would_have_worked": "Probe inbound MTAs for acceptance of <LF>.<LF> / <LF>.<CR><LF> end-of-data; alert on delivered messages containing a second smuggled envelope that inherited an authentication pass.",
25186
+ "was_this_required": false,
25187
+ "framework_requiring_it": null,
25188
+ "adequacy": "Catches the parsing differential directly; sender-authentication telemetry will not flag it because the spoof passes authentication."
25189
+ },
25190
+ "response": {
25191
+ "what_would_have_worked": "Patch/reconfigure, then review delivered mail in the exposure window for spoofed senders that passed DMARC, and warn recipients of any phishing/BEC delivered through the channel.",
25192
+ "was_this_required": true,
25193
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25194
+ "adequacy": "Required — the spoofing channel delivers authenticated-looking phishing until the parsing differential is closed."
25195
+ }
25196
+ },
25197
+ "framework_coverage": {
25198
+ "NIST-800-53-SI-2": {
25199
+ "covered": true,
25200
+ "adequate": false,
25201
+ "gap": "Patch SLA leaves a spoofing-capable MTA live for weeks; the fix is partly a configuration change the standard patch process does not surface."
25202
+ },
25203
+ "ISO-27001-2022-A.8.8": {
25204
+ "covered": true,
25205
+ "adequate": false,
25206
+ "gap": "'Appropriate timescales' undefined for an active phishing-delivery channel."
25207
+ },
25208
+ "NIS2-Art21-network-security": {
25209
+ "covered": true,
25210
+ "adequate": false,
25211
+ "gap": "Assumes SPF/DKIM/DMARC are sufficient anti-spoofing; SMTP smuggling bypasses all three on the outer envelope."
25212
+ },
25213
+ "PCI-DSS-4.0-6.3.3": {
25214
+ "covered": true,
25215
+ "adequate": false,
25216
+ "gap": "A BEC delivery vector in front of CDE personnel; 30-day window is acceptance of a phishing channel."
25217
+ }
25218
+ },
25219
+ "compliance_exposure_score": {
25220
+ "percent_audit_passing_orgs_still_exposed": 60,
25221
+ "basis": "Organizations that pass audits run mainstream MTAs on standard patch SLAs and rely on SPF/DKIM/DMARC, which SMTP smuggling defeats; the end-of-data configuration hardening is rarely in the documented patch procedure.",
25222
+ "theater_pattern": "email_authentication_assumed_sufficient"
25223
+ },
25224
+ "ai_discovered_zeroday": false,
25225
+ "ai_discovery_source": "human_researcher",
25226
+ "ai_assist_factor": "none"
25227
+ },
25228
+ "CVE-2023-51766": {
25229
+ "name": "Exim SMTP smuggling (non-standard end-of-data sequence enables sender spoofing past SPF/DKIM/DMARC)",
25230
+ "lesson_date": "2026-06-01",
25231
+ "attack_vector": {
25232
+ "description": "SMTP smuggling: the MTA accepts a non-standard end-of-data sequence, letting an attacker smuggle a second message that inherits the outer connection's SPF/DKIM/DMARC pass and delivers a spoofed sender. Disclosed Dec 2023 (SEC Consult).",
25233
+ "privileges_required": "none (unauthenticated inbound SMTP connection to the MTA)",
25234
+ "complexity": "low — public technique and tooling; integrity (spoofing) impact, not RCE.",
25235
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25236
+ },
25237
+ "defense_chain": {
25238
+ "prevention": {
25239
+ "what_would_have_worked": "Upgrade the MTA to the fixed release and set the strict end-of-data handling option (Postfix smtpd_forbid_unauth_pipelining + discard CHUNKING; Sendmail srv_features 'o'; Exim 4.97.1). Align inbound end-of-data interpretation with the rest of the mail path.",
25240
+ "was_this_required": true,
25241
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25242
+ "adequacy": "Necessary and largely sufficient — the fix closes the parsing differential. DMARC/SPF/DKIM alone do NOT help: smuggling passes them on the outer envelope."
25243
+ },
25244
+ "detection": {
25245
+ "what_would_have_worked": "Probe inbound MTAs for acceptance of <LF>.<LF> / <LF>.<CR><LF> end-of-data; alert on delivered messages containing a second smuggled envelope that inherited an authentication pass.",
25246
+ "was_this_required": false,
25247
+ "framework_requiring_it": null,
25248
+ "adequacy": "Catches the parsing differential directly; sender-authentication telemetry will not flag it because the spoof passes authentication."
25249
+ },
25250
+ "response": {
25251
+ "what_would_have_worked": "Patch/reconfigure, then review delivered mail in the exposure window for spoofed senders that passed DMARC, and warn recipients of any phishing/BEC delivered through the channel.",
25252
+ "was_this_required": true,
25253
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25254
+ "adequacy": "Required — the spoofing channel delivers authenticated-looking phishing until the parsing differential is closed."
25255
+ }
25256
+ },
25257
+ "framework_coverage": {
25258
+ "NIST-800-53-SI-2": {
25259
+ "covered": true,
25260
+ "adequate": false,
25261
+ "gap": "Patch SLA leaves a spoofing-capable MTA live for weeks; the fix is partly a configuration change the standard patch process does not surface."
25262
+ },
25263
+ "ISO-27001-2022-A.8.8": {
25264
+ "covered": true,
25265
+ "adequate": false,
25266
+ "gap": "'Appropriate timescales' undefined for an active phishing-delivery channel."
25267
+ },
25268
+ "NIS2-Art21-network-security": {
25269
+ "covered": true,
25270
+ "adequate": false,
25271
+ "gap": "Assumes SPF/DKIM/DMARC are sufficient anti-spoofing; SMTP smuggling bypasses all three on the outer envelope."
25272
+ },
25273
+ "PCI-DSS-4.0-6.3.3": {
25274
+ "covered": true,
25275
+ "adequate": false,
25276
+ "gap": "A BEC delivery vector in front of CDE personnel; 30-day window is acceptance of a phishing channel."
25277
+ }
25278
+ },
25279
+ "compliance_exposure_score": {
25280
+ "percent_audit_passing_orgs_still_exposed": 60,
25281
+ "basis": "Organizations that pass audits run mainstream MTAs on standard patch SLAs and rely on SPF/DKIM/DMARC, which SMTP smuggling defeats; the end-of-data configuration hardening is rarely in the documented patch procedure.",
25282
+ "theater_pattern": "email_authentication_assumed_sufficient"
25283
+ },
25284
+ "ai_discovered_zeroday": false,
25285
+ "ai_discovery_source": "human_researcher",
25286
+ "ai_assist_factor": "none"
25287
+ },
25288
+ "CVE-2021-38371": {
25289
+ "name": "Exim STARTTLS response injection (pre-handshake buffer not drained on the sending MTA path)",
25290
+ "lesson_date": "2026-06-01",
25291
+ "attack_vector": {
25292
+ "description": "STARTTLS command/response injection: the server/client does not discard bytes buffered before the TLS handshake, so an on-path attacker injects plaintext SMTP commands/responses that are processed inside the encrypted session. Part of the NO STARTTLS research lineage (2011 Postfix → 2021 multi-MTA).",
25293
+ "privileges_required": "on-path / adversary-in-the-middle position on the SMTP path (no account required)",
25294
+ "complexity": "high — requires an on-path position; once positioned, injection is reliable.",
25295
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25296
+ },
25297
+ "defense_chain": {
25298
+ "prevention": {
25299
+ "what_would_have_worked": "Upgrade to the fixed release that drains the pre-STARTTLS receive buffer at the upgrade, and reject any trailing payload on the STARTTLS line. Prefer implicit TLS (465/993) over opportunistic STARTTLS where possible.",
25300
+ "was_this_required": true,
25301
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25302
+ "adequacy": "Necessary and sufficient — the fix is the buffer drain. TLS cipher strength is irrelevant; the bytes cross the boundary before TLS applies."
25303
+ },
25304
+ "detection": {
25305
+ "what_would_have_worked": "Alert on plaintext commands queued before STARTTLS being processed after the handshake; monitor for an unexpected command/response immediately following a STARTTLS upgrade.",
25306
+ "was_this_required": false,
25307
+ "framework_requiring_it": null,
25308
+ "adequacy": "Catches the buffering defect directly; TLS monitoring will not flag it because the session is genuinely encrypted."
25309
+ },
25310
+ "response": {
25311
+ "what_would_have_worked": "Patch, then assume any mail routed/redirected during the exposure window on an MITM-reachable path may have been tampered; rotate any credentials exposed through the channel.",
25312
+ "was_this_required": true,
25313
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25314
+ "adequacy": "Required where an on-path adversary was plausible; otherwise the patch closes the window."
25315
+ }
25316
+ },
25317
+ "framework_coverage": {
25318
+ "NIST-800-53-SI-2": {
25319
+ "covered": true,
25320
+ "adequate": false,
25321
+ "gap": "Patch SLA assumes opportunistic TLS protects the session; the injection executes attacker plaintext after the handshake regardless of cipher."
25322
+ },
25323
+ "ISO-27001-2022-A.8.8": {
25324
+ "covered": true,
25325
+ "adequate": false,
25326
+ "gap": "Standard 30-day reading unsafe for an on-path command-injection defect; cryptographic controls are present but defeated by the buffering defect."
25327
+ },
25328
+ "UK-CAF-B4": {
25329
+ "covered": true,
25330
+ "adequate": false,
25331
+ "gap": "Treats TLS as the boundary; the pre-handshake buffer means the boundary is crossed before TLS applies."
25332
+ }
25333
+ },
25334
+ "compliance_exposure_score": {
25335
+ "percent_audit_passing_orgs_still_exposed": 45,
25336
+ "basis": "STARTTLS injection requires an on-path position, so fewer audit-passing orgs are practically exposed, but those relying on opportunistic STARTTLS without the buffer-drain fix remain vulnerable to a network-positioned adversary.",
25337
+ "theater_pattern": "transport_encryption_assumed_complete"
25338
+ },
25339
+ "ai_discovered_zeroday": false,
25340
+ "ai_discovery_source": "human_researcher",
25341
+ "ai_assist_factor": "none"
25342
+ },
25343
+ "CVE-2021-33515": {
25344
+ "name": "Dovecot lib-smtp STARTTLS command injection (submission service)",
25345
+ "lesson_date": "2026-06-01",
25346
+ "attack_vector": {
25347
+ "description": "STARTTLS command/response injection: the server/client does not discard bytes buffered before the TLS handshake, so an on-path attacker injects plaintext SMTP commands/responses that are processed inside the encrypted session. Part of the NO STARTTLS research lineage (2011 Postfix → 2021 multi-MTA).",
25348
+ "privileges_required": "on-path / adversary-in-the-middle position on the SMTP path (no account required)",
25349
+ "complexity": "high — requires an on-path position; once positioned, injection is reliable.",
25350
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25351
+ },
25352
+ "defense_chain": {
25353
+ "prevention": {
25354
+ "what_would_have_worked": "Upgrade to the fixed release that drains the pre-STARTTLS receive buffer at the upgrade, and reject any trailing payload on the STARTTLS line. Prefer implicit TLS (465/993) over opportunistic STARTTLS where possible.",
25355
+ "was_this_required": true,
25356
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25357
+ "adequacy": "Necessary and sufficient — the fix is the buffer drain. TLS cipher strength is irrelevant; the bytes cross the boundary before TLS applies."
25358
+ },
25359
+ "detection": {
25360
+ "what_would_have_worked": "Alert on plaintext commands queued before STARTTLS being processed after the handshake; monitor for an unexpected command/response immediately following a STARTTLS upgrade.",
25361
+ "was_this_required": false,
25362
+ "framework_requiring_it": null,
25363
+ "adequacy": "Catches the buffering defect directly; TLS monitoring will not flag it because the session is genuinely encrypted."
25364
+ },
25365
+ "response": {
25366
+ "what_would_have_worked": "Patch, then assume any mail routed/redirected during the exposure window on an MITM-reachable path may have been tampered; rotate any credentials exposed through the channel.",
25367
+ "was_this_required": true,
25368
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25369
+ "adequacy": "Required where an on-path adversary was plausible; otherwise the patch closes the window."
25370
+ }
25371
+ },
25372
+ "framework_coverage": {
25373
+ "NIST-800-53-SI-2": {
25374
+ "covered": true,
25375
+ "adequate": false,
25376
+ "gap": "Patch SLA assumes opportunistic TLS protects the session; the injection executes attacker plaintext after the handshake regardless of cipher."
25377
+ },
25378
+ "ISO-27001-2022-A.8.8": {
25379
+ "covered": true,
25380
+ "adequate": false,
25381
+ "gap": "Standard 30-day reading unsafe for an on-path command-injection defect; cryptographic controls are present but defeated by the buffering defect."
25382
+ },
25383
+ "UK-CAF-B4": {
25384
+ "covered": true,
25385
+ "adequate": false,
25386
+ "gap": "Treats TLS as the boundary; the pre-handshake buffer means the boundary is crossed before TLS applies."
25387
+ }
25388
+ },
25389
+ "compliance_exposure_score": {
25390
+ "percent_audit_passing_orgs_still_exposed": 45,
25391
+ "basis": "STARTTLS injection requires an on-path position, so fewer audit-passing orgs are practically exposed, but those relying on opportunistic STARTTLS without the buffer-drain fix remain vulnerable to a network-positioned adversary.",
25392
+ "theater_pattern": "transport_encryption_assumed_complete"
25393
+ },
25394
+ "ai_discovered_zeroday": false,
25395
+ "ai_discovery_source": "human_researcher",
25396
+ "ai_assist_factor": "none"
25397
+ },
25398
+ "CVE-2011-0411": {
25399
+ "name": "Postfix STARTTLS plaintext command injection (I/O buffering not reset across TLS handshake)",
25400
+ "lesson_date": "2026-06-01",
25401
+ "attack_vector": {
25402
+ "description": "STARTTLS command/response injection: the server/client does not discard bytes buffered before the TLS handshake, so an on-path attacker injects plaintext SMTP commands/responses that are processed inside the encrypted session. Part of the NO STARTTLS research lineage (2011 Postfix → 2021 multi-MTA).",
25403
+ "privileges_required": "on-path / adversary-in-the-middle position on the SMTP path (no account required)",
25404
+ "complexity": "high — requires an on-path position; once positioned, injection is reliable.",
25405
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25406
+ },
25407
+ "defense_chain": {
25408
+ "prevention": {
25409
+ "what_would_have_worked": "Upgrade to the fixed release that drains the pre-STARTTLS receive buffer at the upgrade, and reject any trailing payload on the STARTTLS line. Prefer implicit TLS (465/993) over opportunistic STARTTLS where possible.",
25410
+ "was_this_required": true,
25411
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25412
+ "adequacy": "Necessary and sufficient — the fix is the buffer drain. TLS cipher strength is irrelevant; the bytes cross the boundary before TLS applies."
25413
+ },
25414
+ "detection": {
25415
+ "what_would_have_worked": "Alert on plaintext commands queued before STARTTLS being processed after the handshake; monitor for an unexpected command/response immediately following a STARTTLS upgrade.",
25416
+ "was_this_required": false,
25417
+ "framework_requiring_it": null,
25418
+ "adequacy": "Catches the buffering defect directly; TLS monitoring will not flag it because the session is genuinely encrypted."
25419
+ },
25420
+ "response": {
25421
+ "what_would_have_worked": "Patch, then assume any mail routed/redirected during the exposure window on an MITM-reachable path may have been tampered; rotate any credentials exposed through the channel.",
25422
+ "was_this_required": true,
25423
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25424
+ "adequacy": "Required where an on-path adversary was plausible; otherwise the patch closes the window."
25425
+ }
25426
+ },
25427
+ "framework_coverage": {
25428
+ "NIST-800-53-SI-2": {
25429
+ "covered": true,
25430
+ "adequate": false,
25431
+ "gap": "Patch SLA assumes opportunistic TLS protects the session; the injection executes attacker plaintext after the handshake regardless of cipher."
25432
+ },
25433
+ "ISO-27001-2022-A.8.8": {
25434
+ "covered": true,
25435
+ "adequate": false,
25436
+ "gap": "Standard 30-day reading unsafe for an on-path command-injection defect; cryptographic controls are present but defeated by the buffering defect."
25437
+ },
25438
+ "UK-CAF-B4": {
25439
+ "covered": true,
25440
+ "adequate": false,
25441
+ "gap": "Treats TLS as the boundary; the pre-handshake buffer means the boundary is crossed before TLS applies."
25442
+ }
25443
+ },
25444
+ "compliance_exposure_score": {
25445
+ "percent_audit_passing_orgs_still_exposed": 45,
25446
+ "basis": "STARTTLS injection requires an on-path position, so fewer audit-passing orgs are practically exposed, but those relying on opportunistic STARTTLS without the buffer-drain fix remain vulnerable to a network-positioned adversary.",
25447
+ "theater_pattern": "transport_encryption_assumed_complete"
25448
+ },
25449
+ "ai_discovered_zeroday": false,
25450
+ "ai_discovery_source": "human_researcher",
25451
+ "ai_assist_factor": "none"
25452
+ },
25453
+ "CVE-2023-50387": {
25454
+ "name": "KeyTrap — DNSSEC validating-resolver CPU exhaustion via crafted DNSKEY/RRSIG combinations",
25455
+ "lesson_date": "2026-06-01",
25456
+ "attack_vector": {
25457
+ "description": "DNSSEC validating-resolver CPU exhaustion: a single crafted DNSSEC response forces worst-case signature/hash work (KeyTrap key-tag collisions; NSEC3 iteration enumeration), stalling the resolver for all clients. Co-disclosed Feb 2024.",
25458
+ "privileges_required": "none (a single crafted response or connection; no authentication)",
25459
+ "complexity": "low — single cheap request triggers unbounded server work; high-profile coordinated disclosure.",
25460
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25461
+ },
25462
+ "defense_chain": {
25463
+ "prevention": {
25464
+ "what_would_have_worked": "Upgrade the validating resolver to the release that bounds DNSKEY/RRSIG evaluation (KeyTrap) and NSEC3 iteration/closest-encloser work; cap validation effort per response.",
25465
+ "was_this_required": true,
25466
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25467
+ "adequacy": "Necessary — the fix bounds the asymmetric work. Capacity headroom alone does not help because cost is asymmetric (one cheap request → unbounded server work)."
25468
+ },
25469
+ "detection": {
25470
+ "what_would_have_worked": "Alert on resolver CPU saturation correlated with DNSSEC validation of zones presenting many DNSKEY/RRSIG records or high NSEC3 iterations.",
25471
+ "was_this_required": false,
25472
+ "framework_requiring_it": null,
25473
+ "adequacy": "Necessary to catch exploitation in progress; rate/CPU telemetry is the signal, since each individual request looks valid."
25474
+ },
25475
+ "response": {
25476
+ "what_would_have_worked": "Patch the resolver fleet and, if under active load, fail over to patched resolvers; the flaw is availability, not data compromise.",
25477
+ "was_this_required": true,
25478
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25479
+ "adequacy": "Mandatory under load — without the work-bounding fix the service stays exhaustible."
25480
+ }
25481
+ },
25482
+ "framework_coverage": {
25483
+ "NIST-800-53-SI-2": {
25484
+ "covered": true,
25485
+ "adequate": false,
25486
+ "gap": "A mass-triggerable CPU-exhaustion DoS; 30-day patch window far exceeds the time to take the service offline."
25487
+ },
25488
+ "ISO-27001-2022-A.8.8": {
25489
+ "covered": true,
25490
+ "adequate": false,
25491
+ "gap": "'Appropriate timescales' undefined for an availability flaw on shared infrastructure."
25492
+ },
25493
+ "NIS2-Art21-network-security": {
25494
+ "covered": true,
25495
+ "adequate": false,
25496
+ "gap": "Availability of essential-function infrastructure is in scope but lacks a compressed SLA for single-packet/single-connection amplification DoS."
25497
+ },
25498
+ "DORA-Art-9": {
25499
+ "covered": true,
25500
+ "adequate": false,
25501
+ "gap": "Availability protection presumes capacity headroom, which an algorithmic-complexity DoS defeats."
25502
+ }
25503
+ },
25504
+ "compliance_exposure_score": {
25505
+ "percent_audit_passing_orgs_still_exposed": 55,
25506
+ "basis": "Audited orgs run validating resolvers on standard patch SLAs; the KeyTrap/NSEC3 work-bounding fixes shipped in a coordinated window but resolver fleets patch slowly.",
25507
+ "theater_pattern": "availability_capacity_assumed_sufficient"
25508
+ },
25509
+ "ai_discovered_zeroday": false,
25510
+ "ai_discovery_source": "academic_ai_fuzzing",
25511
+ "ai_assist_factor": "none"
25512
+ },
25513
+ "CVE-2023-50868": {
25514
+ "name": "DNSSEC NSEC3 closest-encloser proof CPU exhaustion (excessive SHA-1 iterations)",
25515
+ "lesson_date": "2026-06-01",
25516
+ "attack_vector": {
25517
+ "description": "DNSSEC validating-resolver CPU exhaustion: a single crafted DNSSEC response forces worst-case signature/hash work (KeyTrap key-tag collisions; NSEC3 iteration enumeration), stalling the resolver for all clients. Co-disclosed Feb 2024.",
25518
+ "privileges_required": "none (a single crafted response or connection; no authentication)",
25519
+ "complexity": "low — single cheap request triggers unbounded server work; high-profile coordinated disclosure.",
25520
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25521
+ },
25522
+ "defense_chain": {
25523
+ "prevention": {
25524
+ "what_would_have_worked": "Upgrade the validating resolver to the release that bounds DNSKEY/RRSIG evaluation (KeyTrap) and NSEC3 iteration/closest-encloser work; cap validation effort per response.",
25525
+ "was_this_required": true,
25526
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25527
+ "adequacy": "Necessary — the fix bounds the asymmetric work. Capacity headroom alone does not help because cost is asymmetric (one cheap request → unbounded server work)."
25528
+ },
25529
+ "detection": {
25530
+ "what_would_have_worked": "Alert on resolver CPU saturation correlated with DNSSEC validation of zones presenting many DNSKEY/RRSIG records or high NSEC3 iterations.",
25531
+ "was_this_required": false,
25532
+ "framework_requiring_it": null,
25533
+ "adequacy": "Necessary to catch exploitation in progress; rate/CPU telemetry is the signal, since each individual request looks valid."
25534
+ },
25535
+ "response": {
25536
+ "what_would_have_worked": "Patch the resolver fleet and, if under active load, fail over to patched resolvers; the flaw is availability, not data compromise.",
25537
+ "was_this_required": true,
25538
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25539
+ "adequacy": "Mandatory under load — without the work-bounding fix the service stays exhaustible."
25540
+ }
25541
+ },
25542
+ "framework_coverage": {
25543
+ "NIST-800-53-SI-2": {
25544
+ "covered": true,
25545
+ "adequate": false,
25546
+ "gap": "A mass-triggerable CPU-exhaustion DoS; 30-day patch window far exceeds the time to take the service offline."
25547
+ },
25548
+ "ISO-27001-2022-A.8.8": {
25549
+ "covered": true,
25550
+ "adequate": false,
25551
+ "gap": "'Appropriate timescales' undefined for an availability flaw on shared infrastructure."
25552
+ },
25553
+ "NIS2-Art21-network-security": {
25554
+ "covered": true,
25555
+ "adequate": false,
25556
+ "gap": "Availability of essential-function infrastructure is in scope but lacks a compressed SLA for single-packet/single-connection amplification DoS."
25557
+ },
25558
+ "DORA-Art-9": {
25559
+ "covered": true,
25560
+ "adequate": false,
25561
+ "gap": "Availability protection presumes capacity headroom, which an algorithmic-complexity DoS defeats."
25562
+ }
25563
+ },
25564
+ "compliance_exposure_score": {
25565
+ "percent_audit_passing_orgs_still_exposed": 55,
25566
+ "basis": "Audited orgs run validating resolvers on standard patch SLAs; the KeyTrap/NSEC3 work-bounding fixes shipped in a coordinated window but resolver fleets patch slowly.",
25567
+ "theater_pattern": "availability_capacity_assumed_sufficient"
25568
+ },
25569
+ "ai_discovered_zeroday": false,
25570
+ "ai_discovery_source": "academic_ai_fuzzing",
25571
+ "ai_assist_factor": "none"
25572
+ },
25573
+ "CVE-2023-44487": {
25574
+ "name": "HTTP/2 Rapid Reset — stream open-then-RST_STREAM flood (record-breaking DDoS)",
25575
+ "lesson_date": "2026-06-01",
25576
+ "attack_vector": {
25577
+ "description": "HTTP/2 Rapid Reset: a client opens streams and immediately resets them, exhausting server per-stream work at near-zero client cost — a record-breaking DDoS primitive co-disclosed Oct 2023 and KEV-listed.",
25578
+ "privileges_required": "none (a single crafted response or connection; no authentication)",
25579
+ "complexity": "low — single cheap request triggers unbounded server work; mass-exploited (KEV).",
25580
+ "ai_factor": "No AI involvement documented in discovery or weaponization."
25581
+ },
25582
+ "defense_chain": {
25583
+ "prevention": {
25584
+ "what_would_have_worked": "Apply the per-implementation rapid-reset patch that caps client-initiated stream resets per connection and closes abusive connections; pair with an upstream DDoS-absorbing CDN/WAF.",
25585
+ "was_this_required": true,
25586
+ "framework_requiring_it": "NIST 800-53 SI-2 (flaw remediation)",
25587
+ "adequacy": "Necessary — the fix bounds the asymmetric work. Capacity headroom alone does not help because cost is asymmetric (one cheap request → unbounded server work)."
25588
+ },
25589
+ "detection": {
25590
+ "what_would_have_worked": "Alert on HTTP/2 connections whose stream-open/reset churn far exceeds response throughput; track per-connection RST_STREAM rate.",
25591
+ "was_this_required": false,
25592
+ "framework_requiring_it": null,
25593
+ "adequacy": "Necessary to catch exploitation in progress; rate/CPU telemetry is the signal, since each individual request looks valid."
25594
+ },
25595
+ "response": {
25596
+ "what_would_have_worked": "Patch the affected servers/proxies, enable rapid-reset accounting, and engage upstream DDoS mitigation; the flaw is an availability event, not a compromise.",
25597
+ "was_this_required": true,
25598
+ "framework_requiring_it": "NIST 800-53 IR-4 (incident handling)",
25599
+ "adequacy": "Mandatory under load — without the work-bounding fix the service stays exhaustible."
25600
+ }
25601
+ },
25602
+ "framework_coverage": {
25603
+ "NIST-800-53-SI-2": {
25604
+ "covered": true,
25605
+ "adequate": false,
25606
+ "gap": "A mass-triggerable CPU-exhaustion DoS; 30-day patch window far exceeds the time to take the service offline."
25607
+ },
25608
+ "ISO-27001-2022-A.8.8": {
25609
+ "covered": true,
25610
+ "adequate": false,
25611
+ "gap": "'Appropriate timescales' undefined for an availability flaw on shared infrastructure."
25612
+ },
25613
+ "NIS2-Art21-network-security": {
25614
+ "covered": true,
25615
+ "adequate": false,
25616
+ "gap": "Availability of essential-function infrastructure is in scope but lacks a compressed SLA for single-packet/single-connection amplification DoS."
25617
+ },
25618
+ "DORA-Art-9": {
25619
+ "covered": true,
25620
+ "adequate": false,
25621
+ "gap": "Availability protection presumes capacity headroom, which an algorithmic-complexity DoS defeats."
25622
+ }
25623
+ },
25624
+ "compliance_exposure_score": {
25625
+ "percent_audit_passing_orgs_still_exposed": 70,
25626
+ "basis": "Audited orgs run HTTP/2 front-doors on standard patch SLAs; Rapid Reset was mass-exploited within the disclosure window and the per-implementation reset-accounting fix is not always part of the documented patch step.",
25627
+ "theater_pattern": "availability_capacity_assumed_sufficient"
25628
+ },
25629
+ "ai_discovered_zeroday": false,
25630
+ "ai_discovery_source": "vendor_research",
25631
+ "ai_assist_factor": "none"
25107
25632
  }
25108
25633
  }