Skip to content

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

Siemphony’s repertoire

Loop device created or file loop-mounted as a filesystem

Siemphony@siemphonylowT1564.005unverified
Matches the Linux leg of AN1272: an EXECVE record for `losetup`, or for `mount` carrying a `loop` option, either of which is the concrete mechanism behind the technique's core claim — a filesystem stored inside a regular file rather than a disk partition, so that standard file-system tools never see it as a volume. `losetup` is matched on its own because attaching a file to a loop device is itself the act of creating that abstraction, independent of what happens to the device afterward; `mount` is only matched when one of its next five arguments contains the string `loop`, since a bare `mount` call covers every ordinary bind mount, tmpfs and device mount on the system and would swamp the rule with unrelated noise. Argument position is not fixed — `-o loop`, `-o loop,ro` and `--options=loop` can each land in a different argv slot depending on what else is on the command line — so the five-argument OR mirrors the a1-a4 pattern already used for T1499.001 rather than pinning one position. This rule cannot tell a hidden VFS from an entirely ordinary use of the same two commands: nothing in an EXECVE record carries where the resulting mount point sits, whether it was subsequently unmounted and its backing file deleted, or whether the file itself lives in a location a user would call hidden, so the loudest false positives below are not edge cases, they are the majority of what this rule returns on a typical Linux estate. The Windows analytic (AN1271) and macOS analytic (AN1273) in this technique's brief are not used here: AN1271 asks for "suspicious disk I/O patterns" and "bootkit-like behavior", neither of which names a field on Sysmon EventID 13/14 or Security 4663/4670/4656, and its own MonitoredRegistryKeys knob has no MITRE-supplied values to populate it with; AN1273's {product: macos, service: unifiedlog} source has no established field vocabulary anywhere in this corpus. Prerequisite: raw auditd does not record execve by default, so this returns zero rows until a rule such as `-a always,exit -F arch=b64 -S execve -k exec` is loaded, and zero rows reads as quiet when it actually means blind. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0461, 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="EXECVE" AND a0="*losetup") OR ((type="EXECVE" AND (a0="mount" OR a0="/bin/mount" OR a0="/usr/bin/mount")) AND (a1="*loop*" OR a2="*loop*" OR a3="*loop*" OR a4="*loop*" OR a5="*loop*")))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE ((TO_LOWER(type) == "execve" AND TO_LOWER(a0) LIKE "*losetup") OR ((TO_LOWER(type) == "execve" AND (TO_LOWER(a0) == "mount" OR TO_LOWER(a0) == "/bin/mount" OR TO_LOWER(a0) == "/usr/bin/mount")) AND (TO_LOWER(a1) LIKE "*loop*" OR TO_LOWER(a2) LIKE "*loop*" OR TO_LOWER(a3) LIKE "*loop*" OR TO_LOWER(a4) LIKE "*loop*" OR TO_LOWER(a5) LIKE "*loop*")))

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. -->  <!-- 6 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 linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^EXECVE$</field>    <field name="a0" type="pcre2">(?i)losetup$</field>    <description>Loop device created or file loop-mounted as a filesystem (1/6)</description>    <mitre>      <id>T1564.005</id>    </mitre>  </rule>   <rule id="100001" level="5">    <!-- Set <if_sid> to the decoder/base rule for linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^EXECVE$</field>    <field name="a0" type="pcre2">(?i)(^mount$|^/bin/mount$|^/usr/bin/mount$)</field>    <field name="a1" type="pcre2">(?i)loop</field>    <description>Loop device created or file loop-mounted as a filesystem (2/6)</description>    <mitre>      <id>T1564.005</id>    </mitre>  </rule>   <rule id="100002" level="5">    <!-- Set <if_sid> to the decoder/base rule for linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^EXECVE$</field>    <field name="a0" type="pcre2">(?i)(^mount$|^/bin/mount$|^/usr/bin/mount$)</field>    <field name="a2" type="pcre2">(?i)loop</field>    <description>Loop device created or file loop-mounted as a filesystem (3/6)</description>    <mitre>      <id>T1564.005</id>    </mitre>  </rule>   <rule id="100003" level="5">    <!-- Set <if_sid> to the decoder/base rule for linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^EXECVE$</field>    <field name="a0" type="pcre2">(?i)(^mount$|^/bin/mount$|^/usr/bin/mount$)</field>    <field name="a3" type="pcre2">(?i)loop</field>    <description>Loop device created or file loop-mounted as a filesystem (4/6)</description>    <mitre>      <id>T1564.005</id>    </mitre>  </rule>   <rule id="100004" level="5">    <!-- Set <if_sid> to the decoder/base rule for linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^EXECVE$</field>    <field name="a0" type="pcre2">(?i)(^mount$|^/bin/mount$|^/usr/bin/mount$)</field>    <field name="a4" type="pcre2">(?i)loop</field>    <description>Loop device created or file loop-mounted as a filesystem (5/6)</description>    <mitre>      <id>T1564.005</id>    </mitre>  </rule>   <rule id="100005" level="5">    <!-- Set <if_sid> to the decoder/base rule for linux so this only evaluates relevant events. -->    <field name="type" type="pcre2">(?i)^EXECVE$</field>    <field name="a0" type="pcre2">(?i)(^mount$|^/bin/mount$|^/usr/bin/mount$)</field>    <field name="a5" type="pcre2">(?i)loop</field>    <description>Loop device created or file loop-mounted as a filesystem (6/6)</description>    <mitre>      <id>T1564.005</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.