Skip to content

Siemphony is in beta and still being built. How a rule earns its badge.

Siemphony’s repertoire

Non-browser process opening outbound TLS to an external host

Siemphony@siemphonymediumT1048.002unverified
Flags outbound TLS/HTTPS connections initiated by transfer utilities, scripting hosts and LOLBins rather than by a browser or mail client, which is the network leg of MITRE's AN1413 chain. The analytic's real observable is a correlation — a staging or compression event followed within TimeWindow by the encrypted connection — and Sigma has no construct for that, so only the encrypted-egress precursor is expressed here and the staging leg has to be added by the analyst. `Initiated` pins the event to a connection this host made, and the destination ports are the common TLS listeners, so the rule stays inside the fields Sysmon EventID 3 actually carries instead of faking certificate context it does not have. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0512, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full description

The detection

The 2 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

Splunk · SPL

Run this as a search.

index=* ((Image="*\\curl.exe" OR Image="*\\wget.exe" OR Image="*\\certutil.exe" OR Image="*\\powershell.exe" OR Image="*\\pwsh.exe" OR Image="*\\cscript.exe" OR Image="*\\wscript.exe" OR Image="*\\mshta.exe" OR Image="*\\rundll32.exe" OR Image="*\\regsvr32.exe" OR Image="*\\python.exe" OR Image="*\\pythonw.exe" OR Image="*\\winscp.exe" OR Image="*\\rclone.exe") AND (Initiated="true" AND (DestinationPort="443" OR DestinationPort="8443" OR DestinationPort="9443")))

Wazuh · XML rule

Deploy to your manager — this is a rule, not a search.

<group name="sigma,windows,network_connection,">  <!-- Rule ids must be unique on your manager; 100000+ is the user range. -->  <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)(\\curl\.exe$|\\wget\.exe$|\\certutil\.exe$|\\powershell\.exe$|\\pwsh\.exe$|\\cscript\.exe$|\\wscript\.exe$|\\mshta\.exe$|\\rundll32\.exe$|\\regsvr32\.exe$|\\python\.exe$|\\pythonw\.exe$|\\winscp\.exe$|\\rclone\.exe$)</field>    <field name="Initiated" type="pcre2">(?i)^true$</field>    <field name="DestinationPort" type="pcre2">(?i)(^443$|^8443$|^9443$)</field>    <description>Non-browser process opening outbound TLS to an external host</description>    <mitre>      <id>T1048.002</id>    </mitre>  </rule></group>

Sentinel · KQL

Run this as a search.

Sentinel cannot express this construct. `Initiated` has no Sentinel column: Defender expresses connection direction in `ActionType`, not as a boolean column, so `Initiated` cannot be renamed — it needs a different predicate. The Sigma source is on the first tab, unchanged.

Elastic · ES|QL

Run this as a search.

Elastic cannot express this construct. `Initiated` has no ECS field: ECS expresses connection direction as `network.direction` with values like `egress`, not as a boolean, so `Initiated` needs a different predicate rather than a rename. The Sigma source is on the first tab, unchanged.

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.