Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,24 +1,53 @@
{
"schema_version": "1.4.0",
"id": "GHSA-97xx-95pm-5qv6",
"modified": "2024-07-30T03:30:50Z",
"modified": "2024-10-29T18:30:34Z",
"published": "2024-03-27T09:30:41Z",
"aliases": [
"CVE-2024-2004"
],
"summary": "curl/libcurl Protocol Restriction Bypass Due to Incorrect Protocol Selection Handling",
"details": "When a protocol selection parameter option disables all protocols without adding any then the default set of protocols would remain in the allowed set due to an error in the logic for removing protocols. The below command would perform a request to curl.se with a plaintext protocol which has been explicitly disabled. curl --proto -all,-http http://curl.se The flaw is only present if the set of selected protocols disables the entire set of available protocols, in itself a command with no practical use and therefore unlikely to be encountered in real situations. The curl security team has thus assessed this to be low severity bug.",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N"
}
],
"affected": [],
"affected": [
{
"package": {
"ecosystem": "Go",
"name": "curl"
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "7.85.0"
},
{
"fixed": "8.7.0"
}
]
}
]
}
],
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2024-2004"
},
{
"type": "WEB",
"url": "https://github.com/curl/curl/commit/17d302e56221"
},
{
"type": "WEB",
"url": "https://github.com/curl/curl/commit/e6f8445edef8e7996d1"
},
{
"type": "WEB",
"url": "https://hackerone.com/reports/2384833"
Expand All @@ -31,6 +60,10 @@
"type": "WEB",
"url": "https://curl.se/docs/CVE-2024-2004.json"
},
{
"type": "PACKAGE",
"url": "https://github.com/curl/curl"
},
{
"type": "WEB",
"url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2D44YLAUFJU6BZ4XFG2FYV7SBKXB5IZ6"
Expand Down Expand Up @@ -74,6 +107,7 @@
],
"database_specific": {
"cwe_ids": [
"CWE-115",
"CWE-436"
],
"severity": "LOW",
Expand Down
Loading