Skip to content

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

Siemphony’s repertoire

Windows denial-of-service stress tool launched

Siemphony@siemphonymediumT1498unverified
AN1434's Windows leg is "an executable or script generating large outbound network traffic," which needs a packets-per-second aggregation MITRE's own ThresholdEventVolume and DestinationDiversity knobs name and Sigma cannot compute — no `| count() by`, no timeframe. What a single Sysmon EventID 1 event can carry instead is the launch of a tool whose only purpose is generating that traffic: the Windows GUI flood clients (LOIC, HOIC, XOIC) descended from the Low Orbit Ion Cannon family, and the Python HTTP/slow-read flood scripts (GoldenEye, Slowloris, Hulk) run through python.exe. This is deliberately a different tool set from the published T1498.001 rule, which matches Linux packet-crafting binaries (hping3, nping, t50, mausezahn) and `ping -f`: that rule's tools are raw-socket generators with everyday diagnostic uses on Linux, these are single-purpose attack clients with no Windows administrative role, which is also why this rule can sit at a comparable severity despite matching on presence alone. As with the Linux rule, a match means only that a flood-capable tool was started, never that outbound volume became abnormal, and a compiled dropper or a hand-rolled socket loop that doesn't match one of these names produces no event here at all. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0518, 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 "\\loic.exe" or FolderPath endswith "\\hoic.exe" or FolderPath endswith "\\hoic2.exe" or FolderPath endswith "\\xoic.exe") or ((FolderPath endswith "\\python.exe" or FolderPath endswith "\\pythonw.exe") and (ProcessCommandLine contains "goldeneye.py" or ProcessCommandLine contains "slowloris.py" or ProcessCommandLine contains "hulk.py")))

Splunk · SPL

Run this as a search.

index=* ((Image="*\\loic.exe" OR Image="*\\hoic.exe" OR Image="*\\hoic2.exe" OR Image="*\\xoic.exe") OR ((Image="*\\python.exe" OR Image="*\\pythonw.exe") AND (CommandLine="*goldeneye.py*" OR CommandLine="*slowloris.py*" OR CommandLine="*hulk.py*")))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(process.executable) LIKE "*\\\\loic.exe" OR TO_LOWER(process.executable) LIKE "*\\\\hoic.exe" OR TO_LOWER(process.executable) LIKE "*\\\\hoic2.exe" OR TO_LOWER(process.executable) LIKE "*\\\\xoic.exe") OR ((TO_LOWER(process.executable) LIKE "*\\\\python.exe" OR TO_LOWER(process.executable) LIKE "*\\\\pythonw.exe") AND (TO_LOWER(process.command_line) LIKE "*goldeneye.py*" OR TO_LOWER(process.command_line) LIKE "*slowloris.py*" OR TO_LOWER(process.command_line) LIKE "*hulk.py*")))

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="7">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="Image" type="pcre2">(?i)(\\loic\.exe$|\\hoic\.exe$|\\hoic2\.exe$|\\xoic\.exe$)</field>    <description>Windows denial-of-service stress tool launched (1/2)</description>    <mitre>      <id>T1498</id>    </mitre>  </rule>   <rule id="100001" level="7">    <!-- Set <if_sid> to the decoder/base rule for windows so this only evaluates relevant events. -->    <field name="Image" type="pcre2">(?i)(\\python\.exe$|\\pythonw\.exe$)</field>    <field name="CommandLine" type="pcre2">(?i)(goldeneye\.py|slowloris\.py|hulk\.py)</field>    <description>Windows denial-of-service stress tool launched (2/2)</description>    <mitre>      <id>T1498</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.