Detect execution of built-in network configuration utilities
MITRE's Windows analytic for this strategy is the execution of the built-in addressing and routing tools, so this rule matches the handful whose only purpose is reporting network configuration — ipconfig, arp, route, nbtstat and getmac — on a single process-creation event. It is deliberately one field: the extra conditions MITRE's knobs point at (ParentProcess chains, UserContext, clustering several enumeration commands inside a TimeWindow) are either correlations Sigma cannot express or environment-specific allowlists, so they are left to tuning instead of being baked in. Two limits to know before deploying: the match is on the image path, so a copy of ipconfig.exe renamed to something innocuous is missed, and netsh- and PowerShell-based enumeration such as Get-NetIPConfiguration is not covered here at all even though the strategy also lists the PowerShell 4103/4104 source. The logic is written in the Sysmon EventID 1 vocabulary the brief names for this category; if the same category is fed from Security 4688 instead, that channel needs Audit Process Creation enabled and its own field mapping first. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0195, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full descriptionShow less
The detection
The 4 SIEM queries below are previews produced by Siemphony’s own translator, not pySigma, and none has been executed against a real backend — review before you deploy.
detection.yml
Sentinel · KQL
Run this as a search.
DeviceProcessEvents| where (FolderPath endswith "\\ipconfig.exe" or FolderPath endswith "\\arp.exe" or FolderPath endswith "\\route.exe" or FolderPath endswith "\\nbtstat.exe" or FolderPath endswith "\\getmac.exe")
Splunk · SPL
Run this as a search.
index=* (Image="*\\ipconfig.exe" OR Image="*\\arp.exe" OR Image="*\\route.exe" OR Image="*\\nbtstat.exe" OR Image="*\\getmac.exe")Elastic · ES|QL
Run this as a search.
FROM logs-*| WHERE (TO_LOWER(process.executable) LIKE "*\\\\ipconfig.exe" OR TO_LOWER(process.executable) LIKE "*\\\\arp.exe" OR TO_LOWER(process.executable) LIKE "*\\\\route.exe" OR TO_LOWER(process.executable) LIKE "*\\\\nbtstat.exe" OR TO_LOWER(process.executable) LIKE "*\\\\getmac.exe")
Wazuh · XML rule
Deploy to your manager — this is a rule, not a search.
<group name="sigma,windows,process_creation,"> <!-- Rule ids must be unique on your manager; 100000+ is the user range. --> <rule id="100000" level="5"> <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. --> <field name="Image" type="pcre2">(?i)(\\ipconfig\.exe$|\\arp\.exe$|\\route\.exe$|\\nbtstat\.exe$|\\getmac\.exe$)</field> <description>Detect execution of built-in network configuration utilities</description> <mitre> <id>T1016</id> </mitre> </rule></group>
Verdicts · reactions · comments
Community
Verdicts from engineers who actually deployed it, and the conversation around it.
Nobody has run this in a real environment and said what happened.
Verdicts from engineers who deployed it
0 castNo verdicts reported yet. The first one is worth more than the tenth — say what you ran it against.
Log in to report a verdict.
Log in to join the discussion.
No comments yet. Someone who deploys this will have something to say about it.