{"id":62731,"date":"2026-06-15T15:36:02","date_gmt":"2026-06-15T15:36:02","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=62731"},"modified":"2026-06-15T15:36:02","modified_gmt":"2026-06-15T15:36:02","slug":"inside-amalicious-infrastructure-deliveringetherratphishing-pagesand-malicious-software","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=62731","title":{"rendered":"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-06-15T20:26:02&#8243;,&#8221;description&#8221;:&#8221;During our recent threat hunting activities, we found EtherRAT malware being distributed by a website with a strange homepage. This homepage allowed us to discover a vast malicious infrastructure distributing malware, malicious documents, remote desktop software, and phishing pages. \\n\\nEtherRAT is a RAT developed in Node.js which allows an attacker to gain complete control over the machine and execute arbitrary code returned by the Command and Control (C2) server. The malware uses the Etherium blockchain to obtain the C2 server, hence the \\&#8221;Ether\\&#8221; part of the name. EtherRAT is typically distributed via MSI, PowerShell, or JavaScript scripts. \\n\\n## An open directory that distributes EtherRAT: where it all began \\n\\nWhile threat hunting, we found an open directory that was distributing MSI installers and PowerShell scripts, which ultimately distributed EtherRAT. In the analyzed cases, the PowerShell scripts and MSI installers were distributed from a \u201c\/install\u201d folder.  The versions have a progressive number, ranging from v1 to v10. \\n\\n![Figure\u00a01: Open Directory hosting\u00a0EtherRAT\u00a0MSI\u00a0](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_369ca0.png)_Open Directory hosting  EtherRAT MSI _\\n\\nThe returned home page caught our attention and prompted us to further explore the campaign. \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_8728d4.png)_The homepage returned by the  EtherRAT distribution website_ \\n\\nAnalyzing domains and associated IPs with the EtherRAT distribution, we detected other similar home pages with a hacking-style theme. They appeared to belong to a larger distribution chain, which also distributes phishing, remote control software, and other malware. These websites usually have several folders with malware and phishing related content, and what is displayed depends on the specific infection chain. \\n\\nDifferent websites that resolve to the same IP addresses have previously returned pages related to fake companies or default templates. The use of these new pages could therefore be a method to make detection more difficult for automated scanners or researchers.  Here are some of the home pages we found:\\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_cc9098.png)_Some of the  malicious websites indexed on Google_ \\n\\nEtherRAT is an interesting RAT, as it has few lines of code and allows the execution of arbitrary code returned by the C2 server. Furthermore, using the Ethereum blockchain to obtain the C2 server makes it more resilient to infrastructure takedowns. \\n\\n# Technical analysis of EtherRAT \\n\\nThe detected websites usually distribute an MSI or PowerShell script with the version name, such as v1.msi, v2.ps1, and so on. \\n\\n## MSI Loader \\n\\nThe MSI file \\&#8221;v9.msi\\&#8221; contains three components: \\n\\n**MSI  Filename** | **Description**    \\n&#8212;|&#8212;  \\nKmPuGimn.cmd | BAT launcher   \\ncDQMlQAru0.xml | First Jscript loader   \\nMRaQCipBIZeiZNx.log | Encrypted EtherRAT   \\n  \\nWhen the MSI is executed, the \u201cKmPuGimn.cmd\u201d file is started: \\n    \\n    \\n    conhost &#8211;headless cmd \/c \\&#8221;KmPuGimn.cmd\\&#8221; \\n\\nThis obfuscated BAT file performs different operations: \\n\\n  * Extracts the other files in a random folder in %LOCALAPPDATA%. \\n  * Re-executes itself via: \\n    * %SystemRoot%\\\\System32\\\\conhost.exe -headless %SystemRoot%\\\\System32\\\\cmd.exe \/c call \\&#8221;C:\\\\Users\\\\\\\\{user}\\\\AppData\\\\Local\\\\\\\\{random_path}\\\\KmPuGimn.cmd\\&#8221; nKWa \\n  * Runs the command \u201cwhere node\u201d to find an existing installation. \\n  * Downloads Node.js if it\u2019s not found \\n    * Uses \\&#8221;curl -sLo\\&#8221; to download Node.js from the official website. \\n    * Extracts to installation directory via \\&#8221;tar -xf\\&#8221;. \\n    * Renames extracted directory to \\&#8221;28Q75h\\&#8221;.\\n  * Loops until both \\&#8221;MRaQCipBIZeiZNx.log\\&#8221; and \\&#8221;cDQMlQAru0.xml\\&#8221; exist, then executes: \\n    * conhost.exe -headless C:\\\\Users\\\\\\\\{user}\\\\AppData\\\\Local\\\\\\\\{random_path}\\\\\\\\{random_path}\\\\node.exe cDQMlQAru0.xml \\n\\n\\n\\nThe executed \\&#8221;cDQMlQAru0.xml\\&#8221; is a loader that decrypts the embedded code with a XOR function and then executes it with \\&#8221;vm.compileFunction\\&#8221;. \\n    \\n    \\n    decrypted[i] = (encrypted[i] &#8211; key[i % key.length] &#8211; i) \\u0026 0xFF \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_851e9c.png)_The embedded decrypted code_  \\n\\nThe decrypted code: \\n\\n  * Copies node.exe in \\&#8221;C:\\\\Users\\\\\\\\{user}\\\\AppData\\\\Local\\\\\\\\{random_path}\\\\\\\\{random_path}\\\\\\\\_MJlLlt5.exe\\&#8221;. \\n  * Adds a registry key for persistence with \\&#8221;conhost.exe \u2013headless\\&#8221;. \\n  * Decrypts \\&#8221;MRaQCipBIZeiZNx.log\\&#8221; and executes it with \\&#8221;_MJlLlt5.exe\\&#8221; stdin. \\n\\n\\n\\nThe decryption algorithm is a custom stream-like decoding routing based on XOR, byte rotations and an accumulator: \\n    \\n    \\n    for e in range(len(data)): \\n        byte = data[e] \\n        g = prev \\n        prev = byte \\n        byte = (byte &#8211; g) \\u0026 0xff \\n        byte = byte ^ n[e % len(n)] ^ ((e \\u003e\\u003e 8) \\u0026 0xff) \\n        byte = si[byte] \\n        byte = (byte &#8211; k[e % len(k)]) \\u0026 0xff\\n        result[e] = byte \\n\\nThe final stage is to deploy EtherRAT. EtherRAT allows the attacker to: \\n\\n  * Execute arbitrary JavaScript code received by the C2 server. This allows the attacker to execute new commands, perform operations on files and folders, modify the registry, and exfiltrate data. \\n  * Get a new C2 server using the Ethereum blockchain. \\n  * Reobfuscate itself. \\n  * Save the logs to \\&#8221;svchost.log\\&#8221;. \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_d445bb.png)_Part of decrypted  EtherRAT code_ \\n\\nThe EtherRAT uses Ethereum&#8217;s \\&#8221;eth_call\\&#8221; JSON-RPC method to retrieve the active C2 URL from a smart contract on the Ethereum mainnet.  \\n\\nThe blockchain parameters in this case are: \\n\\n  * Contract: 0x88ea8d0bc4146f0a018e989df3fd089ac48f9a58 \\n  * Function selector: 0x7d434425 \\n  * Argument: 0xf6a772e163e64b07f658946f863b5d457d88f9f0 \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_f3c52b.png)_The decoded C2 from Ethereum blockchain_  \\n\\nThe contacted URLs to obtain the C2 server endpoint are: \\n\\n  * mainnet[.]gateway[.]tenderly[.]co \\n  * rpc[.]flashbots[.]net\/fast \\n  * rpc[.]mevblocker[.]io \\n  * eth-mainnet[.]public[.]blastapi[.]io \\n  * ethereum-rpc[.]publicnode[.]com \\n  * eth[.]drpc[.]org \\n  * eth[.]merkle[.]io \\n\\n\\n\\nPolling requests use randomized URL patterns based on some parameters defined in the code: \\n    \\n    \\n    GET \/api\/\\u003c4-byte-hex\\u003e\/\\u003cvictim-uuid\\u003e\/\\u003c4-byte-hex\\u003e.\\u003cext\\u003e?\\u003cparam\\u003e=\\u003cbuild-id\\u003e \\n    X-Bot-Server: \\u003cc2_url\\u003e \\n\\nIn the analyzed sample, the parameters are: \\n\\n  * Build ID: \\&#8221;6f816d80-0d6c-4384-9cd6-6b79965fc08f\\&#8221; \\n  * ext: randomly selected from \\&#8221;png\\&#8221;, \\&#8221;jpg\\&#8221;, \\&#8221;gif\\&#8221;, \\&#8221;css\\&#8221;, \\&#8221;ico\\&#8221;, \\&#8221;webp\\&#8221;. \\n  * param: randomly selected from \\&#8221;id\\&#8221;, \\&#8221;token\\&#8221;, \\&#8221;key\\&#8221;, \\&#8221;b\\&#8221;, \\&#8221;q\\&#8221;, \\&#8221;s\\&#8221;, \\&#8221;v\\&#8221;. \\n\\n\\n\\nAfter startup, the RAT sends its own source code to the C2 server. The C2 responds with a newly obfuscated version of the script, which is written back to disk, making each execution generate a new file hash. \\n    \\n    \\n    POST \/api\/[REOBF_PATH]\/\\u003cvictim-uuid\\u003e \\n    Body: { \\&#8221;code\\&#8221;: \\&#8221;\\u003ccurrent_script_contents\\u003e\\&#8221;, \\&#8221;build\\&#8221;: \\&#8221;\\u003cbuild_id\\u003e\\&#8221; } \\n\\nAfter the EtherRAT execution, we observed different post-compromised cmd.exe activities to check the environment. For example: \\n\\n  * powershell -NoProfile -NonInteractive -WindowStyle Hidden -Command \\&#8221;(Get-WmiObject Win32_VideoController).Name\\&#8221;\\n  * reg query \\&#8221;HKLM\\\\SOFTWARE\\\\Microsoft\\\\Cryptography\\&#8221; \/v MachineGuid \\n  * powershell -NoProfile -NonInteractive -WindowStyle Hidden -Command \\&#8221;(Get-WmiObject Win32_ComputerSystem).Domain\\&#8221; \\n  * powershell -NoProfile -NonInteractive -WindowStyle Hidden -Command \\&#8221;(Get-WmiObject Win32_ComputerSystem).PartOfDomain\\&#8221; \\n  * cmd.exe \/d \/s \/c \\&#8221;net session\\&#8221; \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_ed2136.png)_EtherRAT  logs_ \\n\\n### PowerShell Loader \\n\\nThe activities performed by the PowerShell loaders are very similar to the last stage of the JS script of the MSI installer: \\n\\n  * Downloads Node.js if it\u2019s not present. \\n  * Create the necessary directories. \\n  * Decode the EtherRAT with a custom decryption algorithm. \\n  * Execute Node.js with conhost.exe and the decrypted EtherRAT payload. \\n\\n\\n\\nWe detected some variants of the PowerShell loader hosted on these websites; namely that the functions&#8217; names and the decryption functions change in the analyzed PowerShell scripts. \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_54aca3.png)_The decryption of  EtherRAT payload with the custom decryption algorithm_ \\n\\n# Tracking the malicious infrastructure \\n\\nWhen we analyzed the different websites with the \\&#8221;hacking-theme\\&#8221; pages, we found that in the past many had hosted multiple phishing pages in some specific paths. For example: \\n\\n  * \/zht\/sharep-redirect.html \\n  * \/bl\/me.php \\n  * \/t\/teams \\n  * \/teams\/Windows\/invite.php \\n\\n\\n\\nIt seems that these domains and IPs are actually part of a much larger infrastructure that distributes malware, phishing, malicious documents, and remote software. It is possible that these infrastructures are shared by multiple threat actors who activate different URL endpoints based on the specific campaign. \\n\\nInterestingly, the majority of the domains related to this malicious infrastructure in the past also returned an HTML page related to a \\&#8221;Bulletproof Infrastructure\\&#8221; service.  \\n\\nWe found that these phishing campaigns typically start via emails with documents attached, such as PDF or Excel files. These documents ask the user to click a link to view another document. Below are two examples of the phishing documents attached to the emails:\\n\\nThese phishing pages typically ask the user to enter their email address, then continue the infection chain and distribute phishing or malware pages.  Below are some of the phishing pages detected within the malicious infrastructure:\\n\\n## Misconfigurations exposed the phishing kits \\n\\nWhile tracking malicious websites, we found one with an open directory containing part of the phishing kit used in the campaigns. \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_363c0d.png)_Open directory  hosting part of phishing kits_\\n\\n \\n\\nThe open directory contained several folders with code and pages related to the phishing campaigns. \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_121c58.png)_Phishing kit code_  \\n\\nAdditionally, some domains were misconfigured and allowed the download of \\&#8221;cl.zip\\&#8221;, which contained the source code for the \\&#8221;URL Cloaker\\&#8221; pages. \\n\\n![](https:\/\/www.malwarebytes.com\/wp-content\/uploads\/sites\/2\/2026\/06\/image_dfc923.png)_Part of \\&#8221;URL Cloaker\\&#8221; code_ \\n\\n## **Indicators of Compromise (IOCs)**  \\n\\n### **IPs**  \\n\\n82[.]165[.]65[.]244: malicious infrastructure  \\n\\n185[.]221[.]216[.]121: malicious infrastructure  \\n\\n43[.]163[.]233[.]166: malicious infrastructure  \\n\\n40[.]160[.]238[.]30: malicious infrastructure  \\n\\n159[.]89[.]227[.]204: malicious infrastructure  \\n\\n57[.]128[.]31[.]168: malicious infrastructure  \\n\\n### **Domains**  \\n\\nivorilla[.]cloud: EtherRAT distribution  \\n\\nmx[.]nrlwz[.]com: EtherRAT distribution  \\n\\ndn[.]eyqwj[.]com: EtherRAT distribution  \\n\\nbi[.]mkrjcsw[.]com: EtherRAT distribution  \\n\\ndorqen[.]casa: EtherRAT distribution  \\n\\nkelvra[.]club: EtherRAT distribution  \\n\\ncambioefectivo[.]com: EtherRAT C2  \\n\\nvabelles[.]com: EtherRAT C2  \\n\\ntranzed[.]org: EtherRAT C2  \\n\\nkibrisarazi[.]com: EtherRAT C2  \\n\\naravisblog[.]com: EtherRAT C2  \\n\\npublicspeakingtip[.]org: EtherRAT C2  \\n\\n## **Acknowledgement****s****** \\n\\n  * EtherRAT: https:\/\/atos.net\/en\/lp\/cybershield\/etherrat-distribution-spoofing-administrative-tools-via-github-facades \\n\\n\\n  * SharePoint reference: https:\/\/ironscales.com\/threat-intelligence\/no-macro-xlsx-shared-strings-aitm-redirect-credential-harvest \\n\\n\\n\\n* * *\\n\\n**Stop threats before they can do any harm.**\\n\\nMalwarebytes Browser Guard blocks phishing pages and malicious sites automatically. Free, one click to install. Add it to your browser \u2192&#8221;,&#8221;published&#8221;:&#8221;2026-06-15T20:17:46&#8243;,&#8221;modified&#8221;:&#8221;2026-06-15T20:17:46&#8243;,&#8221;type&#8221;:&#8221;malwarebytes&#8221;,&#8221;title&#8221;:&#8221;Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2&#8243;,&#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\/threat-intel\/2026\/06\/inside-a-malicious-infrastructure-delivering-etherrat-phishing-pages-and-malicious-software&#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-06-15T20:26:02&#8243;,&#8221;description&#8221;:&#8221;During our recent threat hunting activities, we found EtherRAT malware being distributed by a website with a strange homepage. This homepage allowed us to discover&#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-62731","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>Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2 - 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=62731\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-06-15T20:26:02&#8243;,&#8221;description&#8221;:&#8221;During our recent threat hunting activities, we found EtherRAT malware being distributed by a website with a strange homepage. This homepage allowed us to discover...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=62731\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-15T15:36: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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2\",\"datePublished\":\"2026-06-15T15:36:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731\"},\"wordCount\":1972,\"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=62731#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731\",\"name\":\"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-06-15T15:36:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=62731\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=62731#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2\"}]},{\"@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":"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2 - 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=62731","og_locale":"en_US","og_type":"article","og_title":"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-06-15T20:26:02&#8243;,&#8221;description&#8221;:&#8221;During our recent threat hunting activities, we found EtherRAT malware being distributed by a website with a strange homepage. This homepage allowed us to discover...","og_url":"https:\/\/zero.redgem.net\/?p=62731","og_site_name":"zero redgem","article_published_time":"2026-06-15T15:36:02+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=62731#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=62731"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2","datePublished":"2026-06-15T15:36:02+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=62731"},"wordCount":1972,"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=62731#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=62731","url":"https:\/\/zero.redgem.net\/?p=62731","name":"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-06-15T15:36:02+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=62731#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=62731"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=62731#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Inside a\u00a0malicious infrastructure delivering\u00a0EtherRAT,\u00a0phishing pages,\u00a0and malicious software_MALWAREBYTES:FCB122BA82E07977E3F393F732A03DA2"}]},{"@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\/62731","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=62731"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/62731\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=62731"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=62731"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=62731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}