Skip to content

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

Siemphony’s repertoire

Modification of an SSH authorized_keys file

Siemphony@siemphonylowT1098.004unverified
AN0350 asks for writes to ~/.ssh/authorized_keys, sourced from auditd, and optionally correlated with the process that made them inside a TimeWindow. The correlation half is not expressible here — lib/sigma has no timeframe and no join — so this rule takes the file-modification leg on its own and matches the auditd PATH record for any object whose name contains authorized_keys. A contains match rather than an exact one is deliberate: editors and scripted writers rarely touch the file in place, they write authorized_keys.tmp or .authorized_keys.swp and rename it over the original, and OpenSSH still reads authorized_keys2 where a site has kept it, so all of those spellings are the same event. The analytic's other leg, process creation, was not used, because the most common way an adversary adds a key is an in-shell redirection — echo ... >> ~/.ssh/authorized_keys — which is a shell builtin and produces no execve record at all, so a process-creation rule would miss the majority case while looking tighter. The prerequisite matters more than the logic here. auditd emits no PATH record for this file unless a rule tells it to watch it, and auditd watches do not accept wildcards, so covering every user means a syscall rule over the parent directories — something on the order of -a always,exit -F arch=b64 -S open,openat,truncate,rename,renameat -F dir=/home plus explicit watches for /root/.ssh and /etc/ssh — not a single -w line. With no such rule loaded this returns zero rows forever, and zero rows reads as a quiet estate when it actually means the sensor is blind. Use -p wa on watches: with read permission included, every sshd authentication reads the file and this rule matches on every successful login. Finally, the PATH record names the file but not the writer; the uid and exe live in the SYSCALL record of the same event, so attributing a hit to a process depends on the collector keeping those records joined. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0126, not hand-written and not tested by its author. Any lab result is on this rule's own page.Full description

The detection

The 3 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=* (type="PATH" AND name="*authorized_keys*")

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (TO_LOWER(type) == "path" AND TO_LOWER(name) LIKE "*authorized_keys*")

Wazuh · XML rule

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

<group name="sigma,linux,">  <!-- 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 linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^PATH$</field>    <field name="name" type="pcre2">(?i)authorized_keys</field>    <description>Modification of an SSH authorized_keys file</description>    <mitre>      <id>T1098.004</id>    </mitre>  </rule></group>

Sentinel · KQL

Run this as a search.

Sentinel cannot express this construct. No Sentinel table is modelled for this logsource ({"product":"linux","service":"auditd"}), so there is nothing honest to query. Pick a logsource this translator maps, or write the KQL by hand. 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.