{"id":31541,"date":"2025-12-17T08:48:14","date_gmt":"2025-12-17T08:48:14","guid":{"rendered":"http:\/\/localhost\/?p=31541"},"modified":"2025-12-17T08:48:14","modified_gmt":"2025-12-17T08:48:14","slug":"curl-certificate-pinning-bypass-with-wolfssl-backend-over-http3","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=31541","title":{"rendered":"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-17T13:49:28&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nA security feature bypass exists in `libcurl` when built with the **wolfSSL** backend and **HTTP\/3** support. The Certificate Pinning feature (`&#8211;pinnedpubkey`) is silently ignored if the user also disables peer verification  `-k`  or `&#8211;insecure `) . This behavior is inconsistent with other backends (like OpenSSL) and exposes connections to Man-in-the-Middle attacks.\\n\\n\\n## Affected version\\nReproduced on `curl 8.8.0-DEV` .\\n\\n&#8220;`text\\ndocker run &#8211;rm smbd\/curl-http3-wolfssl:5.7.0 curl -V\\ncurl 8.8.0-DEV (x86_64-pc-linux-gnu) libcurl\/8.8.0-DEV wolfSSL\/5.7.0 zlib\/1.2.13 nghttp2\/1.52.0 ngtcp2\/1.5.0 nghttp3\/1.3.0\\nRelease-Date: [unreleased]\\nProtocols: dict file ftp ftps gopher gophers http https imap imaps ipfs ipns mqtt pop3 pop3s rtsp smtp smtps telnet tftp\\nFeatures: alt-svc AsynchDNS HSTS HTTP2 HTTP3 IPv6 Largefile libz SSL threadsafe UnixSockets\\n\\n&#8220;`\\n\\n## Steps To Reproduce:\\n\\nWe compare the behavior of a standard build (OpenSSL) versus the vulnerable build (wolfSSL) using a **bogus** pinned hash (`AAAA&#8230;`) against a valid server (`google.com`).\\n\\n  1.  **Control Test (Standard OpenSSL ):**\\n\\n      Run: `curl -k &#8211;pinnedpubkey \\&#8221;sha256\/\/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\\&#8221; https:\/\/www.google.com\/`\\n\\n      **Result:** `curl: (90) SSL: public key does not match pinned public key`\\n\\n\\n  2.  **Exploit Test (Vulnerable wolfSSL + HTTP\/3 build):**\\n\\n      Run the same command using the vulnerable environment (reproduced here via Docker `smbd\/curl-http3-wolfssl:5.7.0`) :\\n\\n      `docker run &#8211;rm smbd\/curl-http3-wolfssl:5.7.0   curl -v &#8211;http3 -k &#8211;pinnedpubkey \\&#8221;sha256\/\/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\\&#8221; https:\/\/www.google.com\/`\\n\\n\\n\\n\\n **Result:** ` docker run &#8211;rm smbd\/curl-http3-wolfssl:5.7.0   curl -v &#8211;http3 -k &#8211;pinnedpubkey \\&#8221;sha256\/\/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\\&#8221; https:\/\/www.google.com\/\\n  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current\\n                                 Dload  Upload   Total   Spent    Left  Speed\\n  0     0    0     0    0     0      0      0 &#8211;:&#8211;:&#8211; &#8211;:&#8211;:&#8211; &#8211;:&#8211;:&#8211;     0* Host www.google.com:443 was resolved.\\n* IPv6: 2800:3f0:4001:83c::2004\\n* IPv4: 172.217.30.68\\n*   Trying 172.217.30.68:443&#8230;\\n*   Trying [2800:3f0:4001:83c::2004]:443&#8230;\\n* Immediate connect fail for 2800:3f0:4001:83c::2004: Network is unreachable\\n*   Trying 172.217.30.68:443&#8230;\\n* Connected to www.google.com (172.217.30.68) port 443\\n* successfully set certificate verify locations:\\n*  CAfile: \/etc\/ssl\/certs\/ca-certificates.crt\\n*  CApath: \/etc\/ssl\/certs\\n* ALPN: curl offers h2,http\/1.1\\n  0     0    0     0    0     0      0      0 &#8211;:&#8211;:&#8211; &#8211;:&#8211;:&#8211; &#8211;:&#8211;:&#8211;     0* Connected to www.google.com (172.217.30.68) port 443\\n* using HTTP\/3\\n* [HTTP\/3] [0] OPENED stream for https:\/\/www.google.com\/\\n* [HTTP\/3] [0] [:method: GET]\\n* [HTTP\/3] [0] [:scheme: https]\\n* [HTTP\/3] [0] [:authority: www.google.com]\\n* [HTTP\/3] [0] [:path: \/]\\n* [HTTP\/3] [0] [user-agent: curl\/8.8.0-DEV]\\n* [HTTP\/3] [0] [accept: *\/*]\\n\\u003e GET \/ HTTP\/3\\n\\u003e Host: www.google.com\\n\\u003e User-Agent: curl\/8.8.0-DEV\\n\\u003e Accept: *\/*\\n\\u003e \\n* Request completely sent off\\n\\u003c HTTP\/3 200 \\n\\u003c date: Tue, 16 Dec 2025 16:44:58 GMT\\n\\u003c expires: -1\\n\\u003c cache-control: private, max-age=0\\n\\u003c content-type: text\/html; charset=ISO-8859-1\\n\\u003c content-security-policy-report-only: object-src &#8216;none&#8217;;base-uri &#8216;self&#8217;;script-src &#8216;nonce-zhAjavKpmSo8XJCkxA_NgQ&#8217; &#8216;strict-dynamic&#8217; &#8216;report-sample&#8217; &#8216;unsafe-eval&#8217; &#8216;unsafe-inline&#8217; https: http:;report-uri https:\/\/csp.withgoogle.com\/csp\/gws\/other-hp\\n\\u003c accept-ch: Sec-CH-Prefers-Color-Scheme\\n\\u003c p3p: CP=\\&#8221;This is not a P3P policy! See g.co\/p3phelp for more info.\\&#8221;\\n\\u003c server: gws\\n\\u003c x-xss-protection: 0\\n\\u003c x-frame-options: SAMEORIGIN\\n\\u003c set-cookie: __Secure-STRP=AD6DoguQyJNF6fdQjWRffsBqL5E7sCEdu2diQU92k64Obdab6qaZZ_YrOXrt5mjSi_mZUvgnouZxGUgkqQQ0qUaPWIKNTV8dktGI; expires=Tue, 16-Dec-2025 16:49:58 GMT; path=\/; domain=.google.com; Secure; SameSite=strict\\n\\u003c set-cookie: AEC=AaJma5sy9-_cBlJAKCzRhnuHw8Hi2jSxiSB0qdTwn8F7JAvuHTabjD7SuO4; expires=Sun, 14-Jun-2026 16:44:58 GMT; path=\/; domain=.google.com; Secure; HttpOnly; SameSite=lax\\n\\u003c set-cookie: NID=527=UAu9nT29vQQ1b9IRZfHQWcggNUyZO7X6TTM2XOkZfaPi93mxevHPyD3CB1KhkeUivwLhDrFjkCOg1iVwpetsU5zpb7HuBvlYJxY0sFo_V2wH_u2IJ4IvB-pyvLSn4YsS-qeG5RWrGwQy1hEHoNLK-PByHY1YI_10N-Jred14vtoFNySz1nc0la5zEC8qWvqhVzf0davySmgyeGedns-JHN2ceE3i_Tdh; expires=Wed, 17-Jun-2026 16:44:58 GMT; path=\/; domain=.google.com; HttpOnly\\n\\u003c set-cookie: __Secure-BUCKET=CN8C; expires=Sun, 14-Jun-2026 16:44:58 GMT; path=\/; domain=.google.com; Secure; HttpOnly\\n\\u003c alt-svc: h3=\\&#8221;:443\\&#8221;; ma=2592000,h3-29=\\&#8221;:443\\&#8221;; ma=2592000\\n\\u003c accept-ranges: none\\n\\u003c vary: Accept-Encoding\\n\\u003c \\n{ [104 bytes data]\\n\\u003c!doctype html\\u003e\\u003chtml itemscope=\\&#8221;\\&#8221; itemtype=\\&#8221;http:\/\/schema.org\/WebPage\\&#8221; lang=\\&#8221;fr-CM\\&#8221;\\u003e\\u003chead\\u003e\\u003cmeta content=\\&#8221;text\/html; charset=UTF-8\\&#8221; http-equiv=\\&#8221;Content-Type\\&#8221;\\u003e\\u003cmeta content=\\&#8221;\/images\/branding\/googleg\/1x\/googleg_standard_color_128dp.png\\&#8221; itemprop=\\&#8221;image\\&#8221;\\u003e\\u003ctitle\\u003eGoogle\\u003c\/title\\u003e\\u003cscript nonce=\\&#8221;zhAjavKpmSo8XJCkxA_NgQ\\&#8221;\\u003e(function(){var _g={kEI:&#8217;ioxBaZb1NrTU5OUPqOCEUQ&#8217;,kEXPI:&#8217;0,203004,45,1101175,4,2,4,3030729,344796,270476,5262392,36811500,25228681,217550,30632,7033,2105,4600,6553,50098,14067,61059,28338,48236,28322,3,2749,7714,6975,7774,15974,2662,4719,27257,19845,9881,36458,20879,1018,4372,4532,1760,16179,2646,101,2,4,1,4434,12368,2305,5031,1472,2,13032,1382,4,1514,578,2777,195,572,2869,2374,2,4205,5,1789,17,8476,1430,4384,2,876,2229,5089,19,3007,14,782,20847,2407,12338,1031,1034,1197,3106,845,2047,1,1,7,437,1128,3,2842,9,27,8,3055,1012,1745,4,3510,3,11680,4,2170,73,241,296,5,1113,389,4,298,901,1448,5,4819,15,734,298,4309,2806,2138,1275,7,1786,1048,2,2434,690,741,988,1084,3780,4,93,2561,2,5375,4,343,7,606,67,1582,4,1882,6,2,2,2,680,812,745,3310,483,746,5,465,793,1,2,1033,22,323,3,1359,3,2140,3,2788,49,10,215,441 &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..`\\n\\n\\n**Root Cause Analysis:**\\n\\nThe issue is located in `lib\/vquic\/vquic-tls.c`. The logic that triggers the pinning check (`Curl_wssl_verify_pinned`) appears to be conditionally skipped or improperly handled when the primary verification (`verifyhost`) is disabled via configuration. Unlike the OpenSSL implementation, the wolfSSL wrapper for QUIC does not treat Pinning as an independent check.\\n\\n## Impact\\n\\nThis vulnerability allows a Man-in-the-Middle (MitM) attacker to intercept and decrypt traffic, even when the user has explicitly configured Certificate Pinning to prevent such attacks.&#8221;,&#8221;published&#8221;:&#8221;2025-12-16T20:31:04&#8243;,&#8221;modified&#8221;:&#8221;2025-12-17T13:21:24&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3468098&#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\/3468098&#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-17T13:49:28&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\nA security feature bypass exists in `libcurl` when built with the **wolfSSL** backend and **HTTP\/3** support. The Certificate Pinning feature (`&#8211;pinnedpubkey`) is silently ignored&#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-31541","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: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098 - 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=31541\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-17T13:49:28&#8243;,&#8221;description&#8221;:&#8221;## Summary:nA security feature bypass exists in `libcurl` when built with the **wolfSSL** backend and **HTTP\/3** support. The Certificate Pinning feature (`&#8211;pinnedpubkey`) is silently ignored...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=31541\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-17T08:48:14+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=31541#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31541\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\\\/3_H1:3468098\",\"datePublished\":\"2025-12-17T08:48:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31541\"},\"wordCount\":936,\"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=31541#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31541\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31541\",\"name\":\"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\\\/3_H1:3468098 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-17T08:48:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31541#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=31541\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=31541#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\\\/3_H1:3468098\"}]},{\"@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: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098 - 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=31541","og_locale":"en_US","og_type":"article","og_title":"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-17T13:49:28&#8243;,&#8221;description&#8221;:&#8221;## Summary:nA security feature bypass exists in `libcurl` when built with the **wolfSSL** backend and **HTTP\/3** support. The Certificate Pinning feature (`&#8211;pinnedpubkey`) is silently ignored...","og_url":"https:\/\/zero.redgem.net\/?p=31541","og_site_name":"zero redgem","article_published_time":"2025-12-17T08:48:14+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=31541#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=31541"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098","datePublished":"2025-12-17T08:48:14+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=31541"},"wordCount":936,"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=31541#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=31541","url":"https:\/\/zero.redgem.net\/?p=31541","name":"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-17T08:48:14+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=31541#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=31541"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=31541#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Certificate Pinning Bypass with wolfSSL backend over HTTP\/3_H1:3468098"}]},{"@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\/31541","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=31541"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/31541\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=31541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=31541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=31541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}