CVE-2022-41725
Last modified
CVE-2022-41725 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. A denial of service is possible from excessive resource consumption in net/http and mime/multipart. Multipart form parsing with mime/multipart.Reader.ReadForm can consume largely unlimited amounts of memory and disk files. EPSS estimates a 1.23% chance of exploitation in the next 30 days.
Description
A denial of service is possible from excessive resource consumption in net/http and mime/multipart. Multipart form parsing with mime/multipart.Reader.ReadForm can consume largely unlimited amounts of memory and disk files. This also affects form parsing in the net/http package with the Request methods FormFile, FormValue, ParseMultipartForm, and PostFormValue. ReadForm takes a maxMemory parameter, and is documented as storing "up to maxMemory bytes +10MB (reserved for non-file parts) in memory". File parts which cannot be stored in memory are stored on disk in temporary files. The unconfigurable 10MB reserved for non-file parts is excessively large and can potentially open a denial of service vector on its own. However, ReadForm did not properly account for all memory consumed by a parsed form, such as map entry overhead, part names, and MIME headers, permitting a maliciously crafted form to consume well over 10MB. In addition, ReadForm contained no limit on the number of disk files created, permitting a relatively small request body to create a large number of disk temporary files. With fix, ReadForm now properly accounts for various forms of memory overhead, and should now stay within its documented limit of 10MB + maxMemory bytes of memory consumption. Users should still be aware that this limit is high and may still be hazardous. In addition, ReadForm now creates at most one on-disk temporary file, combining multiple form parts into a single temporary file. The mime/multipart.File interface type's documentation states, "If stored on disk, the File's underlying concrete type will be an *os.File.". This is no longer the case when a form contains more than one file part, due to this coalescing of parts into a single file. The previous behavior of using distinct files for each form part may be reenabled with the environment variable GODEBUG=multipartfiles=distinct. Users should be aware that multipart.ReadForm and the http.Request methods that call it do not limit the amount of disk consumed by temporary files. Callers can limit the size of form data with http.MaxBytesReader.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions |
|---|---|---|
| Golang | Go | < 1.19.6 |
| Golang | Go | 1.20.0 |
References
- https://go.dev/cl/468124Patch, Release Notes
- https://go.dev/issue/58006Issue Tracking, Patch, Vendor Advisory
- https://groups.google.com/g/golang-announce/c/V0aBFqaFs_EMailing List, Vendor Advisory
- https://pkg.go.dev/vuln/GO-2023-1569Vendor Advisory
- https://go.dev/cl/468124Patch, Release Notes
- https://go.dev/issue/58006Issue Tracking, Patch, Vendor Advisory
- https://groups.google.com/g/golang-announce/c/V0aBFqaFs_EMailing List, Vendor Advisory
- https://pkg.go.dev/vuln/GO-2023-1569Vendor Advisory
Timeline
- Published
- Last Modified
- Status
- Modified
Frequently Asked Questions
What is CVE-2022-41725?
How severe is CVE-2022-41725?
How do I fix CVE-2022-41725?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2022
- CVE-2022-4172An integer overflow and buffer overflow issues were found in…6.5
- CVE-2022-41720On Windows, restricted files can be accessed via os.DirFS an…7.5
- CVE-2022-41721A request smuggling attack is possible when using MaxBytesHa…7.5
- CVE-2022-41722A path traversal vulnerability exists in filepath.Clean on W…7.5
- CVE-2022-41723A maliciously crafted HTTP/2 stream could cause excessive CP…7.5
- CVE-2022-41724Large handshake records may cause panics in crypto/tls. Both…7.5
- CVE-2022-41726Rejected reason: reserved but not needed
- CVE-2022-41727An attacker can craft a malformed TIFF image which will cons…5.5
- CVE-2022-41728Rejected reason: reserved but not needed
- CVE-2022-41729Rejected reason: reserved but not needed
- CVE-2022-4173A vulnerability within the malware removal functionality of …8.8
- CVE-2022-41730Rejected reason: reserved but not needed
Are you affected by CVE-2022-41725?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
