{"id":42061,"date":"2026-02-20T17:46:47","date_gmt":"2026-02-20T17:46:47","guid":{"rendered":"http:\/\/localhost\/?p=42061"},"modified":"2026-02-20T17:46:47","modified_gmt":"2026-02-20T17:46:47","slug":"soosyze-cms-20-rate-limit-scanner","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=42061","title":{"rendered":"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-20T22:59:54&#8243;,&#8221;description&#8221;:&#8221;Soosyze CMS 2.0 suffers from a missing authentication rate\u2011limiting vulnerability CWE\u2011307 on the \/user\/login endpoint. The application allows unlimited failed login attempts without triggering protections such as rate limiting, account lockout, or&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-20T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-20T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215963&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Soosyze CMS 2.0 &#8211; Vulnerability Scanner                                                                                     |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/github.com\/soosyze\/soosyze                                                                                          |\\n    =============================================================================================================================================\\n    \\n    [+] Summary    : Soosyze CMS 2.0 suffers from a missing authentication rate\u2011limiting vulnerability (CWE\u2011307) on the \/user\/login endpoint. \\n                     The application allows unlimited failed login attempts without triggering protections such as rate limiting, account lockout, or CAPTCHA.\\n                     The provided automatic detection script (PHP) safely verifies this weakness by sending a small number of controlled failed login attempts and analyzing HTTP responses. \\n    \\t\\t\\t\\t If responses remain consistent (e.g., HTTP 200 with no delay or blocking), the target is flagged as vulnerable, confirming the absence of defensive controls.\\n    \\n    [+] Impact: Enables brute-force and credential\u2011stuffing attacks, potentially leading to account takeover and privilege escalation.\\n    \\n    [+] POC:  php poc.php \\n    \\n    \\u003c?php\\n    \\n    declare(strict_types=1);\\n    \\n    error_reporting(E_ALL);\\n    ini_set(&#8216;display_errors&#8217;, &#8216;1&#8217;);\\n    \\n    $baseUrl    = $argv[1] ?? &#8216;http:\/\/localhost:8000&#8217;;\\n    $loginPath = &#8216;\/user\/login&#8217;;\\n    $formUrl   = rtrim($baseUrl, &#8216;\/&#8217;) . $loginPath;\\n    \\n    $testEmail = &#8216;invalid@test.com&#8217;;\\n    $testPass  = &#8216;WrongPassword123!&#8217;;\\n    \\n    $attempts  = 7; \\n    $delayUs   = 300000;\\n    \\n    $cookieFile = tempnam(sys_get_temp_dir(), &#8216;soosyze_scan_&#8217;);\\n    \\n    function curlReq(string $url, array $opts = []): array\\n    {\\n        $ch = curl_init($url);\\n        curl_setopt_array($ch, [\\n            CURLOPT_RETURNTRANSFER =\\u003e true,\\n            CURLOPT_HEADER =\\u003e true,\\n            CURLOPT_FOLLOWLOCATION =\\u003e false,\\n            CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n            CURLOPT_SSL_VERIFYHOST =\\u003e false,\\n        ] + $opts);\\n    \\n        $response = curl_exec($ch);\\n        $info = curl_getinfo($ch);\\n        curl_close($ch);\\n    \\n        return [$response ?: &#8221;, $info];\\n    }\\n    \\n    function extractToken(string $html): array\\n    {\\n        if (preg_match(\\n            &#8216;\/name=\\&#8221;([_a-zA-Z0-9:-]*(csrf|token)[_a-zA-Z0-9:-]*)\\&#8221;.*?value=\\&#8221;([^\\&#8221;]*)\\&#8221;\/i&#8217;,\\n            $html,\\n            $m\\n        )) {\\n            return [$m[1], $m[3]];\\n        }\\n        return [&#8221;, &#8221;];\\n    }\\n    \\n    echo \\&#8221;[*] Soosyze CMS Brute Force Vulnerability Detector\\\\n\\&#8221;;\\n    echo \\&#8221;[*] Target: {$formUrl}\\\\n\\\\n\\&#8221;;\\n    \\n    $codes = [];\\n    \\n    for ($i = 1; $i \\u003c= $attempts; $i++) {\\n    \\n        [$page, ] = curlReq($formUrl, [\\n            CURLOPT_COOKIEJAR =\\u003e $cookieFile,\\n            CURLOPT_COOKIEFILE =\\u003e $cookieFile\\n        ]);\\n    \\n        [$tokenName, $tokenValue] = extractToken($page);\\n    \\n        $postData = [\\n            &#8217;email&#8217;    =\\u003e $testEmail,\\n            &#8216;password&#8217; =\\u003e $testPass\\n        ];\\n    \\n        if ($tokenName) {\\n            $postData[$tokenName] = $tokenValue;\\n        }\\n    \\n        [, $info] = curlReq($formUrl, [\\n            CURLOPT_POST =\\u003e true,\\n            CURLOPT_POSTFIELDS =\\u003e http_build_query($postData),\\n            CURLOPT_COOKIEJAR =\\u003e $cookieFile,\\n            CURLOPT_COOKIEFILE =\\u003e $cookieFile,\\n            CURLOPT_HTTPHEADER =\\u003e [\\n                &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;,\\n                &#8216;Referer: &#8216; . $formUrl\\n            ]\\n        ]);\\n    \\n        $code = $info[&#8216;http_code&#8217;] ?? 0;\\n        $codes[] = $code;\\n    \\n        echo \\&#8221;[{$i}] Failed login attempt &#8211; HTTP {$code}\\\\n\\&#8221;;\\n        usleep($delayUs);\\n    }\\n    \\n    @unlink($cookieFile);\\n    \\n    \\n    $uniqueCodes = array_unique($codes);\\n    \\n    echo \\&#8221;\\\\n[*] Analysis:\\\\n\\&#8221;;\\n    \\n    if (count($uniqueCodes) === 1 \\u0026\\u0026 in_array(200, $uniqueCodes, true)) {\\n        echo \\&#8221;[!] VULNERABLE: No rate limiting or lockout detected\\\\n\\&#8221;;\\n        echo \\&#8221;[!] CWE-307 confirmed\\\\n\\&#8221;;\\n    } else {\\n        echo \\&#8221;[+] Protection detected (rate limiting \/ lockout \/ anomaly)\\\\n\\&#8221;;\\n    }\\n    \\n    echo \\&#8221;\\\\n[*] Scan completed\\\\n\\&#8221;;\\n    \\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215963&#8243;,&#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:\/\/packetstorm.news\/files\/id\/215963\/&#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-02-20T22:59:54&#8243;,&#8221;description&#8221;:&#8221;Soosyze CMS 2.0 suffers from a missing authentication rate\u2011limiting vulnerability CWE\u2011307 on the \/user\/login endpoint. The application allows unlimited failed login attempts without triggering protections&#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,12,13,33,53,7,11,5],"class_list":["post-42061","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","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 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963 - 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=42061\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-20T22:59:54&#8243;,&#8221;description&#8221;:&#8221;Soosyze CMS 2.0 suffers from a missing authentication rate\u2011limiting vulnerability CWE\u2011307 on the \/user\/login endpoint. The application allows unlimited failed login attempts without triggering protections...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=42061\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-20T17:46:47+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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963\",\"datePublished\":\"2026-02-20T17:46:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061\"},\"wordCount\":680,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=42061#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061\",\"name\":\"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-20T17:46:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=42061\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=42061#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963\"}]},{\"@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 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963 - 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=42061","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-20T22:59:54&#8243;,&#8221;description&#8221;:&#8221;Soosyze CMS 2.0 suffers from a missing authentication rate\u2011limiting vulnerability CWE\u2011307 on the \/user\/login endpoint. The application allows unlimited failed login attempts without triggering protections...","og_url":"https:\/\/zero.redgem.net\/?p=42061","og_site_name":"zero redgem","article_published_time":"2026-02-20T17:46:47+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=42061#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=42061"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963","datePublished":"2026-02-20T17:46:47+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=42061"},"wordCount":680,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=42061#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=42061","url":"https:\/\/zero.redgem.net\/?p=42061","name":"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-20T17:46:47+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=42061#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=42061"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=42061#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Soosyze CMS 2.0 Rate Limit Scanner_PACKETSTORM:215963"}]},{"@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\/42061","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=42061"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/42061\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=42061"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=42061"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=42061"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}