@blamejs/exceptd-skills 0.13.107 → 0.13.108
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 +4 -0
- package/data/_indexes/_meta.json +9 -9
- package/data/_indexes/activity-feed.json +2 -2
- package/data/_indexes/catalog-summaries.json +2 -2
- package/data/_indexes/chains.json +464 -0
- package/data/atlas-ttps.json +2 -0
- package/data/attack-techniques.json +7 -1
- package/data/cve-catalog.json +207 -1
- package/data/cwe-catalog.json +2 -0
- package/data/framework-control-gaps.json +19 -1
- package/data/zeroday-lessons.json +100 -0
- package/manifest.json +44 -44
- package/package.json +2 -2
- package/sbom.cdx.json +25 -25
package/data/cve-catalog.json
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"ai_discovery_methodology": {
|
|
56
56
|
"field_added": "2026-05-15",
|
|
57
57
|
"agents_md_target": "Hard Rule #7 — '41% of 2025 zero-days were AI-discovered'. Catalog target rate floor: 0.40.",
|
|
58
|
-
"current_rate": 0.
|
|
58
|
+
"current_rate": 0.030,
|
|
59
59
|
"current_floor_enforced_by_test": 0.03,
|
|
60
60
|
"ladder_to_target": [
|
|
61
61
|
0.03,
|
|
@@ -16884,6 +16884,212 @@
|
|
|
16884
16884
|
"_intake_method": "manual-verified-curation",
|
|
16885
16885
|
"_kev_short_description": "A malicious MLflow Recipe runs code when executed (CWE-502 unsafe deserialization); no patched version - treat MLflow artifacts as untrusted code."
|
|
16886
16886
|
},
|
|
16887
|
+
"CVE-2025-25297": {
|
|
16888
|
+
"name": "Label Studio S3 Storage Endpoint Server-Side Request Forgery",
|
|
16889
|
+
"type": "SSRF",
|
|
16890
|
+
"cvss_score": 7.7,
|
|
16891
|
+
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:N",
|
|
16892
|
+
"cvss_note": "NIST (NVD) CVSS v3.1 base 7.7 (HIGH, PR:L); the GitHub (CNA) advisory rates it 8.6 (HIGH, PR:N - it treats the action as unauthenticated). Label Studio's S3 storage feature does not validate the custom endpoint URL, so an attacker points it at internal services or cloud metadata and the server issues the request, leaking data via the responses (CWE-918 SSRF).",
|
|
16893
|
+
"cisa_kev": false,
|
|
16894
|
+
"poc_available": true,
|
|
16895
|
+
"poc_description": "Documented in the disclosing advisory (https://github.com/advisories/GHSA-m238-fmcw-wh58): point the S3 storage endpoint at an internal address / cloud-metadata endpoint and the Label Studio server issues the request.",
|
|
16896
|
+
"ai_discovered": false,
|
|
16897
|
+
"ai_discovery_source": "human_researcher",
|
|
16898
|
+
"ai_discovery_notes": "Disclosed via the GitHub Security Advisory (https://github.com/advisories/GHSA-m238-fmcw-wh58). The abused surface is Label Studio, a widely used data-labeling / annotation platform in ML pipelines.",
|
|
16899
|
+
"ai_assisted_weaponization": false,
|
|
16900
|
+
"ai_assisted_notes": "No AI-assisted weaponization; the flaw is an unvalidated server-side fetch in an ML data-pipeline platform's S3 storage endpoint.",
|
|
16901
|
+
"active_exploitation": "none",
|
|
16902
|
+
"active_exploitation_notes": "Advisory disclosure with a coordinated fix; no confirmed in-the-wild exploitation reported as of curation.",
|
|
16903
|
+
"affected": "Label Studio before 1.16.0.",
|
|
16904
|
+
"affected_versions": [
|
|
16905
|
+
"Label Studio < 1.16.0"
|
|
16906
|
+
],
|
|
16907
|
+
"vector": "Label Studio's S3 cloud-storage integration accepts a custom S3 endpoint URL without validation. An attacker sets the endpoint to an internal address or cloud-metadata service; the Label Studio server makes the request and returns data from the responses - a server-side request forgery that bypasses network segmentation (CWE-918).",
|
|
16908
|
+
"complexity": "low",
|
|
16909
|
+
"complexity_notes": "NVD AV:N / AC:L / PR:L - network-reachable; requires an account, but lower-privilege users can configure the storage endpoint.",
|
|
16910
|
+
"patch_available": true,
|
|
16911
|
+
"patch_required_reboot": false,
|
|
16912
|
+
"live_patch_available": false,
|
|
16913
|
+
"live_patch_tools": [],
|
|
16914
|
+
"live_patch_notes": "Remediation is upgrading to 1.16.0 or later; redeploy, no host reboot.",
|
|
16915
|
+
"vendor_update_paths": [
|
|
16916
|
+
"Upgrade Label Studio to 1.16.0 or later. Validate and allowlist destinations for the S3 storage endpoint (block private/link-local/cloud-metadata addresses and file:// schemes), and disable self-registration if not required."
|
|
16917
|
+
],
|
|
16918
|
+
"framework_control_gaps": {
|
|
16919
|
+
"NIST-800-53-SC-7": "Boundary protection does not treat the ML data platform's server-side fetch (S3 storage endpoint) as an egress that can reach internal services.",
|
|
16920
|
+
"NIST-800-53-SI-10": "Input validation is not applied to the user-supplied URL/endpoint before the server fetches it.",
|
|
16921
|
+
"NIST-800-53-AC-3": "Access enforcement does not constrain who can configure a server-side fetch, and lower-privilege users can set the storage endpoint.",
|
|
16922
|
+
"ISO-27001-2022-A.8.22": "Network segregation is bypassed: the platform fetches attacker-chosen internal URLs server-side.",
|
|
16923
|
+
"NIS2-Art21-network-security": "Network-security measures do not enumerate ML data-platform SSRF as an internal-pivot surface.",
|
|
16924
|
+
"DORA-Art-9": "ICT protection measures do not model server-side request forgery from an ML data platform as an ICT-risk event.",
|
|
16925
|
+
"UK-CAF-B4": "System Security objective has no objective for validating server-side fetch destinations in ML data platforms.",
|
|
16926
|
+
"AU-ISM-1546": "Patch-application control does not single out ML data-labeling platforms.",
|
|
16927
|
+
"ALL-AI-PIPELINE-INTEGRITY": "No framework treats an ML data-pipeline platform's import/storage URL fetch as an egress that must validate and allowlist destinations."
|
|
16928
|
+
},
|
|
16929
|
+
"atlas_refs": [
|
|
16930
|
+
"AML.T0049"
|
|
16931
|
+
],
|
|
16932
|
+
"attack_refs": [
|
|
16933
|
+
"T1190",
|
|
16934
|
+
"T1090"
|
|
16935
|
+
],
|
|
16936
|
+
"rwep_score": 23,
|
|
16937
|
+
"rwep_factors": {
|
|
16938
|
+
"cisa_kev": 0,
|
|
16939
|
+
"poc_available": 20,
|
|
16940
|
+
"ai_factor": 0,
|
|
16941
|
+
"active_exploitation": 0,
|
|
16942
|
+
"blast_radius": 18,
|
|
16943
|
+
"patch_available": -15,
|
|
16944
|
+
"live_patch_available": 0,
|
|
16945
|
+
"reboot_required": 0
|
|
16946
|
+
},
|
|
16947
|
+
"rwep_notes": "Moderate (RWEP 23, \"patch within 30 days\" band per lib/scoring.js timeline). Not KEV, no confirmed in-the-wild exploitation, patched at disclosure (Hard Rule #3): poc_available=20 + blast_radius=18 (SSRF - internal reach / data exfil, not direct RCE), minus patch_available 15.",
|
|
16948
|
+
"epss_score": null,
|
|
16949
|
+
"epss_date": "2026-05-25",
|
|
16950
|
+
"epss_note": "EPSS not pulled for this entry; retrieve via FIRST EPSS API in a future refresh.",
|
|
16951
|
+
"epss_source": "https://api.first.org/data/v1/epss?cve=CVE-2025-25297",
|
|
16952
|
+
"cwe_refs": [
|
|
16953
|
+
"CWE-918"
|
|
16954
|
+
],
|
|
16955
|
+
"iocs": {
|
|
16956
|
+
"behavioral": [
|
|
16957
|
+
"Label Studio S3 storage endpoint configured with an internal/private address, cloud-metadata endpoint (169.254.169.254), or file:// URL.",
|
|
16958
|
+
"Outbound requests from the Label Studio server to internal services or metadata endpoints not part of normal operation.",
|
|
16959
|
+
"Label Studio < 1.16.0 with S3 storage configurable by lower-privilege users - the exposed precondition."
|
|
16960
|
+
],
|
|
16961
|
+
"_ioc_source_note": "Behavioral signatures anchored to the GitHub Security Advisory (https://github.com/advisories/GHSA-m238-fmcw-wh58) and NVD CVE-2025-25297 (CWE-918)."
|
|
16962
|
+
},
|
|
16963
|
+
"source_verified": "2026-05-25",
|
|
16964
|
+
"verification_sources": [
|
|
16965
|
+
"https://nvd.nist.gov/vuln/detail/CVE-2025-25297",
|
|
16966
|
+
"https://github.com/advisories/GHSA-m238-fmcw-wh58"
|
|
16967
|
+
],
|
|
16968
|
+
"vendor_advisories": [
|
|
16969
|
+
{
|
|
16970
|
+
"vendor": "GitHub Security Advisory",
|
|
16971
|
+
"advisory_id": "CVE-2025-25297",
|
|
16972
|
+
"url": "https://github.com/advisories/GHSA-m238-fmcw-wh58",
|
|
16973
|
+
"severity": "high",
|
|
16974
|
+
"published_date": "2025-02-14"
|
|
16975
|
+
},
|
|
16976
|
+
{
|
|
16977
|
+
"vendor": "NVD",
|
|
16978
|
+
"advisory_id": "CVE-2025-25297",
|
|
16979
|
+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-25297",
|
|
16980
|
+
"severity": "high",
|
|
16981
|
+
"published_date": "2025-02-14"
|
|
16982
|
+
}
|
|
16983
|
+
],
|
|
16984
|
+
"last_updated": "2026-05-25",
|
|
16985
|
+
"discovery_attribution_note": "Manually curated from the GitHub Security Advisory (https://github.com/advisories/GHSA-m238-fmcw-wh58, CWE-918) + NVD (CVSS v3.1 7.7; GitHub CNA 8.6). Data-labeling / ML-pipeline platform flaw (Label Studio); introduces the AI data-pipeline import/storage SSRF control NEW-CTRL-105.",
|
|
16986
|
+
"_auto_imported": false,
|
|
16987
|
+
"_intake_method": "manual-verified-curation",
|
|
16988
|
+
"_kev_short_description": "Label Studio's S3 storage feature does not validate the custom endpoint URL, letting an attacker reach internal services / cloud metadata via the server (CWE-918 SSRF); fixed in 1.16.0."
|
|
16989
|
+
},
|
|
16990
|
+
"CVE-2022-36551": {
|
|
16991
|
+
"name": "Label Studio Data Import Server-Side Request Forgery",
|
|
16992
|
+
"type": "SSRF",
|
|
16993
|
+
"cvss_score": 6.5,
|
|
16994
|
+
"cvss_vector": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N",
|
|
16995
|
+
"cvss_note": "NIST (NVD) CVSS v3.1 base 6.5 (MEDIUM, PR:L). Label Studio's Data Import module fetches a user-supplied URL without restriction, so an authenticated user (self-registration is enabled by default, so effectively any remote attacker) reads arbitrary files / reaches internal services via the server (CWE-918 SSRF).",
|
|
16996
|
+
"cisa_kev": false,
|
|
16997
|
+
"poc_available": true,
|
|
16998
|
+
"poc_description": "Documented in the disclosing advisory (https://github.com/advisories/GHSA-pc6f-259w-w3j6): point the Data Import URL fetch at an internal address / cloud-metadata endpoint and the Label Studio server issues the request.",
|
|
16999
|
+
"ai_discovered": false,
|
|
17000
|
+
"ai_discovery_source": "human_researcher",
|
|
17001
|
+
"ai_discovery_notes": "Disclosed via the GitHub Security Advisory (https://github.com/advisories/GHSA-pc6f-259w-w3j6). The abused surface is Label Studio, a widely used data-labeling / annotation platform in ML pipelines.",
|
|
17002
|
+
"ai_assisted_weaponization": false,
|
|
17003
|
+
"ai_assisted_notes": "No AI-assisted weaponization; the flaw is an unvalidated server-side fetch in an ML data-pipeline platform's Data Import URL fetch.",
|
|
17004
|
+
"active_exploitation": "none",
|
|
17005
|
+
"active_exploitation_notes": "Advisory disclosure with a coordinated fix; no confirmed in-the-wild exploitation reported as of curation.",
|
|
17006
|
+
"affected": "Label Studio before 1.6.0.",
|
|
17007
|
+
"affected_versions": [
|
|
17008
|
+
"Label Studio < 1.6.0"
|
|
17009
|
+
],
|
|
17010
|
+
"vector": "Label Studio's Data Import module fetches a user-supplied URL with no destination restriction, so a user (self-registration is on by default, so any remote attacker can obtain an account) supplies file:// or internal URLs and the server reads arbitrary files or reaches internal services - a server-side request forgery (CWE-918).",
|
|
17011
|
+
"complexity": "low",
|
|
17012
|
+
"complexity_notes": "NVD AV:N / AC:L / PR:L - network-reachable; requires an account, but self-registration is on by default.",
|
|
17013
|
+
"patch_available": true,
|
|
17014
|
+
"patch_required_reboot": false,
|
|
17015
|
+
"live_patch_available": false,
|
|
17016
|
+
"live_patch_tools": [],
|
|
17017
|
+
"live_patch_notes": "Remediation is upgrading to 1.6.0 or later; redeploy, no host reboot.",
|
|
17018
|
+
"vendor_update_paths": [
|
|
17019
|
+
"Upgrade Label Studio to 1.6.0 or later. Validate and allowlist destinations for the Data Import URL fetch (block private/link-local/cloud-metadata addresses and file:// schemes), and disable self-registration if not required."
|
|
17020
|
+
],
|
|
17021
|
+
"framework_control_gaps": {
|
|
17022
|
+
"NIST-800-53-SC-7": "Boundary protection does not treat the ML data platform's server-side fetch (Data Import URL fetch) as an egress that can reach internal services.",
|
|
17023
|
+
"NIST-800-53-SI-10": "Input validation is not applied to the user-supplied URL/endpoint before the server fetches it.",
|
|
17024
|
+
"NIST-800-53-AC-3": "Access enforcement does not constrain who can configure a server-side fetch, and self-registration lets any remote user reach it.",
|
|
17025
|
+
"ISO-27001-2022-A.8.22": "Network segregation is bypassed: the platform fetches attacker-chosen internal URLs server-side.",
|
|
17026
|
+
"NIS2-Art21-network-security": "Network-security measures do not enumerate ML data-platform SSRF as an internal-pivot surface.",
|
|
17027
|
+
"DORA-Art-9": "ICT protection measures do not model server-side request forgery from an ML data platform as an ICT-risk event.",
|
|
17028
|
+
"UK-CAF-B4": "System Security objective has no objective for validating server-side fetch destinations in ML data platforms.",
|
|
17029
|
+
"AU-ISM-1546": "Patch-application control does not single out ML data-labeling platforms.",
|
|
17030
|
+
"ALL-AI-PIPELINE-INTEGRITY": "No framework treats an ML data-pipeline platform's import/storage URL fetch as an egress that must validate and allowlist destinations."
|
|
17031
|
+
},
|
|
17032
|
+
"atlas_refs": [
|
|
17033
|
+
"AML.T0049"
|
|
17034
|
+
],
|
|
17035
|
+
"attack_refs": [
|
|
17036
|
+
"T1190",
|
|
17037
|
+
"T1090"
|
|
17038
|
+
],
|
|
17039
|
+
"rwep_score": 21,
|
|
17040
|
+
"rwep_factors": {
|
|
17041
|
+
"cisa_kev": 0,
|
|
17042
|
+
"poc_available": 20,
|
|
17043
|
+
"ai_factor": 0,
|
|
17044
|
+
"active_exploitation": 0,
|
|
17045
|
+
"blast_radius": 16,
|
|
17046
|
+
"patch_available": -15,
|
|
17047
|
+
"live_patch_available": 0,
|
|
17048
|
+
"reboot_required": 0
|
|
17049
|
+
},
|
|
17050
|
+
"rwep_notes": "Moderate (RWEP 21, \"patch within 30 days\" band per lib/scoring.js timeline). Not KEV, no confirmed in-the-wild exploitation, patched at disclosure (Hard Rule #3): poc_available=20 + blast_radius=16 (SSRF - internal reach / data exfil, not direct RCE), minus patch_available 15.",
|
|
17051
|
+
"epss_score": null,
|
|
17052
|
+
"epss_date": "2026-05-25",
|
|
17053
|
+
"epss_note": "EPSS not pulled for this entry; retrieve via FIRST EPSS API in a future refresh.",
|
|
17054
|
+
"epss_source": "https://api.first.org/data/v1/epss?cve=CVE-2022-36551",
|
|
17055
|
+
"cwe_refs": [
|
|
17056
|
+
"CWE-918"
|
|
17057
|
+
],
|
|
17058
|
+
"iocs": {
|
|
17059
|
+
"behavioral": [
|
|
17060
|
+
"Label Studio Data Import URL fetch configured with an internal/private address, cloud-metadata endpoint (169.254.169.254), or file:// URL.",
|
|
17061
|
+
"Outbound requests from the Label Studio server to internal services or metadata endpoints not part of normal operation.",
|
|
17062
|
+
"Label Studio < 1.6.0 with self-registration enabled (default) - any remote attacker can obtain an account and reach the import SSRF."
|
|
17063
|
+
],
|
|
17064
|
+
"_ioc_source_note": "Behavioral signatures anchored to the GitHub Security Advisory (https://github.com/advisories/GHSA-pc6f-259w-w3j6) and NVD CVE-2022-36551 (CWE-918)."
|
|
17065
|
+
},
|
|
17066
|
+
"source_verified": "2026-05-25",
|
|
17067
|
+
"verification_sources": [
|
|
17068
|
+
"https://nvd.nist.gov/vuln/detail/CVE-2022-36551",
|
|
17069
|
+
"https://github.com/advisories/GHSA-pc6f-259w-w3j6"
|
|
17070
|
+
],
|
|
17071
|
+
"vendor_advisories": [
|
|
17072
|
+
{
|
|
17073
|
+
"vendor": "GitHub Security Advisory",
|
|
17074
|
+
"advisory_id": "CVE-2022-36551",
|
|
17075
|
+
"url": "https://github.com/advisories/GHSA-pc6f-259w-w3j6",
|
|
17076
|
+
"severity": "high",
|
|
17077
|
+
"published_date": "2022-10-04"
|
|
17078
|
+
},
|
|
17079
|
+
{
|
|
17080
|
+
"vendor": "NVD",
|
|
17081
|
+
"advisory_id": "CVE-2022-36551",
|
|
17082
|
+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-36551",
|
|
17083
|
+
"severity": "medium",
|
|
17084
|
+
"published_date": "2022-10-04"
|
|
17085
|
+
}
|
|
17086
|
+
],
|
|
17087
|
+
"last_updated": "2026-05-25",
|
|
17088
|
+
"discovery_attribution_note": "Manually curated from the GitHub Security Advisory (https://github.com/advisories/GHSA-pc6f-259w-w3j6, CWE-918) + NVD (CVSS v3.1 6.5). Data-labeling / ML-pipeline platform flaw (Label Studio); introduces the AI data-pipeline import/storage SSRF control NEW-CTRL-105.",
|
|
17089
|
+
"_auto_imported": false,
|
|
17090
|
+
"_intake_method": "manual-verified-curation",
|
|
17091
|
+
"_kev_short_description": "Label Studio's Data Import fetches user-supplied URLs without restriction (self-registration on by default), letting a remote attacker read files / reach internal services via the server (CWE-918 SSRF); fixed in 1.6.0."
|
|
17092
|
+
},
|
|
16887
17093
|
"CVE-2026-41091": {
|
|
16888
17094
|
"name": "Microsoft Defender (Malware Protection Engine) Link-Following LPE to SYSTEM",
|
|
16889
17095
|
"type": "LPE",
|
package/data/cwe-catalog.json
CHANGED
|
@@ -1868,10 +1868,12 @@
|
|
|
1868
1868
|
"CVE-2021-22054",
|
|
1869
1869
|
"CVE-2021-22175",
|
|
1870
1870
|
"CVE-2021-39935",
|
|
1871
|
+
"CVE-2022-36551",
|
|
1871
1872
|
"CVE-2023-43654",
|
|
1872
1873
|
"CVE-2023-48022",
|
|
1873
1874
|
"CVE-2023-51449",
|
|
1874
1875
|
"CVE-2024-6587",
|
|
1876
|
+
"CVE-2025-25297",
|
|
1875
1877
|
"CVE-2025-61884"
|
|
1876
1878
|
],
|
|
1877
1879
|
"framework_controls_partially_addressing": [
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"opened_date": "2026-01-01",
|
|
36
36
|
"evidence_cves": [
|
|
37
37
|
"CVE-2022-1471",
|
|
38
|
+
"CVE-2022-36551",
|
|
38
39
|
"CVE-2023-43654",
|
|
39
40
|
"CVE-2023-48022",
|
|
40
41
|
"CVE-2023-51449",
|
|
@@ -70,6 +71,7 @@
|
|
|
70
71
|
"CVE-2025-1753",
|
|
71
72
|
"CVE-2025-23254",
|
|
72
73
|
"CVE-2025-23266",
|
|
74
|
+
"CVE-2025-25297",
|
|
73
75
|
"CVE-2025-27520",
|
|
74
76
|
"CVE-2025-30165",
|
|
75
77
|
"CVE-2025-30202",
|
|
@@ -1238,9 +1240,11 @@
|
|
|
1238
1240
|
"status": "open",
|
|
1239
1241
|
"opened_date": "2026-05-17",
|
|
1240
1242
|
"evidence_cves": [
|
|
1243
|
+
"CVE-2022-36551",
|
|
1241
1244
|
"CVE-2024-0132",
|
|
1242
1245
|
"CVE-2024-21626",
|
|
1243
|
-
"CVE-2025-23266"
|
|
1246
|
+
"CVE-2025-23266",
|
|
1247
|
+
"CVE-2025-25297"
|
|
1244
1248
|
],
|
|
1245
1249
|
"atlas_refs": [],
|
|
1246
1250
|
"attack_refs": [
|
|
@@ -2261,6 +2265,7 @@
|
|
|
2261
2265
|
"status": "open",
|
|
2262
2266
|
"opened_date": "2026-05-01",
|
|
2263
2267
|
"evidence_cves": [
|
|
2268
|
+
"CVE-2022-36551",
|
|
2264
2269
|
"CVE-2023-48022",
|
|
2265
2270
|
"CVE-2023-51449",
|
|
2266
2271
|
"CVE-2023-6038",
|
|
@@ -2272,6 +2277,7 @@
|
|
|
2272
2277
|
"CVE-2024-42478",
|
|
2273
2278
|
"CVE-2024-42479",
|
|
2274
2279
|
"CVE-2025-23266",
|
|
2280
|
+
"CVE-2025-25297",
|
|
2275
2281
|
"CVE-2025-30202",
|
|
2276
2282
|
"CVE-2025-32444",
|
|
2277
2283
|
"CVE-2025-53767",
|
|
@@ -2343,6 +2349,7 @@
|
|
|
2343
2349
|
"status": "open",
|
|
2344
2350
|
"opened_date": "2026-05-13",
|
|
2345
2351
|
"evidence_cves": [
|
|
2352
|
+
"CVE-2022-36551",
|
|
2346
2353
|
"CVE-2023-44467",
|
|
2347
2354
|
"CVE-2024-0129",
|
|
2348
2355
|
"CVE-2024-11392",
|
|
@@ -2366,6 +2373,7 @@
|
|
|
2366
2373
|
"CVE-2025-1550",
|
|
2367
2374
|
"CVE-2025-1753",
|
|
2368
2375
|
"CVE-2025-23254",
|
|
2376
|
+
"CVE-2025-25297",
|
|
2369
2377
|
"CVE-2025-27520",
|
|
2370
2378
|
"CVE-2025-30165",
|
|
2371
2379
|
"CVE-2025-32434",
|
|
@@ -5052,6 +5060,7 @@
|
|
|
5052
5060
|
"opened_date": "2026-05-15",
|
|
5053
5061
|
"evidence_cves": [
|
|
5054
5062
|
"CVE-2022-1471",
|
|
5063
|
+
"CVE-2022-36551",
|
|
5055
5064
|
"CVE-2023-43654",
|
|
5056
5065
|
"CVE-2023-44467",
|
|
5057
5066
|
"CVE-2023-48022",
|
|
@@ -5090,6 +5099,7 @@
|
|
|
5090
5099
|
"CVE-2025-1753",
|
|
5091
5100
|
"CVE-2025-23254",
|
|
5092
5101
|
"CVE-2025-23266",
|
|
5102
|
+
"CVE-2025-25297",
|
|
5093
5103
|
"CVE-2025-27520",
|
|
5094
5104
|
"CVE-2025-30165",
|
|
5095
5105
|
"CVE-2025-30202",
|
|
@@ -5167,8 +5177,10 @@
|
|
|
5167
5177
|
"status": "open",
|
|
5168
5178
|
"opened_date": "2026-05-15",
|
|
5169
5179
|
"evidence_cves": [
|
|
5180
|
+
"CVE-2022-36551",
|
|
5170
5181
|
"CVE-2023-6038",
|
|
5171
5182
|
"CVE-2024-1709",
|
|
5183
|
+
"CVE-2025-25297",
|
|
5172
5184
|
"CVE-2025-3248",
|
|
5173
5185
|
"CVE-2026-33017",
|
|
5174
5186
|
"CVE-2026-39987",
|
|
@@ -5625,6 +5637,7 @@
|
|
|
5625
5637
|
"status": "open",
|
|
5626
5638
|
"opened_date": "2026-05-17",
|
|
5627
5639
|
"evidence_cves": [
|
|
5640
|
+
"CVE-2022-36551",
|
|
5628
5641
|
"CVE-2023-44467",
|
|
5629
5642
|
"CVE-2023-51449",
|
|
5630
5643
|
"CVE-2023-6016",
|
|
@@ -5657,6 +5670,7 @@
|
|
|
5657
5670
|
"CVE-2025-1753",
|
|
5658
5671
|
"CVE-2025-23254",
|
|
5659
5672
|
"CVE-2025-23266",
|
|
5673
|
+
"CVE-2025-25297",
|
|
5660
5674
|
"CVE-2025-27520",
|
|
5661
5675
|
"CVE-2025-30165",
|
|
5662
5676
|
"CVE-2025-30202",
|
|
@@ -5725,6 +5739,7 @@
|
|
|
5725
5739
|
"opened_date": "2026-05-17",
|
|
5726
5740
|
"evidence_cves": [
|
|
5727
5741
|
"CVE-2022-1471",
|
|
5742
|
+
"CVE-2022-36551",
|
|
5728
5743
|
"CVE-2023-43654",
|
|
5729
5744
|
"CVE-2023-44467",
|
|
5730
5745
|
"CVE-2023-48022",
|
|
@@ -5763,6 +5778,7 @@
|
|
|
5763
5778
|
"CVE-2025-1753",
|
|
5764
5779
|
"CVE-2025-23254",
|
|
5765
5780
|
"CVE-2025-23266",
|
|
5781
|
+
"CVE-2025-25297",
|
|
5766
5782
|
"CVE-2025-27520",
|
|
5767
5783
|
"CVE-2025-30165",
|
|
5768
5784
|
"CVE-2025-30202",
|
|
@@ -6208,7 +6224,9 @@
|
|
|
6208
6224
|
"status": "open",
|
|
6209
6225
|
"opened_date": "2026-05-18",
|
|
6210
6226
|
"evidence_cves": [
|
|
6227
|
+
"CVE-2022-36551",
|
|
6211
6228
|
"CVE-2024-21762",
|
|
6229
|
+
"CVE-2025-25297",
|
|
6212
6230
|
"CVE-2026-20182"
|
|
6213
6231
|
],
|
|
6214
6232
|
"atlas_refs": [],
|
|
@@ -4561,6 +4561,106 @@
|
|
|
4561
4561
|
"_auto_imported": false,
|
|
4562
4562
|
"_intake_method": "manual-verified-curation"
|
|
4563
4563
|
},
|
|
4564
|
+
"CVE-2025-25297": {
|
|
4565
|
+
"name": "Label Studio S3 Storage Endpoint Server-Side Request Forgery",
|
|
4566
|
+
"lesson_date": "2026-05-25",
|
|
4567
|
+
"attack_vector": {
|
|
4568
|
+
"description": "Label Studio's S3 cloud-storage integration accepts a custom endpoint URL without validation, so an attacker points it at internal services or cloud metadata and the server issues the request, leaking data via the responses.",
|
|
4569
|
+
"privileges_required": "low (an account; self-registration is on by default in the data-import case)",
|
|
4570
|
+
"complexity": "low",
|
|
4571
|
+
"ai_factor": "The abused surface is Label Studio, a data-labeling / annotation platform central to ML data pipelines. The lesson: an ML data platform's server-side fetches (import URLs, storage endpoints) are an egress that must validate and allowlist destinations, or they become an SSRF pivot into internal networks and cloud metadata."
|
|
4572
|
+
},
|
|
4573
|
+
"framework_coverage": {
|
|
4574
|
+
"NIST-800-53-SC-7": {
|
|
4575
|
+
"covered": true,
|
|
4576
|
+
"adequate": false,
|
|
4577
|
+
"gap": "Boundary protection does not treat the ML data platform's server-side fetch as an egress that can reach internal services."
|
|
4578
|
+
},
|
|
4579
|
+
"NIST-800-53-SI-10": {
|
|
4580
|
+
"covered": true,
|
|
4581
|
+
"adequate": false,
|
|
4582
|
+
"gap": "No input validation is applied to the user-supplied URL/endpoint before the server fetches it."
|
|
4583
|
+
},
|
|
4584
|
+
"ALL-AI-PIPELINE-INTEGRITY": {
|
|
4585
|
+
"covered": false,
|
|
4586
|
+
"adequate": false,
|
|
4587
|
+
"gap": "No framework treats an ML data-pipeline platform's import/storage URL fetch as an egress that must validate and allowlist destinations."
|
|
4588
|
+
}
|
|
4589
|
+
},
|
|
4590
|
+
"compliance_exposure_score": {
|
|
4591
|
+
"percent_audit_passing_orgs_still_exposed": 80,
|
|
4592
|
+
"basis": "ML data-labeling platforms are deployed inside trusted networks and import from arbitrary URLs/storage endpoints by design; their server-side fetches are not destination-validated.",
|
|
4593
|
+
"theater_pattern": "ai_data_pipeline_ssrf_trust"
|
|
4594
|
+
},
|
|
4595
|
+
"ai_discovered_zeroday": false,
|
|
4596
|
+
"ai_discovery_source": "human_researcher",
|
|
4597
|
+
"ai_assist_factor": "none",
|
|
4598
|
+
"new_control_requirements": [
|
|
4599
|
+
{
|
|
4600
|
+
"id": "NEW-CTRL-105",
|
|
4601
|
+
"name": "AI-DATA-PIPELINE-IMPORT-SSRF-PROTECTION",
|
|
4602
|
+
"description": "An AI data-pipeline platform that fetches from caller-supplied URLs or endpoints (data import, cloud-storage endpoint configuration, webhook/annotation sources) must validate and allowlist the destination before issuing the request: reject private, link-local, and cloud-metadata addresses (169.254.169.254), reject file:// and non-HTTP schemes, and resolve+pin the host to prevent DNS-rebinding. Restrict who can configure server-side fetches and disable self-registration if not required. The distinguishing test: configure the import/storage URL to an internal or cloud-metadata address on a staging instance and confirm the server refuses the fetch - a platform that issues the request and returns the response is exploitable for SSRF / internal pivot, regardless of authentication posture.",
|
|
4603
|
+
"evidence": "https://github.com/advisories/GHSA-m238-fmcw-wh58",
|
|
4604
|
+
"gap_closes": [
|
|
4605
|
+
"NIST-800-53-SC-7",
|
|
4606
|
+
"NIST-800-53-SI-10",
|
|
4607
|
+
"ALL-AI-PIPELINE-INTEGRITY"
|
|
4608
|
+
]
|
|
4609
|
+
}
|
|
4610
|
+
],
|
|
4611
|
+
"_auto_imported": false,
|
|
4612
|
+
"_intake_method": "manual-verified-curation"
|
|
4613
|
+
},
|
|
4614
|
+
"CVE-2022-36551": {
|
|
4615
|
+
"name": "Label Studio Data Import Server-Side Request Forgery",
|
|
4616
|
+
"lesson_date": "2026-05-25",
|
|
4617
|
+
"attack_vector": {
|
|
4618
|
+
"description": "Label Studio's Data Import module fetches a user-supplied URL with no destination restriction; with self-registration on by default, any remote attacker supplies internal or file:// URLs and the server reads arbitrary files / reaches internal services.",
|
|
4619
|
+
"privileges_required": "low (an account; self-registration is on by default in the data-import case)",
|
|
4620
|
+
"complexity": "low",
|
|
4621
|
+
"ai_factor": "The abused surface is Label Studio, a data-labeling / annotation platform central to ML data pipelines. The lesson: an ML data platform's server-side fetches (import URLs, storage endpoints) are an egress that must validate and allowlist destinations, or they become an SSRF pivot into internal networks and cloud metadata."
|
|
4622
|
+
},
|
|
4623
|
+
"framework_coverage": {
|
|
4624
|
+
"NIST-800-53-SC-7": {
|
|
4625
|
+
"covered": true,
|
|
4626
|
+
"adequate": false,
|
|
4627
|
+
"gap": "Boundary protection does not treat the ML data platform's server-side fetch as an egress that can reach internal services."
|
|
4628
|
+
},
|
|
4629
|
+
"NIST-800-53-SI-10": {
|
|
4630
|
+
"covered": true,
|
|
4631
|
+
"adequate": false,
|
|
4632
|
+
"gap": "No input validation is applied to the user-supplied URL/endpoint before the server fetches it."
|
|
4633
|
+
},
|
|
4634
|
+
"ALL-AI-PIPELINE-INTEGRITY": {
|
|
4635
|
+
"covered": false,
|
|
4636
|
+
"adequate": false,
|
|
4637
|
+
"gap": "No framework treats an ML data-pipeline platform's import/storage URL fetch as an egress that must validate and allowlist destinations."
|
|
4638
|
+
}
|
|
4639
|
+
},
|
|
4640
|
+
"compliance_exposure_score": {
|
|
4641
|
+
"percent_audit_passing_orgs_still_exposed": 78,
|
|
4642
|
+
"basis": "ML data-labeling platforms are deployed inside trusted networks and import from arbitrary URLs/storage endpoints by design; their server-side fetches are not destination-validated.",
|
|
4643
|
+
"theater_pattern": "ai_data_pipeline_ssrf_trust"
|
|
4644
|
+
},
|
|
4645
|
+
"ai_discovered_zeroday": false,
|
|
4646
|
+
"ai_discovery_source": "human_researcher",
|
|
4647
|
+
"ai_assist_factor": "none",
|
|
4648
|
+
"new_control_requirements": [
|
|
4649
|
+
{
|
|
4650
|
+
"id": "NEW-CTRL-105",
|
|
4651
|
+
"name": "AI-DATA-PIPELINE-IMPORT-SSRF-PROTECTION",
|
|
4652
|
+
"description": "An AI data-pipeline platform that fetches from caller-supplied URLs or endpoints (data import, cloud-storage endpoint configuration, webhook/annotation sources) must validate and allowlist the destination before issuing the request: reject private, link-local, and cloud-metadata addresses (169.254.169.254), reject file:// and non-HTTP schemes, and resolve+pin the host to prevent DNS-rebinding. Restrict who can configure server-side fetches and disable self-registration if not required. The distinguishing test: configure the import/storage URL to an internal or cloud-metadata address on a staging instance and confirm the server refuses the fetch - a platform that issues the request and returns the response is exploitable for SSRF / internal pivot, regardless of authentication posture.",
|
|
4653
|
+
"evidence": "https://github.com/advisories/GHSA-pc6f-259w-w3j6",
|
|
4654
|
+
"gap_closes": [
|
|
4655
|
+
"NIST-800-53-SC-7",
|
|
4656
|
+
"NIST-800-53-SI-10",
|
|
4657
|
+
"ALL-AI-PIPELINE-INTEGRITY"
|
|
4658
|
+
]
|
|
4659
|
+
}
|
|
4660
|
+
],
|
|
4661
|
+
"_auto_imported": false,
|
|
4662
|
+
"_intake_method": "manual-verified-curation"
|
|
4663
|
+
},
|
|
4564
4664
|
"CVE-2024-37060": {
|
|
4565
4665
|
"name": "MLflow Recipe Deserialization Remote Code Execution",
|
|
4566
4666
|
"lesson_date": "2026-05-25",
|