← Back to SOC feed Coverage →

ThreatFox: Unidentified VBS 001 IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
iocthreatfoxvbs-unidentified_001
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-08-13T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversary behavior characterized by the presence of six specific indicators of compromise (IOCs) linked to the “Unidentified VBS 001” threat family, which may signal an early-stage intrusion or lateral movement attempt. A SOC team should proactively hunt for these IOCs within Azure Sentinel to rapidly validate potential threats and initiate containment actions before the adversary establishes a deeper foothold in the environment.

IOC Summary

Malware Family: Unidentified VBS 001 Total IOCs: 6 IOC Types: domain, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port27[.]124[.]38[.]42:8383botnet_cc2026-08-1380%
ip:port134[.]122[.]136[.]2:8383botnet_cc2026-08-1390%
domainbbs.baoxissde.onepayload_delivery2026-08-1380%
domainbbs.laokwmsde.artpayload_delivery2026-08-1380%
domainrukeyou.compayload_delivery2026-08-1380%
domainvarzcommunity.abrdns.compayload_delivery2026-08-1380%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unidentified VBS 001
let malicious_ips = dynamic(["27.124.38.42", "134.122.136.2"]);
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(["27.124.38.42", "134.122.136.2"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unidentified VBS 001
let malicious_domains = dynamic(["bbs.baoxissde.one", "bbs.laokwmsde.art", "rukeyou.com", "varzcommunity.abrdns.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

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

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Unidentified VBS 001 IOCs detection rule, including targeted filters and exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/vbs.unidentified_001/