This hunt detects adversary behavior involving the deployment of SVCStealer malware by monitoring for specific indicators of compromise known to steal credentials and sensitive data from Windows services. A SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify early-stage infections and prevent lateral movement before attackers can exfiltrate critical assets.
Malware Family: SVCStealer Total IOCs: 3 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://196[.]251[.]107[.]186/acovp/post.php | botnet_cc | 2026-07-22 | 75% |
| url | hxxp://196[.]251[.]107[.]163/bioxp/post.php | botnet_cc | 2026-07-22 | 75% |
| url | hxxp://192[.]162[.]199[.]186/usovp/post.php | botnet_cc | 2026-07-22 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - SVCStealer
let malicious_urls = dynamic(["http://196.251.107.186/acovp/post.php", "http://196.251.107.163/bioxp/post.php", "http://192.162.199.186/usovp/post.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: SVCStealer IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Enterprise Backup Agent Scanning Service Files
.exe, .dll) within the C:\Windows\System32 directory to ensure they are included in backup sets. The SVCStealer rule often flags these enumeration actions as suspicious because the malware targets service executables for credential theft.VeeamService.exe, rubriksvc.exe) when accessing paths under C:\Windows\System32. Additionally, filter out events where the parent process is a known backup scheduler service.Scenario: Scheduled Inventory and Patch Management Jobs
ccmexec.exe (SCCM) or qualyspc.exe. Filter events occurring during defined maintenance windows (e.g., 01:00–04:00 UTC) where these inventory scans are known to run.Scenario: IT Admin Performing Manual Service Audits via PowerShell