Skip to content

Commit 99277ea

Browse files
neildgopherbot
authored andcommitted
data/reports: add GO-2025-4015
- data/reports/GO-2025-4015.yaml Fixes #4015 Change-Id: I958c76dbb0338e1682bb3f517c2b699fe27ca839 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/715924 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Damien Neil <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]>
1 parent 0bfd4cc commit 99277ea

File tree

3 files changed

+183
-0
lines changed

3 files changed

+183
-0
lines changed

data/cve/v5/GO-2025-4015.json

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"dataType": "CVE_RECORD",
3+
"dataVersion": "5.0",
4+
"cveMetadata": {
5+
"cveId": "CVE-2025-61724"
6+
},
7+
"containers": {
8+
"cna": {
9+
"providerMetadata": {
10+
"orgId": "1bb62c36-49e3-4200-9d77-64a1400537cc"
11+
},
12+
"title": "Excessive CPU consumption in Reader.ReadResponse in net/textproto",
13+
"descriptions": [
14+
{
15+
"lang": "en",
16+
"value": "The Reader.ReadResponse function constructs a response string through repeated string concatenation of lines. When the number of lines in a response is large, this can cause excessive CPU consumption."
17+
}
18+
],
19+
"affected": [
20+
{
21+
"vendor": "Go standard library",
22+
"product": "net/textproto",
23+
"collectionURL": "https://pkg.go.dev",
24+
"packageName": "net/textproto",
25+
"versions": [
26+
{
27+
"version": "0",
28+
"lessThan": "1.24.8",
29+
"status": "affected",
30+
"versionType": "semver"
31+
},
32+
{
33+
"version": "1.25.0",
34+
"lessThan": "1.25.2",
35+
"status": "affected",
36+
"versionType": "semver"
37+
}
38+
],
39+
"programRoutines": [
40+
{
41+
"name": "Reader.ReadResponse"
42+
}
43+
],
44+
"defaultStatus": "unaffected"
45+
}
46+
],
47+
"problemTypes": [
48+
{
49+
"descriptions": [
50+
{
51+
"lang": "en",
52+
"description": "CWE-407: Inefficient Algorithmic Complexity"
53+
}
54+
]
55+
}
56+
],
57+
"references": [
58+
{
59+
"url": "https://go.dev/cl/709859"
60+
},
61+
{
62+
"url": "https://go.dev/issue/75716"
63+
},
64+
{
65+
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
66+
},
67+
{
68+
"url": "https://pkg.go.dev/vuln/GO-2025-4015"
69+
}
70+
],
71+
"credits": [
72+
{
73+
"lang": "en",
74+
"value": "Jakub Ciolek"
75+
}
76+
]
77+
}
78+
}
79+
}

data/osv/GO-2025-4015.json

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"schema_version": "1.3.1",
3+
"id": "GO-2025-4015",
4+
"modified": "0001-01-01T00:00:00Z",
5+
"published": "0001-01-01T00:00:00Z",
6+
"aliases": [
7+
"CVE-2025-61724",
8+
"CVE-2025-61724"
9+
],
10+
"summary": "Excessive CPU consumption in Reader.ReadResponse in net/textproto",
11+
"details": "The Reader.ReadResponse function constructs a response string through repeated string concatenation of lines. When the number of lines in a response is large, this can cause excessive CPU consumption.",
12+
"affected": [
13+
{
14+
"package": {
15+
"name": "stdlib",
16+
"ecosystem": "Go"
17+
},
18+
"ranges": [
19+
{
20+
"type": "SEMVER",
21+
"events": [
22+
{
23+
"introduced": "0"
24+
},
25+
{
26+
"fixed": "1.24.8"
27+
},
28+
{
29+
"introduced": "1.25.0"
30+
},
31+
{
32+
"fixed": "1.25.2"
33+
}
34+
]
35+
}
36+
],
37+
"ecosystem_specific": {
38+
"imports": [
39+
{
40+
"path": "net/textproto",
41+
"symbols": [
42+
"Reader.ReadResponse"
43+
]
44+
}
45+
]
46+
}
47+
}
48+
],
49+
"references": [
50+
{
51+
"type": "FIX",
52+
"url": "https://go.dev/cl/709859"
53+
},
54+
{
55+
"type": "REPORT",
56+
"url": "https://go.dev/issue/75716"
57+
},
58+
{
59+
"type": "WEB",
60+
"url": "https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI"
61+
}
62+
],
63+
"credits": [
64+
{
65+
"name": "Jakub Ciolek"
66+
}
67+
],
68+
"database_specific": {
69+
"url": "https://pkg.go.dev/vuln/GO-2025-4015",
70+
"review_status": "REVIEWED"
71+
}
72+
}

data/reports/GO-2025-4015.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
id: GO-2025-4015
2+
modules:
3+
- module: std
4+
versions:
5+
- fixed: 1.24.8
6+
- introduced: 1.25.0
7+
- fixed: 1.25.2
8+
vulnerable_at: 1.25.1
9+
packages:
10+
- package: net/textproto
11+
symbols:
12+
- Reader.ReadResponse
13+
summary: Excessive CPU consumption in Reader.ReadResponse in net/textproto
14+
description: |-
15+
The Reader.ReadResponse function constructs a response string through repeated
16+
string concatenation of lines. When the number of lines in a response is large,
17+
this can cause excessive CPU consumption.
18+
cves:
19+
- CVE-2025-61724
20+
credits:
21+
- Jakub Ciolek
22+
references:
23+
- fix: https://go.dev/cl/709859
24+
- report: https://go.dev/issue/75716
25+
- web: https://groups.google.com/g/golang-announce/c/4Emdl2iQ_bI
26+
cve_metadata:
27+
id: CVE-2025-61724
28+
cwe: 'CWE-407: Inefficient Algorithmic Complexity'
29+
source:
30+
id: go-security-team
31+
created: 2025-10-28T18:41:46.34755-07:00
32+
review_status: REVIEWED

0 commit comments

Comments
 (0)