← Back to SOC feed Coverage →

ThreatFox: Jackskid IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
elf-jackskidiocthreatfox
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-07-31T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity linked to the Jackskid threat actor by correlating ten specific Indicators of Compromise (IOCs) within Azure Sentinel logs to identify potential early-stage intrusions. Proactively hunting for these signals is critical because Jackskid’s sophisticated tactics often involve stealthy initial access, requiring immediate detection to prevent lateral movement and data exfiltration before they escalate into a full-blown incident.

IOC Summary

Malware Family: Jackskid Total IOCs: 10 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port5[.]61[.]209[.]44:443botnet_cc2026-07-31100%
ip:port104[.]248[.]189[.]195:443botnet_cc2026-07-31100%
ip:port143[.]198[.]194[.]207:443botnet_cc2026-07-31100%
ip:port201[.]79[.]11[.]32:443botnet_cc2026-07-31100%
ip:port206[.]189[.]39[.]254:443botnet_cc2026-07-31100%
ip:port157[.]245[.]48[.]118:443botnet_cc2026-07-31100%
ip:port172[.]232[.]240[.]110:443botnet_cc2026-07-31100%
ip:port192[.]53[.]122[.]216:443botnet_cc2026-07-31100%
ip:port172[.]233[.]98[.]67:443botnet_cc2026-07-31100%
ip:port172[.]233[.]14[.]93:443botnet_cc2026-07-31100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Jackskid
let malicious_ips = dynamic(["157.245.48.118", "206.189.39.254", "172.233.98.67", "104.248.189.195", "172.233.14.93", "5.61.209.44", "172.232.240.110", "192.53.122.216", "201.79.11.32", "143.198.194.207"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["157.245.48.118", "206.189.39.254", "172.233.98.67", "104.248.189.195", "172.233.14.93", "5.61.209.44", "172.232.240.110", "192.53.122.216", "201.79.11.32", "143.198.194.207"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Jackskid IOCs detection rule, along with recommended filters or exclusions tailored to an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/elf.jackskid/