← Back to SOC feed Coverage →

ThreatFox: MacSync IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEventsUrlClickEvents
iocosx-macsyncthreatfox
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 ThreatFox →
Retrieved: 2026-09-22T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of MacSync backdoor indicators, which facilitate remote command execution and data exfiltration through compromised domains and stolen credentials. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify early-stage infections and lateral movement attempts before the adversary establishes persistent access or exfiltrates sensitive data.

IOC Summary

Malware Family: MacSync Total IOCs: 6 IOC Types: domain, sha256_hash, url

TypeValueThreat TypeFirst SeenConfidence
domainyoauction.compayload_delivery2026-09-22100%
domainzanderrealestate.compayload_delivery2026-09-22100%
urlhxxps://zanderrealestate.com/curl/85cb26206d920216eee0c5f67e8de516b4d55bd1752025bb3c08a069a44fdbdfpayload_delivery2026-09-22100%
sha256_hashfbc460f7b29d7e709c28fc9368a592f3140fdb51fff5de54471450e250b6345apayload2026-09-22100%
urlhxxps://yoauction.com/curl/b42a0ed9d1ecb72e42d6034502c304845d98805481d99cea4e259359f9ab206epayload_delivery2026-09-22100%
sha256_hash25ce426b8b075dee1d250a417423b60d55c572a8b38641d919d87b83c4ea6eddpayload2026-09-22100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - MacSync
let malicious_domains = dynamic(["yoauction.com", "zanderrealestate.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - MacSync
let malicious_urls = dynamic(["https://zanderrealestate.com/curl/85cb26206d920216eee0c5f67e8de516b4d55bd1752025bb3c08a069a44fdbdf", "https://yoauction.com/curl/b42a0ed9d1ecb72e42d6034502c304845d98805481d99cea4e259359f9ab206e"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - MacSync
let malicious_hashes = dynamic(["fbc460f7b29d7e709c28fc9368a592f3140fdb51fff5de54471450e250b6345a", "25ce426b8b075dee1d250a417423b60d55c572a8b38641d919d87b83c4ea6edd"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/osx.macsync/