Skip to content

Siemphony is in beta and still being built. What ships today, and what does not.

Siemphony’s repertoire

Internet reachability probe against a public test endpoint

Siemphony@siemphonylowT1016.001unverified
Matches AN1015's Windows shape: one of the built-in reachability utilities (ping, tracert, pathping, curl) or the PowerShell Test-NetConnection / Test-Connection cmdlets invoked with a destination that only exists to prove the host can reach the Internet. Both halves are required, because the utility on its own is ordinary internal troubleshooting and the destination string on its own appears in any script that mentions a public site — it is the pairing that says "confirm this box can talk to the outside world", which is the discovery step MITRE describes before a C2 attempt. The destination list is MITRE's DestinationIP knob, populated here with the public resolvers, the Microsoft NCSI endpoints and the what-is-my-IP services an operator typically reaches for; an adversary who probes their own domain instead matches nothing, so the list is the first thing to extend per environment. Two limits are structural rather than tunable. Bare `Test-NetConnection` with no argument tests internetbeacon.msedge.net implicitly and carries no destination on the command line, so it is invisible here; and commands typed into an already-running interactive console never reach a process-creation event at all. The brief's Security 5156/5157 log source was not used: the Filtering Platform records a socket, not a command line or a hostname, so every outbound connection on the estate looks identical to a connectivity test there. This rule is written in the Sysmon EventID 1 vocabulary (Image, CommandLine); where the same category is fed by Security EventID 4688 instead, that channel needs *Audit Process Creation* and the separate *Include command line in process creation events* policy before CommandLine is populated at all, and a field mapping to NewProcessName first. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0357, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full description

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 "\\ping.exe" or FolderPath endswith "\\tracert.exe" or FolderPath endswith "\\pathping.exe" or FolderPath endswith "\\curl.exe") or ((FolderPath endswith "\\powershell.exe" or FolderPath endswith "\\pwsh.exe") and (ProcessCommandLine contains "Test-NetConnection" or ProcessCommandLine contains "Test-Connection"))) and (ProcessCommandLine contains "8.8.8.8" or ProcessCommandLine contains "8.8.4.4" or ProcessCommandLine contains "1.1.1.1" or ProcessCommandLine contains "9.9.9.9" or ProcessCommandLine contains "208.67.222.222" or ProcessCommandLine contains "google.com" or ProcessCommandLine contains "example.com" or ProcessCommandLine contains "msftconnecttest.com" or ProcessCommandLine contains "msftncsi.com" or ProcessCommandLine contains "icanhazip.com" or ProcessCommandLine contains "ifconfig.me" or ProcessCommandLine contains "ipinfo.io" or ProcessCommandLine contains "api.ipify.org" or ProcessCommandLine contains "checkip.amazonaws.com"))

Splunk · SPL

Run this as a search.

index=* (((Image="*\\ping.exe" OR Image="*\\tracert.exe" OR Image="*\\pathping.exe" OR Image="*\\curl.exe") OR ((Image="*\\powershell.exe" OR Image="*\\pwsh.exe") AND (CommandLine="*Test-NetConnection*" OR CommandLine="*Test-Connection*"))) AND (CommandLine="*8.8.8.8*" OR CommandLine="*8.8.4.4*" OR CommandLine="*1.1.1.1*" OR CommandLine="*9.9.9.9*" OR CommandLine="*208.67.222.222*" OR CommandLine="*google.com*" OR CommandLine="*example.com*" OR CommandLine="*msftconnecttest.com*" OR CommandLine="*msftncsi.com*" OR CommandLine="*icanhazip.com*" OR CommandLine="*ifconfig.me*" OR CommandLine="*ipinfo.io*" OR CommandLine="*api.ipify.org*" OR CommandLine="*checkip.amazonaws.com*"))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (((TO_LOWER(process.executable) LIKE "*\\\\ping.exe" OR TO_LOWER(process.executable) LIKE "*\\\\tracert.exe" OR TO_LOWER(process.executable) LIKE "*\\\\pathping.exe" OR TO_LOWER(process.executable) LIKE "*\\\\curl.exe") OR ((TO_LOWER(process.executable) LIKE "*\\\\powershell.exe" OR TO_LOWER(process.executable) LIKE "*\\\\pwsh.exe") AND (TO_LOWER(process.command_line) LIKE "*test-netconnection*" OR TO_LOWER(process.command_line) LIKE "*test-connection*"))) AND (TO_LOWER(process.command_line) LIKE "*8.8.8.8*" OR TO_LOWER(process.command_line) LIKE "*8.8.4.4*" OR TO_LOWER(process.command_line) LIKE "*1.1.1.1*" OR TO_LOWER(process.command_line) LIKE "*9.9.9.9*" OR TO_LOWER(process.command_line) LIKE "*208.67.222.222*" OR TO_LOWER(process.command_line) LIKE "*google.com*" OR TO_LOWER(process.command_line) LIKE "*example.com*" OR TO_LOWER(process.command_line) LIKE "*msftconnecttest.com*" OR TO_LOWER(process.command_line) LIKE "*msftncsi.com*" OR TO_LOWER(process.command_line) LIKE "*icanhazip.com*" OR TO_LOWER(process.command_line) LIKE "*ifconfig.me*" OR TO_LOWER(process.command_line) LIKE "*ipinfo.io*" OR TO_LOWER(process.command_line) LIKE "*api.ipify.org*" OR TO_LOWER(process.command_line) LIKE "*checkip.amazonaws.com*"))

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. -->  <!-- 2 rules: the Sigma condition ORs across different fields,       which one rule cannot express. Any one matching is a hit. -->  <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)(\\ping\.exe$|\\tracert\.exe$|\\pathping\.exe$|\\curl\.exe$)</field>    <field name="CommandLine" type="pcre2">(?i)(8\.8\.8\.8|8\.8\.4\.4|1\.1\.1\.1|9\.9\.9\.9|208\.67\.222\.222|google\.com|example\.com|msftconnecttest\.com|msftncsi\.com|icanhazip\.com|ifconfig\.me|ipinfo\.io|api\.ipify\.org|checkip\.amazonaws\.com)</field>    <description>Internet reachability probe against a public test endpoint (1/2)</description>    <mitre>      <id>T1016.001</id>    </mitre>  </rule>   <rule id="100001" level="5">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="Image" type="pcre2">(?i)(\\powershell\.exe$|\\pwsh\.exe$)</field>    <field name="CommandLine" type="pcre2">(?i)(Test-NetConnection|Test-Connection)</field>    <field name="CommandLine" type="pcre2">(?i)(8\.8\.8\.8|8\.8\.4\.4|1\.1\.1\.1|9\.9\.9\.9|208\.67\.222\.222|google\.com|example\.com|msftconnecttest\.com|msftncsi\.com|icanhazip\.com|ifconfig\.me|ipinfo\.io|api\.ipify\.org|checkip\.amazonaws\.com)</field>    <description>Internet reachability probe against a public test endpoint (2/2)</description>    <mitre>      <id>T1016.001</id>    </mitre>  </rule></group>

Verdicts · reactions · comments

Community

Verdicts from engineers who actually deployed it, and the conversation around it.

Log in to react
Not yet reported on

Nobody has run this in a real environment and said what happened.

Verdicts from engineers who deployed it

0 cast

No 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.