Excerpt: OTX alerts highlight Hive0163 InterlockRAT and Rhysida ransomware operations alongside a global procurement-themed AiTM phishing campaign stealing credentials. Urgency: High.
Threat Summary
Recent OTX pulses expose a dual-threat landscape converging on credential theft and ransomware. The first pulse details the entrenched ecosystem of Hive0163 (Interlock) and Rhysida, leveraging custom malware like NodeSnake, InterlockRAT, and SystemBC to maintain persistence and facilitate data exfiltration. Simultaneously, a separate but highly relevant Adversary-in-the-Middle (AiTM) phishing campaign (Pulse 2) is targeting global institutions using procurement-themed lures. This AiTM operation utilizes tools like EvilProxy and Kali365 to bypass MFA and steal session tokens. The correlation suggests a kill chain where AiTM campaigns harvest initial access credentials, which are then leveraged or sold to ransomware groups like Rhysida for deployment of payloads such as Broomstick and Tomb.
Threat Actor / Malware Profile
Adversaries: Hive0163 (Interlock), Rhysida, Vanilla Tempest, TAG-124.
Malware Families & Behavior:
- NodeSnake / InterlockRAT: Custom Golang-based malware used by Hive0163. These provide remote access capabilities, often deployed via trojanized installers (e.g., fake Chrome updates) and SEO poisoning (Gootloader).
- Rhysida Ransomware: Known for aggressive double-extortion. Actors use the Endico downloader and Broomstick loader to execute the ransomware payload. They utilize Tomb crypter to obfuscate malicious files.
- SystemBC: A proxy tool frequently observed in these chains, used to tunnel C2 traffic and bypass firewall detection.
- AiTM Infrastructure: While not a traditional malware file, the AiTM campaign uses reverse-proxy servers to intercept credentials and session cookies, specifically targeting procurement workflows in government and education sectors.
IOC Analysis
The provided indicators of compromise (IOCs) cover infrastructure, payloads, and delivery mechanisms.
- Domains (C2 & Phishing):
leadslaw.com: Associated with the Interlock/Rhysida ecosystem.sohantraders.com,satoriestate.com,duemineral.uk,assessmentevaluationreport.com,corporatetermscompliance.com: Domains used in the procurement-themed AiTM phishing campaign. These often mimic legitimate business entities to solicit bids or document exchanges.
- File Hashes:
- Multiple SHA256 hashes (e.g.,
64a0ab00d90682b1807c5d7da1a4ae67cde4c5757fc7d995d8f126f0ec8ae983) correspond to droppers and loaders for the Interlock/Rhysida malware suite.
- Multiple SHA256 hashes (e.g.,
- URLs:
https://apple-online.shop/ChromeSetup.exe: A classic trojanized installer vector used to deliver initial payloads.
Operationalization: SOC teams should immediately block the listed domains at the web proxy and DNS firewall levels. File hashes must be imported into EDR solutions for immediate scanning. Given the nature of AiTM, network defenders should also hunt for successful logins to Office 365 originating from anomalous IP ranges associated with these infrastructure domains.
Detection Engineering
---
title: Potential InterlockRAT or Trojanized Installer Execution
id: 8f3a1b2c-3d4e-5f6a-7b8c-9d0e1f2a3b4c
status: experimental
description: Detects execution of suspicious installers like ChromeSetup.exe from untrusted paths or specific hashes associated with the Hive0163 Interlock campaign.
references:
- https://otx.alienvault.com/pulse/66510234/
author: Security Arsenal
date: 2026/08/03
tags:
- attack.execution
- attack.t1204
logsource:
category: process_creation
product: windows
detection:
selection:
Image|endswith:
- '\ChromeSetup.exe'
- '\update.exe'
ParentImage|contains:
- '\Downloads'
- '\Temp'
condition: selection
falsepositives:
- Legitimate software updates initiated by users
level: high
---
title: AiTM Phishing Domain Connection
id: 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
status: experimental
description: Detects network connections to known domains associated with the global procurement-themed AiTM phishing campaign targeting credentials.
references:
- https://otx.alienvault.com/pulse/66510235/
author: Security Arsenal
date: 2026/08/03
tags:
- attack.command_and_control
- attack.1071
logsource:
category: network_connection
product: windows
detection:
selection:
Initiated: 'true'
DestinationHostname|contains:
- 'sohantraders.com'
- 'satoriestate.com'
- 'duemineral.uk'
- 'assessmentevaluationreport.com'
- 'barifurniture.net'
condition: selection
falsepositives:
- Unknown
level: critical
---
title: Suspicious SystemBC Proxy Activity
id: 2b3c4d5e-6f7a-8b9c-0d1e-2f3a4b5c6d7e
status: experimental
description: Detects potential execution patterns of SystemBC, a proxy tool often used by Rhysida and Interlock actors for C2 communication.
references:
- https://otx.alienvault.com/pulse/66510234/
author: Security Arsenal
date: 2026/08/03
tags:
- attack.defense_evasion
- attack.t1572
logsource:
category: process_creation
product: windows
detection:
selection_img:
Image|contains: '\Temp'
Image|endswith: '.exe'
selection_cmd:
CommandLine|contains:
- '-proxy'
- '-connect'
condition: all of selection_*
falsepositives:
- Legitimate proxy utilities
level: medium
kql
// Hunt for specific file hashes from Pulse 1 (Interlock/Rhysida)
DeviceProcessEvents
| where FolderPath endswith ".exe"
| where SHA256 in (
"64a0ab00d90682b1807c5d7da1a4ae67cde4c5757fc7d995d8f126f0ec8ae983",
"c9920e995fbc98cd3883ef4c4520300d5e82bab5d2a5c781e9e9fe694a43e82f",
"43f4ca1c7474c0476a42d937dc4af01c8ccfc20331baa0465ac0f3408f52b2e2"
)
| project Timestamp, DeviceName, AccountName, FolderPath, SHA256
// Hunt for connections to AiTM Phishing Domains (Pulse 2)
DeviceNetworkEvents
| where RemoteUrl in (
"sohantraders.com", "satoriestate.com", "dueminital.uk",
"assessmentevaluationreport.com", "barifurniture.net"
)
| project Timestamp, DeviceName, InitiatingProcessAccountName, RemoteUrl, RemoteIP
powershell
# IOC Hunt Script for Interlock/Rhysida Artifacts
# Checks for presence of file hashes listed in OTX Pulse 1 and common persistence locations
$maliciousHashes = @(
"64a0ab00d90682b1807c5d7da1a4ae67cde4c5757fc7d995d8f126f0ec8ae983",
"c9920e995fbc98cd3883ef4c4520300d5e82bab5d2a5c781e9e9fe694a43e82f",
"43f4ca1c7474c0476a42d937dc4af01c8ccfc20331baa0465ac0f3408f52b2e2",
"edbf152ed9ac79e5d9e0111d1071af48"
)
Write-Host "Scanning for known malicious hashes..."
# Scan common user directories and temp folders
$searchPaths = @("$env:USERPROFILE\Downloads", "$env:TEMP", "$env:APPDATA")
foreach ($path in $searchPaths) {
if (Test-Path $path) {
Get-ChildItem -Path $path -Recurse -ErrorAction SilentlyContinue -File | ForEach-Object {
try {
$fileHash = (Get-FileHash -Path $_.FullName -Algorithm SHA256 -ErrorAction Stop).Hash
if ($maliciousHashes -contains $fileHash) {
Write-Host "[!] MALICIOUS FILE DETECTED: $($_.FullName) (Hash: $fileHash)" -ForegroundColor Red
}
} catch {
# Ignore errors for locked files or access denied
}
}
}
}
# Check for Scheduled Tasks often used by SystemBC/Interlock for persistence
Write-Host "Checking Scheduled Tasks for suspicious activity..."
Get-ScheduledTask | Where-Object { $_.Actions.Execute -like "*rundll32*" -or $_.Actions.Execute -like "*powershell*" -and $_.TaskPath -notlike "\Microsoft*" } | Select-Object TaskName, TaskPath, Actions
Response Priorities
- Immediate: Block all listed IOCs, specifically the domains
sohantraders.com,satoriestate.com, andleadslaw.comon perimeter firewalls and proxies. Initiate endpoint scans for the SHA256 hashes provided in the Pulse. - 24h: Conduct an identity audit for users who may have interacted with the procurement-themed phishing lures. Review Azure AD/O365 sign-in logs for successful logins followed by suspicious activity (MFA bypass indicators).
- 1 Week: Implement email filtering rules to flag "procurement" and "bid invitation" terminology from external senders. Patch systems against CVE-2023-36036 and related vectors mentioned in the Pulse to prevent initial compromise via exploits.
Related Resources
Security Arsenal Incident Response Managed SOC & MDR Services AlertMonitor Threat Detection From The Dark Side Intel Hub
Is your security operations ready?
Get a free SOC assessment or see how AlertMonitor cuts through alert noise with automated triage.