{"id":33249,"date":"2025-12-30T04:49:57","date_gmt":"2025-12-30T04:49:57","guid":{"rendered":"http:\/\/localhost\/?p=33249"},"modified":"2025-12-30T04:49:57","modified_gmt":"2025-12-30T04:49:57","slug":"curl-http2-and-http3-header-injection-in-curl","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=33249","title":{"rendered":"curl: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-30T10:25:50&#8243;,&#8221;description&#8221;:&#8221;================================================================================\\nVULNERABILITY REPORT: HTTP\/2 and HTTP\/3 Header Injection in curl\\n================================================================================\\n\\nVULNERABILITY TYPE: Response Header Injection \/ HTTP Response Splitting\\nSEVERITY: HIGH (CVSS 7.5+)\\nAFFECTED VERSIONS: curl latest (as of 2025-12-29)\\nSTATUS: 0-DAY (UNPATCHED in http2.c, curl_ngtcp2.c, curl_osslq.c)\\n\\n================================================================================\\nEXECUTIVE SUMMARY\\n================================================================================\\n\\nA critical header injection vulnerability exists in curl&#8217;s HTTP\/2 and HTTP\/3\\nprotocol handlers. When receiving HTTP\/2 or HTTP\/3 headers from a malicious\\nserver, curl directly incorporates header names and values into HTTP\/1-style\\nheader strings WITHOUT validating for CR (\\\\r), LF (\\\\n), or null (\\\\0) bytes.\\n\\nThis vulnerability was PARTIALLY FIXED on 2025-12-27 in commit 6842d4e for\\nthe QUICHE HTTP\/3 backend ONLY. Three other backends remain vulnerable:\\n\\n  1. lib\/http2.c              &#8211; HTTP\/2 via nghttp2 (VULNERABLE)\\n  2. lib\/vquic\/curl_ngtcp2.c  &#8211; HTTP\/3 via ngtcp2  (VULNERABLE)\\n  3. lib\/vquic\/curl_osslq.c   &#8211; HTTP\/3 via OpenSSL QUIC (VULNERABLE)\\n\\n================================================================================\\nTECHNICAL DETAILS\\n================================================================================\\n\\nVULNERABLE CODE PATTERN:\\n\\n1. HTTP\/2 (lib\/http2.c, lines 1705-1717):\\n\\n   \/* convert to an HTTP1-style header *\/\\n   curlx_dyn_reset(\\u0026ctx-\\u003escratch);\\n   result = curlx_dyn_addn(\\u0026ctx-\\u003escratch, (const char *)name, namelen);  \/\/ UNVALIDATED\\n   if(!result)\\n     result = curlx_dyn_addn(\\u0026ctx-\\u003escratch, STRCONST(\\&#8221;: \\&#8221;));\\n   if(!result)\\n     result = curlx_dyn_addn(\\u0026ctx-\\u003escratch, (const char *)value, valuelen);  \/\/ UNVALIDATED\\n   if(!result)\\n     result = curlx_dyn_addn(\\u0026ctx-\\u003escratch, STRCONST(\\&#8221;\\\\r\\\\n\\&#8221;));\\n\\n2. HTTP\/3 via ngtcp2 (lib\/vquic\/curl_ngtcp2.c, lines 1220-1229):\\n\\n   curlx_dyn_reset(\\u0026ctx-\\u003escratch);\\n   result = curlx_dyn_addn(\\u0026ctx-\\u003escratch,\\n                           (const char *)h3name.base, h3name.len);  \/\/ UNVALIDATED\\n   if(!result)\\n     result = curlx_dyn_addn(\\u0026ctx-\\u003escratch, STRCONST(\\&#8221;: \\&#8221;));\\n   if(!result)\\n     result = curlx_dyn_addn(\\u0026ctx-\\u003escratch,\\n                             (const char *)h3val.base, h3val.len);  \/\/ UNVALIDATED\\n   if(!result)\\n     result = curlx_dyn_addn(\\u0026ctx-\\u003escratch, STRCONST(\\&#8221;\\\\r\\\\n\\&#8221;));\\n\\n3. HTTP\/3 via OpenSSL QUIC (lib\/vquic\/curl_osslq.c, lines 873-887):\\n\\n   result = write_resp_raw(cf, data, h3name.base, h3name.len, FALSE);  \/\/ UNVALIDATED\\n   \/\/ &#8230;\\n   result = write_resp_raw(cf, data, h3val.base, h3val.len, FALSE);    \/\/ UNVALIDATED\\n\\nPATCHED CODE (curl_quiche.c, commit 6842d4e):\\n\\n   static bool is_valid_h3_header(const uint8_t *hdr, size_t hlen)\\n   {\\n     while(hlen&#8211;) {\\n       switch(*hdr++) {\\n       case &#8216;\\\\n&#8217;:\\n       case &#8216;\\\\r&#8217;:\\n       case &#8216;\\\\0&#8217;:\\n         return FALSE;\\n       }\\n     }\\n     return TRUE;\\n   }\\n\\n   \/\/ Now validates before using:\\n   if(is_valid_h3_header(value, value_len) \\u0026\\u0026\\n      is_valid_h3_header(name, name_len)) {\\n      \/\/ &#8230; process header\\n   }\\n\\n================================================================================\\nATTACK SCENARIO\\n================================================================================\\n\\n1. CLIENT connects to MALICIOUS SERVER using HTTP\/2 or HTTP\/3\\n\\n2. MALICIOUS SERVER sends an HTTP\/2 or HTTP\/3 response with crafted headers:\\n   \\n   Header Name: \\&#8221;X-Injected\\\\r\\\\nSet-Cookie: session=evil\\&#8221;\\n   Header Value: \\&#8221;foo\\&#8221;\\n   \\n   OR\\n   \\n   Header Name: \\&#8221;X-Normal\\&#8221;\\n   Header Value: \\&#8221;foo\\\\r\\\\nX-Injected-Header: malicious-value\\&#8221;\\n\\n3. CURL converts to HTTP\/1-style headers WITHOUT validation:\\n\\n   Result: \\&#8221;X-Injected\\\\r\\\\nSet-Cookie: session=evil: foo\\\\r\\\\n\\&#8221;\\n\\n4. APPLICATION processing these headers may:\\n   &#8211; Accept injected cookies (cookie injection)\\n   &#8211; Process injected headers as legitimate\\n   &#8211; Experience cache poisoning if used as a proxy\/CDN\\n   &#8211; Have security headers bypassed\\n\\n================================================================================\\nEXPLOITATION CONDITIONS\\n================================================================================\\n\\nREQUIREMENTS:\\n- Victim must connect to attacker-controlled server using HTTP\/2 or HTTP\/3\\n- Application must process curl&#8217;s response headers\\n- Attacker controls the server-side HTTP\/2 or HTTP\/3 implementation\\n\\nATTACK VECTORS:\\n1. Man-in-the-Middle with modified HTTP\/2\/3 responses\\n2. Compromised server sending malicious headers\\n3. Malicious redirect to attacker&#8217;s HTTP\/2\/3 server\\n\\n================================================================================\\nIMPACT ASSESSMENT\\n================================================================================\\n\\n- Cookie Injection: Attacker can set arbitrary cookies\\n- Cache Poisoning: Stored responses may contain injected headers\\n- Security Header Bypass: CSP, HSTS, etc. can be manipulated\\n- Response Splitting: Classic HTTP response splitting attacks\\n- Information Disclosure: Via crafted headers in error messages\\n\\nNote: HTTP\/2 has ADDITIONAL risk factor:\\n      &#8211; Line 460: nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation(o, 1);\\n      &#8211; This DISABLES RFC 9113 header validation in nghttp2!\\n\\n================================================================================\\nRECOMMENDED FIX\\n================================================================================\\n\\nApply the same validation added to curl_quiche.c (commit 6842d4e) to:\\n\\n1. lib\/http2.c &#8211; Add is_valid_header() check before line 1705\\n2. lib\/vquic\/curl_ngtcp2.c &#8211; Add is_valid_h3_header() check before line 1220\\n3. lib\/vquic\/curl_osslq.c &#8211; Add is_valid_h3_header() check before line 873\\n\\nSUGGESTED PATCH:\\n\\n\/\/ Add to each file:\\nstatic bool is_valid_header(const uint8_t *hdr, size_t hlen)\\n{\\n  while(hlen&#8211;) {\\n    switch(*hdr++) {\\n    case &#8216;\\\\n&#8217;:\\n    case &#8216;\\\\r&#8217;:\\n    case &#8216;\\\\0&#8217;:\\n      return FALSE;\\n    }\\n  }\\n  return TRUE;\\n}\\n\\n\/\/ Then validate before processing:\\nif(!is_valid_header(name, namelen) || !is_valid_header(value, valuelen)) {\\n  \/\/ Return error or skip header\\n  return NGHTTP2_ERR_CALLBACK_FAILURE;  \/\/ For HTTP\/2\\n}\\n\\n================================================================================\\nCVE ASSIGNMENT\\n================================================================================\\n\\nThis vulnerability should be assigned a CVE identifier.\\n\\nRelated: Commit 6842d4e (partial fix for QUICHE only) mentions issue #20101\\n\\n================================================================================\\nTIMELINE\\n================================================================================\\n\\n2025-12-27: Partial fix committed for QUICHE backend (commit 6842d4e)\\n2025-12-29: Discovery of same vulnerability in HTTP\/2 and other HTTP\/3 backends\\n2025-12-29: This report generated\\n\\n================================================================================\\nRESEARCHER\\n================================================================================\\n\\nIdentified via static code analysis of curl source repository.\\n\\n## Impact\\n\\n## Summary:&#8221;,&#8221;published&#8221;:&#8221;2025-12-29T23:21:14&#8243;,&#8221;modified&#8221;:&#8221;2025-12-30T09:56:51&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: HTTP\/2 and HTTP\/3 Header Injection in curl&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3481849&#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\/3481849&#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-30T10:25:50&#8243;,&#8221;description&#8221;:&#8221;================================================================================\\nVULNERABILITY REPORT: HTTP\/2 and HTTP\/3 Header Injection in curl\\n================================================================================\\n\\nVULNERABILITY TYPE: Response Header Injection \/ HTTP Response Splitting\\nSEVERITY: HIGH (CVSS 7.5+)\\nAFFECTED VERSIONS: curl latest (as of&#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-33249","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: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849 - 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=33249\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-30T10:25:50&#8243;,&#8221;description&#8221;:&#8221;================================================================================nVULNERABILITY REPORT: HTTP\/2 and HTTP\/3 Header Injection in curln================================================================================nnVULNERABILITY TYPE: Response Header Injection \/ HTTP Response SplittingnSEVERITY: HIGH (CVSS 7.5+)nAFFECTED VERSIONS: curl latest (as of...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=33249\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-30T04:49:57+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: HTTP\\\/2 and HTTP\\\/3 Header Injection in curl_H1:3481849\",\"datePublished\":\"2025-12-30T04:49:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249\"},\"wordCount\":1034,\"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=33249#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249\",\"name\":\"curl: HTTP\\\/2 and HTTP\\\/3 Header Injection in curl_H1:3481849 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-30T04:49:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=33249\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=33249#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: HTTP\\\/2 and HTTP\\\/3 Header Injection in curl_H1:3481849\"}]},{\"@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: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849 - 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=33249","og_locale":"en_US","og_type":"article","og_title":"curl: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-30T10:25:50&#8243;,&#8221;description&#8221;:&#8221;================================================================================nVULNERABILITY REPORT: HTTP\/2 and HTTP\/3 Header Injection in curln================================================================================nnVULNERABILITY TYPE: Response Header Injection \/ HTTP Response SplittingnSEVERITY: HIGH (CVSS 7.5+)nAFFECTED VERSIONS: curl latest (as of...","og_url":"https:\/\/zero.redgem.net\/?p=33249","og_site_name":"zero redgem","article_published_time":"2025-12-30T04:49:57+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=33249#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=33249"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849","datePublished":"2025-12-30T04:49:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=33249"},"wordCount":1034,"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=33249#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=33249","url":"https:\/\/zero.redgem.net\/?p=33249","name":"curl: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-30T04:49:57+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=33249#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=33249"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=33249#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: HTTP\/2 and HTTP\/3 Header Injection in curl_H1:3481849"}]},{"@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\/33249","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=33249"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/33249\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=33249"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=33249"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=33249"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}