This hunt targets adversary behavior where endpoints access known RemusStealer malicious URLs to exfiltrate sensitive credentials and browser data through web traffic channels. Proactively hunting for these specific indicators in Azure Sentinel is critical because early detection of this stealer allows the SOC team to isolate compromised assets before lateral movement occurs across the cloud environment.
Threat: RemusStealer Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.77.168.180:5000/piva.exe | online | malware_download | 2026-07-13 |
hxxp://31.77.168.180:5000/sosermasn.exe | online | malware_download | 2026-07-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: RemusStealer
let malicious_domains = dynamic(["31.77.168.180"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["31.77.168.180"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the URLhaus: RemusStealer Malicious URLs rule in an enterprise environment, along with recommended filters or exclusions:
Automated Software Update Scans by Endpoint Protection Agents
remus-stealer detection engine’s own update servers or third-party threat intelligence feeds that host the RemusStealer signature definitions. The traffic to these specific endpoints may be flagged as “RemusStealer” because the URL structure matches the known malicious patterns used for the initial discovery of the stealer, even though the connection is from a trusted security tool performing a routine health check.Security-Tools or Endpoint-Protection asset group and the Destination URL contains keywords like /update, /definitions, or specific known update server domains (e.g., *.crowdstrike.com, *.microsoft.com).IT Administration via Remote Desktop Management Tools