Hackers News Hackers News
  • CyberSecurity News
  • Threats
  • Attacks
  • Vulnerabilities
  • Breaches
  • Comparisons

Social Media

Hackers News Hackers News
  • CyberSecurity News
  • Threats
  • Attacks
  • Vulnerabilities
  • Breaches
  • Comparisons
Search the Site
Popular Searches:
technology Amazon AI
Recent Posts
Critical Microsoft Copilot Vulnerability Lets Attackers Hijack Accounts
August 4, 2026
Microsoft Hardens NuGet Security with Shorter API Key Lifespans
August 4, 2026
How SOCs Detect and Stop AI Phishing Attacks Bypassing Email Gateways
August 4, 2026
Home/Threats/Fake Claude Install Page Delivers Fileless .NET Infostealer
Threats

Fake Claude Install Page Delivers Fileless .NET Infostealer

Key Takeaways A sophisticated SEO poisoning campaign is luring users searching for “Claude Code install” to fake Anthropic download pages. The attack chain utilizes a multi-stage,...

Sarah simpson
Sarah simpson
June 4, 2026 5 Min Read
58 0

Key Takeaways

  • A sophisticated SEO poisoning campaign is luring users searching for “Claude Code install” to fake Anthropic download pages.
  • The attack chain utilizes a multi-stage, primarily fileless .NET infostealer designed to evade detection by common security tools.
  • The malware exfiltrates sensitive credentials to Russian-hosted command and control infrastructure.
  • The campaign specifically targets less technically savvy users, such as first-time developers, who may be less familiar with legitimate software installation processes.

Cybercriminals Leverage Fake Claude Code Install Page to Deliver Fileless .NET Infostealer

Cybersecurity researchers have uncovered an active campaign exploiting the burgeoning interest in AI coding tools by distributing a stealthy, fileless .NET infostealer. The attackers are employing search engine optimization (SEO) poisoning to direct unsuspecting users, particularly those seeking installation guides for Anthropic’s Claude Code, to deceptive download pages.

Table Of Content

  • Key Takeaways
  • Cybercriminals Leverage Fake Claude Code Install Page to Deliver Fileless .NET Infostealer
  • Targeting Novice Users with Deceptive Tactics
  • Multi-Stage, Fileless Execution Evades Detection
  • Reflective .NET Infostealer: The Final Payload
  • What You Should Do
  • Indicators of Compromise (IoCs):-

This elaborate threat, detailed in a recent report by Cyderes’ threat research unit, Howler Cell, highlights a growing trend of adversaries capitalizing on popular software adoption to compromise user credentials and sensitive information. The campaign is notable for its six-stage delivery chain, which remains almost entirely fileless after the initial infection vector, making detection exceptionally challenging.

Targeting Novice Users with Deceptive Tactics

The attackers have meticulously designed this campaign to target a specific demographic: first-time developers and non-technical users eager to experiment with new AI tools. These individuals often lack the foundational knowledge to differentiate a legitimate software installation process from a malicious one, making them highly susceptible to social engineering tactics.

According to the Cyderes report shared with Cyber Security News (CSN), the attackers manipulate search results to position a spoofed Anthropic installation page prominently. Once on this page, victims are instructed to execute a malicious MSHTA command via the Windows Run dialog, a technique dubbed “ClickFix” that disguises attacker-controlled commands as routine setup steps.

The ultimate objective is to deploy a reflective .NET infostealer that communicates with Russian infrastructure to exfiltrate stolen credentials. The consequences for infected individuals are severe, ranging from compromised accounts and drained financial resources to complete identity theft, particularly as many victims operate without robust enterprise-level security controls.

It is crucial to note that Anthropic’s systems remain uncompromised; its brand is merely being impersonated by the attackers as part of this sophisticated phishing and malware distribution scheme.

Multi-Stage, Fileless Execution Evades Detection

The campaign’s efficacy stems from its meticulously engineered delivery chain, designed to bypass various security measures, including file inspection, AMSI scanning, EDR telemetry, sandbox analysis, and traditional IOC matching at multiple layers.

The attack initiates when a user, searching for “Claude Code install,” clicks on what appears to be an official Anthropic setup page. This page then directs the user to open the Windows Run dialog and paste a pre-staged mshta.exe command, presented as a necessary step for installation.

Stage 1: Polyglot Payload Delivery

The mshta.exe command retrieves a 6.7 MB MP3/HTA polyglot payload from download.version-516[.]com/claude. This file is crafted to appear as playable audio during security scans while covertly embedding an executable HTA script block. While media players like VLC would recognize it as a legitimate MP3, mshta.exe processes the file, ignores the audio data, and executes the hidden script.

MP3 - HTA polyglot — VLC sees playable audio; mshta.exe finds and executes the embedded HTA script block (Source - Cyderes)
MP3 – HTA polyglot — VLC sees playable audio; mshta.exe finds and executes the embedded HTA script block (Source – Cyderes)

Stage 2 & 3: PowerShell and In-Memory Script Execution

The HTA script then proceeds to register a scheduled task via a COM object, which in turn spawns a 32-bit PowerShell process. The choice of a 32-bit PowerShell binary is strategic, as many EDR solutions prioritize monitoring 64-bit activities. This PowerShell script performs an AMSI bypass, RC4 decryption, and victim fingerprinting using an MD5 hash of the machine and username.

Stage 3 sees the PowerShell process fetching a substantial 17 MB obfuscated script directly into memory from a unique subdomain on oakenfjrod[.]ru. This critical step ensures that no malicious files are written to disk, significantly hindering forensic analysis and traditional file-based detection.

Reflective .NET Infostealer: The Final Payload

The culmination of the attack is the deployment of a reflective .NET infostealer. This final payload executes entirely within the existing PowerShell process’s address space, mirroring advanced techniques typically seen in sophisticated tools like Cobalt Strike but implemented fully through PowerShell. This method ensures there are no new process spawns, no file artifacts, and no image-load events for defenders to detect.

Reflective .NET loader — final shellcode executes entirely within the existing PowerShell process address space (Source - Cyderes)
Reflective .NET loader — final shellcode executes entirely within the existing PowerShell process address space (Source – Cyderes)

Once active, the infostealer communicates over HTTPS to 185[.]177[.]239[.]255:443 for command and control (C2) and exfiltration of stolen credentials. Cyderes’ analysis, utilizing “SensitiveFileRead” telemetry, confirmed the malware’s access to browser credential stores during its execution.

Detection of such advanced fileless threats often relies on EDR platforms with granular visibility into .NET assembly loads, as traditional file-based security controls are ineffective. Organizations should consider any Claude Code installation page that instructs users to paste commands into the Windows Run dialog as a high-risk indicator of compromise.

What You Should Do

  • Verify Software Sources: Always download software directly from official vendor websites. Be wary of third-party download sites or search results that appear suspicious.
  • Educate Users: Train users, especially those new to development tools, on identifying phishing attempts and the dangers of executing commands from unverified sources. Emphasize that legitimate software installations rarely require pasting commands into the Windows Run dialog.
  • Implement Network Restrictions: Block outbound HTTPS connections from mshta.exe unless explicitly required and carefully monitored.
  • Monitor DNS and Network Traffic: Implement wildcard domain blocking for suspicious domains like oakenfjrod[.]ru. Monitor DNS queries and network traffic for connections to known malicious IPs, such as 185[.]177[.]239[.]255.
  • Enhance EDR Visibility: Ensure your Endpoint Detection and Response (EDR) solutions have robust visibility into .NET assembly loads and PowerShell activity to detect fileless attacks.
  • Use Multi-Factor Authentication (MFA): Enable MFA on all accounts, especially for critical services, to add an extra layer of security against stolen credentials.

Indicators of Compromise (IoCs):-

Type Indicator Description
Domain download.version-516[.]com HTA payload delivery; fake Claude Code download site
Domain oakenfjrod[.]ru Stage 3 C2 (wildcard: *.oakenfjrod[.]ru)
IP 185[.]177[.]239[.]255 Final stealer C2 IP for credential exfiltration
URL https://[md5_16char].oakenfjrod[.]ru/claude-[uuid] Per-victim C2 beacon URL structure

Note: IP addresses and domains are intentionally defanged (e.g., [.]) to prevent accidental resolution or hyperlinking. Re-fang only within controlled threat intelligence platforms such as MISP, VirusTotal, or your SIEM.

Disclaimer: HackersRadar reports on cybersecurity threats and incidents for informational and awareness purposes only. We do not engage in hacking activities, data exfiltration, or the hosting or distribution of stolen or leaked information. All content is based on publicly available sources.

Tags:

AttackExploitHackerSecurityThreat

Share Article

Sarah simpson

Sarah simpson

Sarah is a cybersecurity journalist specializing in threat intelligence and malware analysis. With over 8 years of experience covering APT groups, zero-day exploits, and advanced persistent threats, Sarah brings deep technical expertise to breaking cybersecurity news. Previously, she worked as a security researcher at leading threat intelligence firms, where she analyzed malware samples and tracked cybercriminal operations. Sarah holds a Master's degree in Computer Science with a focus on cybersecurity and is a regular contributor to major security conferences.

Previous Post

Malicious Ads Deliver FlutterShell Backdoor to macOS Systems

Next Post

Fake Ghidra, dnSpy, SpiderFoot Sites Spread Malware

No Comment! Be the first one.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Popular Posts
DarkSword iOS Exploit Kit Spreads to 180 Websites and 27 Hosts
August 4, 2026
CISA Warns of Critical N-able N-central Auth Bypass (CVE-2023-47248) Exploited In Attacks
August 4, 2026
Critical CUPS Vulnerability (CVE-2023-4586) Lets Attackers Gain Root Privileges
August 4, 2026
Top Authors
Marcus Rodriguez
Marcus Rodriguez
Emy Elsamnoudy
Emy Elsamnoudy
Jennifer sherman
Jennifer sherman
Let's Connect
156k
2.25m
285k

Related Posts

Jennifer sherman
By Jennifer sherman
Threats

GlassWorm Attacks macOS via Malicious VS Code…

January 1, 2026
Emy Elsamnoudy
By Emy Elsamnoudy
Attacks

ClickFix Attack Hides Malicious Code via Stegan Security

January 1, 2026
Sarah simpson
By Sarah simpson
Vulnerabilities

MongoBleed Detector Tool Released to Detect MongoDB Vulnerability(CVE-2025-14847)

January 1, 2026
Emy Elsamnoudy
By Emy Elsamnoudy
Breaches

Conti Ransomware Gang Leaders & Infrastructure Exposed

January 1, 2026
Hackers News Hackers News
  • [email protected]

Quick Links

  • Contact Us
  • Privacy Policy
  • Terms of service

Categories

Attacks
Breaches
Comparisons
CyberSecurity News
Threats
Vulnerabilities

Let's keep in touch

receive fresh updates and breaking cyber news every day and week!

All Rights Reserved by HackersRadar ©2026

Follow Us