Skip to content

Commit bad962b

Browse files
1 parent 4e91f99 commit bad962b

2 files changed

Lines changed: 133 additions & 7 deletions

File tree

advisories/unreviewed/2025/11/GHSA-56w8-48fp-6mgv/GHSA-56w8-48fp-6mgv.json renamed to advisories/github-reviewed/2025/11/GHSA-56w8-48fp-6mgv/GHSA-56w8-48fp-6mgv.json

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,48 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-56w8-48fp-6mgv",
4-
"modified": "2025-11-14T00:30:27Z",
4+
"modified": "2026-06-19T14:34:03Z",
55
"published": "2025-11-14T00:30:27Z",
66
"aliases": [
77
"CVE-2025-47913"
88
],
9+
"summary": "golang.org/x/crypto/ssh/agent has a potential denial of service",
910
"details": "SSH clients receiving SSH_AGENT_SUCCESS when expecting a typed response will panic and cause early termination of the client process.",
1011
"severity": [
1112
{
1213
"type": "CVSS_V3",
1314
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H"
1415
}
1516
],
16-
"affected": [],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "Go",
21+
"name": "golang.org/x/crypto/ssh/agent"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "0"
29+
},
30+
{
31+
"fixed": "0.43.0"
32+
}
33+
]
34+
}
35+
]
36+
}
37+
],
1738
"references": [
1839
{
1940
"type": "ADVISORY",
2041
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-47913"
2142
},
2243
{
23-
"type": "ADVISORY",
24-
"url": "https://github.com/advisories/GHSA-hcg3-q754-cr77"
44+
"type": "PACKAGE",
45+
"url": "https://github.com/golang/crypto"
2546
},
2647
{
2748
"type": "WEB",
@@ -37,10 +58,12 @@
3758
}
3859
],
3960
"database_specific": {
40-
"cwe_ids": [],
61+
"cwe_ids": [
62+
"CWE-617"
63+
],
4164
"severity": "HIGH",
42-
"github_reviewed": false,
43-
"github_reviewed_at": null,
65+
"github_reviewed": true,
66+
"github_reviewed_at": "2026-06-19T14:34:03Z",
4467
"nvd_published_at": "2025-11-13T22:15:51Z"
4568
}
4669
}
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-g8m3-5g58-fq7m",
4+
"modified": "2026-06-19T14:34:46Z",
5+
"published": "2026-06-19T14:34:46Z",
6+
"aliases": [
7+
"CVE-2026-11525"
8+
],
9+
"summary": "undici vulnerable to Set-Cookie SameSite attribute downgrade via permissive substring matching",
10+
"details": "## Impact\n\nWhen undici parses a `Set-Cookie` header, it accepts any `SameSite` attribute value that contains `Strict`, `Lax`, or `None` as a substring, rather than the case-insensitive exact match specified by RFC 6265. Non-spec values are silently mapped to one of the three standard tokens:\n\n- `SameSite=NoneOfYourBusiness` is parsed as `None`, the most permissive setting.\n- `SameSite=StrictLax` is parsed as `Lax`, a downgrade from `Strict`.\n\nAffected applications are those that consume `Set-Cookie` headers from server responses (for example via undici's `fetch` or proxy code paths) and then forward or rely on the parsed `sameSite` attribute. A malicious or non-compliant server can coerce the consumer's view of a cookie's SameSite policy to a weaker value, silently degrading the SameSite enforcement the cookie is supposed to provide.\n\nThis was introduced in undici 5.15.0 when the cookies feature was added.\n\n## Patches\n\nUpgrade to undici v6.27.0, v7.28.0 or v8.5.0.\n\n## Workarounds\n\nAfter parsing a `Set-Cookie` header, validate that the resulting `sameSite` attribute is one of `'Strict'`, `'Lax'`, or `'None'` (exact, case-insensitive) before forwarding or relying on it.",
11+
"severity": [
12+
{
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "npm",
21+
"name": "undici"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "0"
29+
},
30+
{
31+
"fixed": "6.27.0"
32+
}
33+
]
34+
}
35+
]
36+
},
37+
{
38+
"package": {
39+
"ecosystem": "npm",
40+
"name": "undici"
41+
},
42+
"ranges": [
43+
{
44+
"type": "ECOSYSTEM",
45+
"events": [
46+
{
47+
"introduced": "7.0.0"
48+
},
49+
{
50+
"fixed": "7.28.0"
51+
}
52+
]
53+
}
54+
]
55+
},
56+
{
57+
"package": {
58+
"ecosystem": "npm",
59+
"name": "undici"
60+
},
61+
"ranges": [
62+
{
63+
"type": "ECOSYSTEM",
64+
"events": [
65+
{
66+
"introduced": "8.0.0"
67+
},
68+
{
69+
"fixed": "8.5.0"
70+
}
71+
]
72+
}
73+
]
74+
}
75+
],
76+
"references": [
77+
{
78+
"type": "WEB",
79+
"url": "https://github.com/nodejs/undici/security/advisories/GHSA-g8m3-5g58-fq7m"
80+
},
81+
{
82+
"type": "ADVISORY",
83+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-11525"
84+
},
85+
{
86+
"type": "WEB",
87+
"url": "https://cna.openjsf.org/security-advisories.html"
88+
},
89+
{
90+
"type": "PACKAGE",
91+
"url": "https://github.com/nodejs/undici"
92+
}
93+
],
94+
"database_specific": {
95+
"cwe_ids": [
96+
"CWE-183"
97+
],
98+
"severity": "LOW",
99+
"github_reviewed": true,
100+
"github_reviewed_at": "2026-06-19T14:34:46Z",
101+
"nvd_published_at": "2026-06-17T18:17:35Z"
102+
}
103+
}

0 commit comments

Comments
 (0)