← Back to SOC feed Coverage →

URLhaus: MassLogger Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-09-14T23:00:00Z · Confidence: medium

Hunt Hypothesis

This hypothesis targets adversary data exfiltration activities where MassLogger malware, often delivered via phishing or compromised domains, steals credentials and sensitive information from infected systems. Proactively hunting for these malicious URLs in Azure Sentinel is critical to identify compromised endpoints early and prevent the silent exfiltration of high-value assets before they are transmitted to attacker-controlled infrastructure.

IOC Summary

Threat: MassLogger Total URLs: 2 Active URLs: 0

URLStatusThreatDate Added
hxxps://images.fishing-tools.cyou/img_053153.pngofflinemalware_download2026-09-14
hxxps://images.fishing-tools.cyou/img_072414.pngofflinemalware_download2026-09-14

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: MassLogger
let malicious_domains = dynamic(["images.fishing-tools.cyou"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["images.fishing-tools.cyou"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://urlhaus.abuse.ch/