@blamejs/exceptd-skills 0.13.3 → 0.13.5
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/AGENTS.md +41 -4
- package/CHANGELOG.md +64 -0
- package/README.md +79 -13
- package/bin/exceptd.js +117 -9
- package/data/_indexes/_meta.json +44 -44
- package/data/_indexes/activity-feed.json +3 -3
- package/data/_indexes/catalog-summaries.json +3 -3
- package/data/_indexes/chains.json +0 -32
- package/data/_indexes/handoff-dag.json +127 -57
- package/data/_indexes/section-offsets.json +465 -411
- package/data/_indexes/summary-cards.json +34 -34
- package/data/_indexes/token-budget.json +298 -268
- package/data/cve-catalog.json +4 -146
- package/data/exploit-availability.json +0 -27
- package/data/framework-control-gaps.json +2 -2
- package/data/playbooks/ai-discovered-cve-triage.json +1146 -0
- package/data/playbooks/cicd-pipeline-compromise.json +3 -0
- package/data/playbooks/cred-stores.json +1 -0
- package/data/playbooks/crypto.json +3 -0
- package/data/playbooks/framework.json +3 -0
- package/data/playbooks/idp-incident.json +2 -1
- package/data/playbooks/kernel.json +1 -0
- package/data/playbooks/mcp.json +27 -2
- package/data/playbooks/post-quantum-migration.json +1268 -0
- package/data/playbooks/runtime.json +1 -0
- package/data/playbooks/sbom.json +3 -0
- package/data/playbooks/supply-chain-recovery.json +1332 -0
- package/data/zeroday-lessons.json +0 -89
- package/lib/schemas/cve-catalog.schema.json +2 -1
- package/lib/schemas/playbook.schema.json +5 -0
- package/lib/validate-cve-catalog.js +27 -0
- package/manifest.json +80 -80
- package/orchestrator/index.js +58 -1
- package/package.json +1 -1
- package/sbom.cdx.json +99 -66
- package/skills/age-gates-child-safety/skill.md +2 -0
- package/skills/ai-attack-surface/skill.md +2 -0
- package/skills/ai-c2-detection/skill.md +2 -0
- package/skills/ai-risk-management/skill.md +2 -0
- package/skills/api-security/skill.md +2 -0
- package/skills/attack-surface-pentest/skill.md +2 -0
- package/skills/cloud-security/skill.md +2 -0
- package/skills/compliance-theater/skill.md +28 -2
- package/skills/container-runtime-security/skill.md +2 -0
- package/skills/coordinated-vuln-disclosure/skill.md +1 -1
- package/skills/defensive-countermeasure-mapping/skill.md +2 -0
- package/skills/dlp-gap-analysis/skill.md +2 -0
- package/skills/exploit-scoring/skill.md +30 -1
- package/skills/framework-gap-analysis/skill.md +28 -1
- package/skills/fuzz-testing-strategy/skill.md +4 -2
- package/skills/global-grc/skill.md +2 -0
- package/skills/identity-assurance/skill.md +2 -0
- package/skills/kernel-lpe-triage/skill.md +2 -0
- package/skills/mcp-agent-trust/skill.md +4 -0
- package/skills/mlops-security/skill.md +2 -0
- package/skills/ot-ics-security/skill.md +2 -0
- package/skills/policy-exception-gen/skill.md +28 -1
- package/skills/pqc-first/skill.md +2 -0
- package/skills/rag-pipeline-security/skill.md +2 -0
- package/skills/researcher/skill.md +2 -0
- package/skills/sector-energy/skill.md +2 -0
- package/skills/sector-federal-government/skill.md +2 -0
- package/skills/sector-financial/skill.md +2 -0
- package/skills/sector-healthcare/skill.md +2 -0
- package/skills/security-maturity-tiers/skill.md +2 -0
- package/skills/skill-update-loop/skill.md +2 -0
- package/skills/supply-chain-integrity/skill.md +2 -0
- package/skills/threat-model-currency/skill.md +37 -1
- package/skills/threat-modeling-methodology/skill.md +2 -0
- package/skills/webapp-security/skill.md +2 -0
- package/skills/zeroday-gap-learn/skill.md +33 -1
package/orchestrator/index.js
CHANGED
|
@@ -1621,6 +1621,28 @@ Examples:
|
|
|
1621
1621
|
*/
|
|
1622
1622
|
async function runWatchlistOrgScan(rawArgs = []) {
|
|
1623
1623
|
const jsonOut = rawArgs.includes('--json');
|
|
1624
|
+
// v0.13.5: --output-format markdown emits a GitHub-flavored markdown
|
|
1625
|
+
// table suitable for pasting into a PR / issue body for ops follow-up.
|
|
1626
|
+
// Accepted values: json | markdown | human (default). --json is the
|
|
1627
|
+
// legacy short form and remains accepted (treated as --output-format json).
|
|
1628
|
+
let outputFormat = jsonOut ? 'json' : 'human';
|
|
1629
|
+
for (let i = 0; i < rawArgs.length; i++) {
|
|
1630
|
+
if (rawArgs[i] === '--output-format' && rawArgs[i + 1]) outputFormat = rawArgs[i + 1];
|
|
1631
|
+
if (rawArgs[i].startsWith('--output-format=')) outputFormat = rawArgs[i].slice('--output-format='.length);
|
|
1632
|
+
}
|
|
1633
|
+
const VALID_FORMATS = ['json', 'markdown', 'human'];
|
|
1634
|
+
if (!VALID_FORMATS.includes(outputFormat)) {
|
|
1635
|
+
process.stdout.write(JSON.stringify({
|
|
1636
|
+
ok: false,
|
|
1637
|
+
verb: 'watchlist',
|
|
1638
|
+
mode: 'org-scan',
|
|
1639
|
+
error: `watchlist --org-scan: --output-format "${outputFormat}" not in accepted set ${JSON.stringify(VALID_FORMATS)}.`,
|
|
1640
|
+
accepted: VALID_FORMATS,
|
|
1641
|
+
provided: outputFormat,
|
|
1642
|
+
}) + '\n');
|
|
1643
|
+
safeExit(EXIT_CODES.GENERIC_FAILURE);
|
|
1644
|
+
return;
|
|
1645
|
+
}
|
|
1624
1646
|
// Extract --org <login>. Accept --org=foo too.
|
|
1625
1647
|
let org = null;
|
|
1626
1648
|
for (let i = 0; i < rawArgs.length; i++) {
|
|
@@ -1703,7 +1725,7 @@ async function runWatchlistOrgScan(rawArgs = []) {
|
|
|
1703
1725
|
} catch { /* network failure — best effort */ }
|
|
1704
1726
|
}
|
|
1705
1727
|
const generated_at = new Date().toISOString();
|
|
1706
|
-
if (
|
|
1728
|
+
if (outputFormat === 'json') {
|
|
1707
1729
|
process.stdout.write(JSON.stringify({
|
|
1708
1730
|
ok: !rateLimited,
|
|
1709
1731
|
verb: 'watchlist',
|
|
@@ -1719,6 +1741,41 @@ async function runWatchlistOrgScan(rawArgs = []) {
|
|
|
1719
1741
|
}) + '\n');
|
|
1720
1742
|
return;
|
|
1721
1743
|
}
|
|
1744
|
+
if (outputFormat === 'markdown') {
|
|
1745
|
+
// GitHub-flavored markdown table — paste-friendly for PR / issue
|
|
1746
|
+
// bodies and security advisories. Includes the control reference
|
|
1747
|
+
// and the unauthenticated / rate-limit caveats so the operator
|
|
1748
|
+
// who receives the paste knows how to validate the result.
|
|
1749
|
+
const lines = [];
|
|
1750
|
+
lines.push(`## GitHub Org-Scan: ${org}`);
|
|
1751
|
+
lines.push('');
|
|
1752
|
+
lines.push(`Generated at \`${generated_at}\`. ${patterns.length} threat-actor naming patterns evaluated. ${matches.length} match(es) found.`);
|
|
1753
|
+
lines.push('');
|
|
1754
|
+
if (unauth) {
|
|
1755
|
+
lines.push('> **Note:** scan ran unauthenticated. Private-repo coverage is incomplete; rate-limit reduces query throughput. Set `GITHUB_TOKEN` env var for full coverage.');
|
|
1756
|
+
lines.push('');
|
|
1757
|
+
}
|
|
1758
|
+
if (rateLimited) {
|
|
1759
|
+
lines.push('> **Warning:** GitHub rate limit hit on at least one pattern query. Some matches may be missing. Re-run with `GITHUB_TOKEN` set to lift the limit.');
|
|
1760
|
+
lines.push('');
|
|
1761
|
+
}
|
|
1762
|
+
if (matches.length === 0) {
|
|
1763
|
+
lines.push('_No repositories matching threat-actor patterns found._');
|
|
1764
|
+
} else {
|
|
1765
|
+
lines.push('| Severity | Repo | Visibility | Created | Pattern | URL |');
|
|
1766
|
+
lines.push('|---|---|---|---|---|---|');
|
|
1767
|
+
for (const m of matches) {
|
|
1768
|
+
const vis = m.private ? '🔒 private' : '🌐 public';
|
|
1769
|
+
const created = (m.created_at || '').slice(0, 10);
|
|
1770
|
+
lines.push(`| **${m.severity}** | \`${m.repo}\` | ${vis} | ${created} | ${m.pattern_id} | [link](${m.url}) |`);
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
lines.push('');
|
|
1774
|
+
lines.push(`Control reference: NEW-CTRL-052 (MAL-2026-SHAI-HULUD-OSS lesson — \`exceptd watchlist --org-scan\`).`);
|
|
1775
|
+
process.stdout.write(lines.join('\n') + '\n');
|
|
1776
|
+
return;
|
|
1777
|
+
}
|
|
1778
|
+
// human (default)
|
|
1722
1779
|
console.log(`\nGitHub Org-Scan — ${generated_at}`);
|
|
1723
1780
|
console.log(`Org: ${org} patterns: ${patterns.length} matches: ${matches.length}`);
|
|
1724
1781
|
if (unauth) console.log('(unauthenticated — set GITHUB_TOKEN for private-repo coverage + higher rate limit)');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blamejs/exceptd-skills",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 10 catalogs, 34 jurisdictions, pre-computed indexes, Ed25519-signed.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-security",
|
package/sbom.cdx.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"bomFormat": "CycloneDX",
|
|
3
3
|
"specVersion": "1.6",
|
|
4
|
-
"serialNumber": "urn:uuid:
|
|
4
|
+
"serialNumber": "urn:uuid:dc4ea6d2-18bd-4318-b6d8-968947c4039e",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"metadata": {
|
|
7
|
-
"timestamp": "
|
|
7
|
+
"timestamp": "2143-02-16T10:07:14.000Z",
|
|
8
8
|
"tools": [
|
|
9
9
|
{
|
|
10
10
|
"vendor": "blamejs",
|
|
11
11
|
"name": "scripts/refresh-sbom.js",
|
|
12
|
-
"version": "0.13.
|
|
12
|
+
"version": "0.13.5"
|
|
13
13
|
}
|
|
14
14
|
],
|
|
15
15
|
"component": {
|
|
16
|
-
"bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.
|
|
16
|
+
"bom-ref": "pkg:npm/@blamejs/exceptd-skills@0.13.5",
|
|
17
17
|
"type": "application",
|
|
18
18
|
"name": "@blamejs/exceptd-skills",
|
|
19
|
-
"version": "0.13.
|
|
19
|
+
"version": "0.13.5",
|
|
20
20
|
"description": "AI security skills grounded in mid-2026 threat reality, not stale framework documentation. 42 skills, 10 catalogs, 34 jurisdictions, pre-computed indexes, Ed25519-signed.",
|
|
21
21
|
"licenses": [
|
|
22
22
|
{
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
],
|
|
28
|
-
"purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.
|
|
28
|
+
"purl": "pkg:npm/%40blamejs/exceptd-skills@0.13.5",
|
|
29
29
|
"hashes": [
|
|
30
30
|
{
|
|
31
31
|
"alg": "SHA-256",
|
|
32
|
-
"content": "
|
|
32
|
+
"content": "641de38e430fc40e79e6ad487fc4cbde1b9ea15b667f9a7ecc49d3535fdf9b1b"
|
|
33
33
|
}
|
|
34
34
|
],
|
|
35
35
|
"externalReferences": [
|
|
36
36
|
{
|
|
37
37
|
"type": "distribution",
|
|
38
|
-
"url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.
|
|
38
|
+
"url": "https://www.npmjs.com/package/@blamejs/exceptd-skills/v/0.13.5"
|
|
39
39
|
},
|
|
40
40
|
{
|
|
41
41
|
"type": "vcs",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"hashes": [
|
|
87
87
|
{
|
|
88
88
|
"alg": "SHA-256",
|
|
89
|
-
"content": "
|
|
89
|
+
"content": "fa1b15280e42f30c8509a37ad66e7bf875731f28bc7594ed887e11d268cc09f8"
|
|
90
90
|
}
|
|
91
91
|
]
|
|
92
92
|
},
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"hashes": [
|
|
109
109
|
{
|
|
110
110
|
"alg": "SHA-256",
|
|
111
|
-
"content": "
|
|
111
|
+
"content": "6065b080b3c9b5b401927aef8fd16a1e64463845cc19b0ddd22844e532a2abca"
|
|
112
112
|
}
|
|
113
113
|
]
|
|
114
114
|
},
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"hashes": [
|
|
153
153
|
{
|
|
154
154
|
"alg": "SHA-256",
|
|
155
|
-
"content": "
|
|
155
|
+
"content": "499743f3bd6784d495ab4ba9a18d7749e918c0b8c5ca8def9e46b334f70f4a14"
|
|
156
156
|
}
|
|
157
157
|
]
|
|
158
158
|
},
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"hashes": [
|
|
230
230
|
{
|
|
231
231
|
"alg": "SHA-256",
|
|
232
|
-
"content": "
|
|
232
|
+
"content": "71b2af8a3677f2eeec9eacb79fc3a0d672fd3714f1cfcfd7695bb49bf588e490"
|
|
233
233
|
}
|
|
234
234
|
]
|
|
235
235
|
},
|
|
@@ -262,7 +262,7 @@
|
|
|
262
262
|
"hashes": [
|
|
263
263
|
{
|
|
264
264
|
"alg": "SHA-256",
|
|
265
|
-
"content": "
|
|
265
|
+
"content": "4b8c05074744f9e099c776e0f9c3afd2b978fc52d702bc8805c3b5bfecdbafcb"
|
|
266
266
|
}
|
|
267
267
|
]
|
|
268
268
|
},
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"hashes": [
|
|
307
307
|
{
|
|
308
308
|
"alg": "SHA-256",
|
|
309
|
-
"content": "
|
|
309
|
+
"content": "ec2656f0d9a893610e27b43eb6035fe9b18e057c9f6dfaac7e7d4959bbcbb795"
|
|
310
310
|
}
|
|
311
311
|
]
|
|
312
312
|
},
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"hashes": [
|
|
318
318
|
{
|
|
319
319
|
"alg": "SHA-256",
|
|
320
|
-
"content": "
|
|
320
|
+
"content": "994bf3203f3a2c80fe21194d00f67ecffa77b80193ba3f4b046e9d38e7b09f0f"
|
|
321
321
|
}
|
|
322
322
|
]
|
|
323
323
|
},
|
|
@@ -343,6 +343,17 @@
|
|
|
343
343
|
}
|
|
344
344
|
]
|
|
345
345
|
},
|
|
346
|
+
{
|
|
347
|
+
"bom-ref": "file:data/playbooks/ai-discovered-cve-triage.json",
|
|
348
|
+
"type": "file",
|
|
349
|
+
"name": "data/playbooks/ai-discovered-cve-triage.json",
|
|
350
|
+
"hashes": [
|
|
351
|
+
{
|
|
352
|
+
"alg": "SHA-256",
|
|
353
|
+
"content": "1f49d4b257eac755cfda0131583d7815c5a7cabf0fb776e2e478ef519900d77b"
|
|
354
|
+
}
|
|
355
|
+
]
|
|
356
|
+
},
|
|
346
357
|
{
|
|
347
358
|
"bom-ref": "file:data/playbooks/cicd-pipeline-compromise.json",
|
|
348
359
|
"type": "file",
|
|
@@ -350,7 +361,7 @@
|
|
|
350
361
|
"hashes": [
|
|
351
362
|
{
|
|
352
363
|
"alg": "SHA-256",
|
|
353
|
-
"content": "
|
|
364
|
+
"content": "78e2d945e95a5de64d72b8ea16183d8a738dce0988ad092a8b1a86a59222b029"
|
|
354
365
|
}
|
|
355
366
|
]
|
|
356
367
|
},
|
|
@@ -383,7 +394,7 @@
|
|
|
383
394
|
"hashes": [
|
|
384
395
|
{
|
|
385
396
|
"alg": "SHA-256",
|
|
386
|
-
"content": "
|
|
397
|
+
"content": "a34da63059b10b4c2887e8715aac60c1e9a3dadb0977615ee5cf02d8fda479b5"
|
|
387
398
|
}
|
|
388
399
|
]
|
|
389
400
|
},
|
|
@@ -405,7 +416,7 @@
|
|
|
405
416
|
"hashes": [
|
|
406
417
|
{
|
|
407
418
|
"alg": "SHA-256",
|
|
408
|
-
"content": "
|
|
419
|
+
"content": "c1d47ce98f77230f2d52527a1f4a4599b8ec93443fbe6afb83561f24d6b571ba"
|
|
409
420
|
}
|
|
410
421
|
]
|
|
411
422
|
},
|
|
@@ -416,7 +427,7 @@
|
|
|
416
427
|
"hashes": [
|
|
417
428
|
{
|
|
418
429
|
"alg": "SHA-256",
|
|
419
|
-
"content": "
|
|
430
|
+
"content": "62198e2c0d16c91da9357daf7c73c600b4987fe48d3b57938f4395ca5d901e27"
|
|
420
431
|
}
|
|
421
432
|
]
|
|
422
433
|
},
|
|
@@ -449,7 +460,7 @@
|
|
|
449
460
|
"hashes": [
|
|
450
461
|
{
|
|
451
462
|
"alg": "SHA-256",
|
|
452
|
-
"content": "
|
|
463
|
+
"content": "dfa6edcde573ebb4c4a68ddffe3f719f15ab49515fa17c310d34f783c085fbba"
|
|
453
464
|
}
|
|
454
465
|
]
|
|
455
466
|
},
|
|
@@ -460,7 +471,7 @@
|
|
|
460
471
|
"hashes": [
|
|
461
472
|
{
|
|
462
473
|
"alg": "SHA-256",
|
|
463
|
-
"content": "
|
|
474
|
+
"content": "ed01d7a14ac6ac485569aea80cd58584f94da72b3227393a070c9098163b111f"
|
|
464
475
|
}
|
|
465
476
|
]
|
|
466
477
|
},
|
|
@@ -493,7 +504,18 @@
|
|
|
493
504
|
"hashes": [
|
|
494
505
|
{
|
|
495
506
|
"alg": "SHA-256",
|
|
496
|
-
"content": "
|
|
507
|
+
"content": "91bbe085689c3569c9731f41b87c1ba61879220a67127b60f94f59045f0f82d9"
|
|
508
|
+
}
|
|
509
|
+
]
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"bom-ref": "file:data/playbooks/post-quantum-migration.json",
|
|
513
|
+
"type": "file",
|
|
514
|
+
"name": "data/playbooks/post-quantum-migration.json",
|
|
515
|
+
"hashes": [
|
|
516
|
+
{
|
|
517
|
+
"alg": "SHA-256",
|
|
518
|
+
"content": "59c58097750eff57414a308ede38e51a5cf789ec81c706cd7c58a113a163bba9"
|
|
497
519
|
}
|
|
498
520
|
]
|
|
499
521
|
},
|
|
@@ -515,7 +537,7 @@
|
|
|
515
537
|
"hashes": [
|
|
516
538
|
{
|
|
517
539
|
"alg": "SHA-256",
|
|
518
|
-
"content": "
|
|
540
|
+
"content": "27607530186a6611e05f49597894a66611cf526f14eb401999facaf1ea82e89f"
|
|
519
541
|
}
|
|
520
542
|
]
|
|
521
543
|
},
|
|
@@ -526,7 +548,7 @@
|
|
|
526
548
|
"hashes": [
|
|
527
549
|
{
|
|
528
550
|
"alg": "SHA-256",
|
|
529
|
-
"content": "
|
|
551
|
+
"content": "e0128a312c3f44af858db3bb2eae225c264472fac4c2e63e63033dfdc376aed9"
|
|
530
552
|
}
|
|
531
553
|
]
|
|
532
554
|
},
|
|
@@ -541,6 +563,17 @@
|
|
|
541
563
|
}
|
|
542
564
|
]
|
|
543
565
|
},
|
|
566
|
+
{
|
|
567
|
+
"bom-ref": "file:data/playbooks/supply-chain-recovery.json",
|
|
568
|
+
"type": "file",
|
|
569
|
+
"name": "data/playbooks/supply-chain-recovery.json",
|
|
570
|
+
"hashes": [
|
|
571
|
+
{
|
|
572
|
+
"alg": "SHA-256",
|
|
573
|
+
"content": "d0a13bab1eac5712f4dd910ab62f7c39920ee481534baa88ed6dd55134812cd0"
|
|
574
|
+
}
|
|
575
|
+
]
|
|
576
|
+
},
|
|
544
577
|
{
|
|
545
578
|
"bom-ref": "file:data/playbooks/webhook-callback-abuse.json",
|
|
546
579
|
"type": "file",
|
|
@@ -570,7 +603,7 @@
|
|
|
570
603
|
"hashes": [
|
|
571
604
|
{
|
|
572
605
|
"alg": "SHA-256",
|
|
573
|
-
"content": "
|
|
606
|
+
"content": "3d4c18977f2100f200e209dc55331931a5d0adc54af35879fc58f1b43deac56f"
|
|
574
607
|
}
|
|
575
608
|
]
|
|
576
609
|
},
|
|
@@ -746,7 +779,7 @@
|
|
|
746
779
|
"hashes": [
|
|
747
780
|
{
|
|
748
781
|
"alg": "SHA-256",
|
|
749
|
-
"content": "
|
|
782
|
+
"content": "bb1ad0a64b9e05c39d4bc3bd31615938f77510fd61a0c48b735386043a9ace22"
|
|
750
783
|
}
|
|
751
784
|
]
|
|
752
785
|
},
|
|
@@ -768,7 +801,7 @@
|
|
|
768
801
|
"hashes": [
|
|
769
802
|
{
|
|
770
803
|
"alg": "SHA-256",
|
|
771
|
-
"content": "
|
|
804
|
+
"content": "fb6c41c37cb9249f7f702722158351fca7c7a9a9e8a144fde4a1c709de4e1836"
|
|
772
805
|
}
|
|
773
806
|
]
|
|
774
807
|
},
|
|
@@ -889,7 +922,7 @@
|
|
|
889
922
|
"hashes": [
|
|
890
923
|
{
|
|
891
924
|
"alg": "SHA-256",
|
|
892
|
-
"content": "
|
|
925
|
+
"content": "d98598a62974f8e0b01cce1120b54f5c117744b5bdb1a84d3a092556fc2f67d8"
|
|
893
926
|
}
|
|
894
927
|
]
|
|
895
928
|
},
|
|
@@ -988,7 +1021,7 @@
|
|
|
988
1021
|
"hashes": [
|
|
989
1022
|
{
|
|
990
1023
|
"alg": "SHA-256",
|
|
991
|
-
"content": "
|
|
1024
|
+
"content": "6bbf4f4d9540c2539d6f2635b39ba42f963e3a2238e9e8b6569d0cc65719b813"
|
|
992
1025
|
}
|
|
993
1026
|
]
|
|
994
1027
|
},
|
|
@@ -1032,7 +1065,7 @@
|
|
|
1032
1065
|
"hashes": [
|
|
1033
1066
|
{
|
|
1034
1067
|
"alg": "SHA-256",
|
|
1035
|
-
"content": "
|
|
1068
|
+
"content": "55ce6c144afe7bb0636fad89607a4dca5df0bd5e5803f9c502d305184b1db1e1"
|
|
1036
1069
|
}
|
|
1037
1070
|
]
|
|
1038
1071
|
},
|
|
@@ -1417,7 +1450,7 @@
|
|
|
1417
1450
|
"hashes": [
|
|
1418
1451
|
{
|
|
1419
1452
|
"alg": "SHA-256",
|
|
1420
|
-
"content": "
|
|
1453
|
+
"content": "51ffbbc0743daa26d6c7fe55ff6ec223dccb2087ddca981e06ab7133230e9ec5"
|
|
1421
1454
|
}
|
|
1422
1455
|
]
|
|
1423
1456
|
},
|
|
@@ -1428,7 +1461,7 @@
|
|
|
1428
1461
|
"hashes": [
|
|
1429
1462
|
{
|
|
1430
1463
|
"alg": "SHA-256",
|
|
1431
|
-
"content": "
|
|
1464
|
+
"content": "d1361c53c8360999e1ec6a403bcbfaa53d0afc11689e8781d26081196dd079d4"
|
|
1432
1465
|
}
|
|
1433
1466
|
]
|
|
1434
1467
|
},
|
|
@@ -1439,7 +1472,7 @@
|
|
|
1439
1472
|
"hashes": [
|
|
1440
1473
|
{
|
|
1441
1474
|
"alg": "SHA-256",
|
|
1442
|
-
"content": "
|
|
1475
|
+
"content": "490511ad517a0c3ad64f6a951c36cffb3109fed2c5da6376b5efc50e799e02a9"
|
|
1443
1476
|
}
|
|
1444
1477
|
]
|
|
1445
1478
|
},
|
|
@@ -1450,7 +1483,7 @@
|
|
|
1450
1483
|
"hashes": [
|
|
1451
1484
|
{
|
|
1452
1485
|
"alg": "SHA-256",
|
|
1453
|
-
"content": "
|
|
1486
|
+
"content": "686f53c2aee3a44108d1fa3e5f52fc7d971edc00946cfc1f082e4658af25fddc"
|
|
1454
1487
|
}
|
|
1455
1488
|
]
|
|
1456
1489
|
},
|
|
@@ -1461,7 +1494,7 @@
|
|
|
1461
1494
|
"hashes": [
|
|
1462
1495
|
{
|
|
1463
1496
|
"alg": "SHA-256",
|
|
1464
|
-
"content": "
|
|
1497
|
+
"content": "8a79a28b7b1c3088672bc09017a0d2481e45fb1c0f89768e87642268b62d4808"
|
|
1465
1498
|
}
|
|
1466
1499
|
]
|
|
1467
1500
|
},
|
|
@@ -1472,7 +1505,7 @@
|
|
|
1472
1505
|
"hashes": [
|
|
1473
1506
|
{
|
|
1474
1507
|
"alg": "SHA-256",
|
|
1475
|
-
"content": "
|
|
1508
|
+
"content": "e845c4e08adef038888a025bf920a042c851df41ca53f41aa5fc11ec02a37fbb"
|
|
1476
1509
|
}
|
|
1477
1510
|
]
|
|
1478
1511
|
},
|
|
@@ -1494,7 +1527,7 @@
|
|
|
1494
1527
|
"hashes": [
|
|
1495
1528
|
{
|
|
1496
1529
|
"alg": "SHA-256",
|
|
1497
|
-
"content": "
|
|
1530
|
+
"content": "84844b369f3195eae06115b392b4ceb41d96c1b3fda254f82c37cd8165858e7f"
|
|
1498
1531
|
}
|
|
1499
1532
|
]
|
|
1500
1533
|
},
|
|
@@ -1505,7 +1538,7 @@
|
|
|
1505
1538
|
"hashes": [
|
|
1506
1539
|
{
|
|
1507
1540
|
"alg": "SHA-256",
|
|
1508
|
-
"content": "
|
|
1541
|
+
"content": "42babdc846b3e91af6be4698c7b5e876d9dd5cdb214d1aa2b4faceb6773e4ed1"
|
|
1509
1542
|
}
|
|
1510
1543
|
]
|
|
1511
1544
|
},
|
|
@@ -1516,7 +1549,7 @@
|
|
|
1516
1549
|
"hashes": [
|
|
1517
1550
|
{
|
|
1518
1551
|
"alg": "SHA-256",
|
|
1519
|
-
"content": "
|
|
1552
|
+
"content": "d608fc7cc9e7c89640101078623490596b1610f7020eecde0d696e5c5084f932"
|
|
1520
1553
|
}
|
|
1521
1554
|
]
|
|
1522
1555
|
},
|
|
@@ -1527,7 +1560,7 @@
|
|
|
1527
1560
|
"hashes": [
|
|
1528
1561
|
{
|
|
1529
1562
|
"alg": "SHA-256",
|
|
1530
|
-
"content": "
|
|
1563
|
+
"content": "6c85b8761e557069ae0623400a2218a81356e5426f0a4e3ddebdc2a569735c9b"
|
|
1531
1564
|
}
|
|
1532
1565
|
]
|
|
1533
1566
|
},
|
|
@@ -1538,7 +1571,7 @@
|
|
|
1538
1571
|
"hashes": [
|
|
1539
1572
|
{
|
|
1540
1573
|
"alg": "SHA-256",
|
|
1541
|
-
"content": "
|
|
1574
|
+
"content": "331a0248dd8ed3b509b759c41a9a4d6d8d6dc67fb732ad31d1a4c2d9a0865054"
|
|
1542
1575
|
}
|
|
1543
1576
|
]
|
|
1544
1577
|
},
|
|
@@ -1549,7 +1582,7 @@
|
|
|
1549
1582
|
"hashes": [
|
|
1550
1583
|
{
|
|
1551
1584
|
"alg": "SHA-256",
|
|
1552
|
-
"content": "
|
|
1585
|
+
"content": "6aa0960d85465006cdffcce3478dc790a14fd1cc95c73e124d5809836c26a4c4"
|
|
1553
1586
|
}
|
|
1554
1587
|
]
|
|
1555
1588
|
},
|
|
@@ -1571,7 +1604,7 @@
|
|
|
1571
1604
|
"hashes": [
|
|
1572
1605
|
{
|
|
1573
1606
|
"alg": "SHA-256",
|
|
1574
|
-
"content": "
|
|
1607
|
+
"content": "9f50b4d52c470d5616fc1626589843a5b2602d209436ded08cc9cc9885df770c"
|
|
1575
1608
|
}
|
|
1576
1609
|
]
|
|
1577
1610
|
},
|
|
@@ -1582,7 +1615,7 @@
|
|
|
1582
1615
|
"hashes": [
|
|
1583
1616
|
{
|
|
1584
1617
|
"alg": "SHA-256",
|
|
1585
|
-
"content": "
|
|
1618
|
+
"content": "04e841fc426f92f20c254497b3b92b54d603062a0e6a617f3e9d607d6115c097"
|
|
1586
1619
|
}
|
|
1587
1620
|
]
|
|
1588
1621
|
},
|
|
@@ -1593,7 +1626,7 @@
|
|
|
1593
1626
|
"hashes": [
|
|
1594
1627
|
{
|
|
1595
1628
|
"alg": "SHA-256",
|
|
1596
|
-
"content": "
|
|
1629
|
+
"content": "1088d1ef5a0b4b2e50b356e3ff766a3ba6c66ba3435caf394d7c9c493d45b17e"
|
|
1597
1630
|
}
|
|
1598
1631
|
]
|
|
1599
1632
|
},
|
|
@@ -1604,7 +1637,7 @@
|
|
|
1604
1637
|
"hashes": [
|
|
1605
1638
|
{
|
|
1606
1639
|
"alg": "SHA-256",
|
|
1607
|
-
"content": "
|
|
1640
|
+
"content": "57ca729034e9d33c527d869c1c4aa82fe37e496878a3cbcd9e5043cb62b7105d"
|
|
1608
1641
|
}
|
|
1609
1642
|
]
|
|
1610
1643
|
},
|
|
@@ -1615,7 +1648,7 @@
|
|
|
1615
1648
|
"hashes": [
|
|
1616
1649
|
{
|
|
1617
1650
|
"alg": "SHA-256",
|
|
1618
|
-
"content": "
|
|
1651
|
+
"content": "f3c29ce17aaa426b65b58238e5bc9ccabcda23a8d350e597840e5d6d664aa102"
|
|
1619
1652
|
}
|
|
1620
1653
|
]
|
|
1621
1654
|
},
|
|
@@ -1648,7 +1681,7 @@
|
|
|
1648
1681
|
"hashes": [
|
|
1649
1682
|
{
|
|
1650
1683
|
"alg": "SHA-256",
|
|
1651
|
-
"content": "
|
|
1684
|
+
"content": "08b3e9815ba481c57c80f5fc0ccbf5bb7cbb41f570c235ba6ff9596b8c07354d"
|
|
1652
1685
|
}
|
|
1653
1686
|
]
|
|
1654
1687
|
},
|
|
@@ -1659,7 +1692,7 @@
|
|
|
1659
1692
|
"hashes": [
|
|
1660
1693
|
{
|
|
1661
1694
|
"alg": "SHA-256",
|
|
1662
|
-
"content": "
|
|
1695
|
+
"content": "19a6b54375808e59143070011328d8c936836845bca4a484108738bbef290694"
|
|
1663
1696
|
}
|
|
1664
1697
|
]
|
|
1665
1698
|
},
|
|
@@ -1670,7 +1703,7 @@
|
|
|
1670
1703
|
"hashes": [
|
|
1671
1704
|
{
|
|
1672
1705
|
"alg": "SHA-256",
|
|
1673
|
-
"content": "
|
|
1706
|
+
"content": "44fc3a4a6118e764a4bef840358c98d01b87f6e47bac9dd88e2df7633573414a"
|
|
1674
1707
|
}
|
|
1675
1708
|
]
|
|
1676
1709
|
},
|
|
@@ -1681,7 +1714,7 @@
|
|
|
1681
1714
|
"hashes": [
|
|
1682
1715
|
{
|
|
1683
1716
|
"alg": "SHA-256",
|
|
1684
|
-
"content": "
|
|
1717
|
+
"content": "33d3d82c87ed8708839f5211bb7b59a924c2e3d9c5d915dc2cc101c53176145e"
|
|
1685
1718
|
}
|
|
1686
1719
|
]
|
|
1687
1720
|
},
|
|
@@ -1692,7 +1725,7 @@
|
|
|
1692
1725
|
"hashes": [
|
|
1693
1726
|
{
|
|
1694
1727
|
"alg": "SHA-256",
|
|
1695
|
-
"content": "
|
|
1728
|
+
"content": "1e758322d74386f5c48d5bf5d7a4b4adfcef29553aca6d7c610845953beb8228"
|
|
1696
1729
|
}
|
|
1697
1730
|
]
|
|
1698
1731
|
},
|
|
@@ -1703,7 +1736,7 @@
|
|
|
1703
1736
|
"hashes": [
|
|
1704
1737
|
{
|
|
1705
1738
|
"alg": "SHA-256",
|
|
1706
|
-
"content": "
|
|
1739
|
+
"content": "07b38278b60d2437603a541c1ee954999abfe3a192f94b43cd384023738a0c1f"
|
|
1707
1740
|
}
|
|
1708
1741
|
]
|
|
1709
1742
|
},
|
|
@@ -1714,7 +1747,7 @@
|
|
|
1714
1747
|
"hashes": [
|
|
1715
1748
|
{
|
|
1716
1749
|
"alg": "SHA-256",
|
|
1717
|
-
"content": "
|
|
1750
|
+
"content": "4a64b4bc317141a219bcba40593f1994f791103381fd91c17ce23d06b0f6bc4e"
|
|
1718
1751
|
}
|
|
1719
1752
|
]
|
|
1720
1753
|
},
|
|
@@ -1736,7 +1769,7 @@
|
|
|
1736
1769
|
"hashes": [
|
|
1737
1770
|
{
|
|
1738
1771
|
"alg": "SHA-256",
|
|
1739
|
-
"content": "
|
|
1772
|
+
"content": "959aeba706eea43a69136561968d7942dcd981d0a6c3da7db47673c51943b6df"
|
|
1740
1773
|
}
|
|
1741
1774
|
]
|
|
1742
1775
|
},
|
|
@@ -1747,7 +1780,7 @@
|
|
|
1747
1780
|
"hashes": [
|
|
1748
1781
|
{
|
|
1749
1782
|
"alg": "SHA-256",
|
|
1750
|
-
"content": "
|
|
1783
|
+
"content": "efc7681d62b23aaad277e9018687362717bb1fcfb29d7ada844dfb7196870c78"
|
|
1751
1784
|
}
|
|
1752
1785
|
]
|
|
1753
1786
|
},
|
|
@@ -1758,7 +1791,7 @@
|
|
|
1758
1791
|
"hashes": [
|
|
1759
1792
|
{
|
|
1760
1793
|
"alg": "SHA-256",
|
|
1761
|
-
"content": "
|
|
1794
|
+
"content": "91e3eecdc18d108c669d49db1221ac89041a43c8294c8be65d4397cd149d75d0"
|
|
1762
1795
|
}
|
|
1763
1796
|
]
|
|
1764
1797
|
},
|
|
@@ -1769,7 +1802,7 @@
|
|
|
1769
1802
|
"hashes": [
|
|
1770
1803
|
{
|
|
1771
1804
|
"alg": "SHA-256",
|
|
1772
|
-
"content": "
|
|
1805
|
+
"content": "4c4c6fb95c6c2fd6cad3fec8ab8e08076fd4ddfa89ad5f00de017e546e01044d"
|
|
1773
1806
|
}
|
|
1774
1807
|
]
|
|
1775
1808
|
},
|
|
@@ -1780,7 +1813,7 @@
|
|
|
1780
1813
|
"hashes": [
|
|
1781
1814
|
{
|
|
1782
1815
|
"alg": "SHA-256",
|
|
1783
|
-
"content": "
|
|
1816
|
+
"content": "9f3164def71c1f6f78b074ffc452bd02d8b71b313f2feb1554289bd5a099b4e9"
|
|
1784
1817
|
}
|
|
1785
1818
|
]
|
|
1786
1819
|
},
|
|
@@ -1802,7 +1835,7 @@
|
|
|
1802
1835
|
"hashes": [
|
|
1803
1836
|
{
|
|
1804
1837
|
"alg": "SHA-256",
|
|
1805
|
-
"content": "
|
|
1838
|
+
"content": "c1e699e4d48a7f89c32fbc9f2fe64c721a61603624eb93afae7148348cc4637d"
|
|
1806
1839
|
}
|
|
1807
1840
|
]
|
|
1808
1841
|
},
|
|
@@ -1813,7 +1846,7 @@
|
|
|
1813
1846
|
"hashes": [
|
|
1814
1847
|
{
|
|
1815
1848
|
"alg": "SHA-256",
|
|
1816
|
-
"content": "
|
|
1849
|
+
"content": "eb67e2466230e143784b6e741c6ce7ea3e0c0e4385e5ab21b81b8de04f0168e2"
|
|
1817
1850
|
}
|
|
1818
1851
|
]
|
|
1819
1852
|
},
|
|
@@ -1824,7 +1857,7 @@
|
|
|
1824
1857
|
"hashes": [
|
|
1825
1858
|
{
|
|
1826
1859
|
"alg": "SHA-256",
|
|
1827
|
-
"content": "
|
|
1860
|
+
"content": "aea9c61c09e1ec714e129a6000d7b91ddbc74db52a64aa8bc95d3c698bf4ece6"
|
|
1828
1861
|
}
|
|
1829
1862
|
]
|
|
1830
1863
|
},
|
|
@@ -1835,7 +1868,7 @@
|
|
|
1835
1868
|
"hashes": [
|
|
1836
1869
|
{
|
|
1837
1870
|
"alg": "SHA-256",
|
|
1838
|
-
"content": "
|
|
1871
|
+
"content": "38dc4369132fd199d10cebf3287ed8e35ffb0cf3eefbb98ec17d57027a5df7f1"
|
|
1839
1872
|
}
|
|
1840
1873
|
]
|
|
1841
1874
|
},
|
|
@@ -1846,7 +1879,7 @@
|
|
|
1846
1879
|
"hashes": [
|
|
1847
1880
|
{
|
|
1848
1881
|
"alg": "SHA-256",
|
|
1849
|
-
"content": "
|
|
1882
|
+
"content": "ba175224737571f9c6148e4cbe47b9ebaa762592cc659b7fb2cf0e9a6b3679c0"
|
|
1850
1883
|
}
|
|
1851
1884
|
]
|
|
1852
1885
|
},
|
|
@@ -1857,7 +1890,7 @@
|
|
|
1857
1890
|
"hashes": [
|
|
1858
1891
|
{
|
|
1859
1892
|
"alg": "SHA-256",
|
|
1860
|
-
"content": "
|
|
1893
|
+
"content": "135ca1cd01476b4df9ba7fbba2f194d0cac521480b51d479d60045d9abfc0350"
|
|
1861
1894
|
}
|
|
1862
1895
|
]
|
|
1863
1896
|
},
|
|
@@ -1868,7 +1901,7 @@
|
|
|
1868
1901
|
"hashes": [
|
|
1869
1902
|
{
|
|
1870
1903
|
"alg": "SHA-256",
|
|
1871
|
-
"content": "
|
|
1904
|
+
"content": "adcb681f90ab3c58a98c7935fd8bad102d7ed16b6db6235661483ec1be6cf410"
|
|
1872
1905
|
}
|
|
1873
1906
|
]
|
|
1874
1907
|
},
|