CVE-2022-32149: golang.org/x/text/language Denial of service via crafted Accept-Language header
(updated )
The BCP 47 tag parser has quadratic time complexity due to inherent aspects of its design. Since the parser is, by design, exposed to untrusted user input, this can be leveraged to force a program to consume significant time parsing Accept-Language headers. The parser cannot be easily rewritten to fix this behavior for various reasons. Instead the solution implemented in this CL is to limit the total complexity of tags passed into ParseAcceptLanguage by limiting the number of dashes in the string to 1000. This should be more than enough for the majority of real world use cases, where the number of tags being sent is likely to be in the single digits.
References
- github.com/advisories/GHSA-69ch-w2m2-3vjp
- github.com/golang/go/issues/56152
- github.com/golang/text
- github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c
- go.dev/cl/442235
- go.dev/issue/56152
- groups.google.com/g/golang-announce/c/-hjNw559_tE/m/KlGTfid5CAAJ
- nvd.nist.gov/vuln/detail/CVE-2022-32149
- pkg.go.dev/vuln/GO-2022-1059
- security.netapp.com/advisory/ntap-20230203-0006
Code Behaviors & Features
Detect and mitigate CVE-2022-32149 with GitLab Dependency Scanning
Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →