Skip to content

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

Siemphony’s repertoire

Login page file written under a portal web root

Siemphony@siemphonymediumT1056.003unverified
AN1321 describes tampering with an IIS, OWA or SharePoint login page, and Sysmon File Creation — which also fires when an existing file is overwritten — is the one log source in this brief that carries both halves of it: the path on `TargetFilename` and the writing process on `Image`, which is what MITRE's ProcessName knob needs. Path alone is not enough here (a write anywhere under a web root is already covered as defacement in T1491.001), so the selection requires a portal or Exchange/SharePoint path *and* a filename that is the authentication page itself. The Linux leg AN1320 was not taken: its auditd source splits the path onto a PATH record and the writing process onto a separate SYSCALL record, so the "correlate the edit with a web shell" half of the analytic cannot be built in one selection. Prerequisite: Sysmon must be installed *and* its FileCreate rules must include the web root — several widely used baseline configurations exclude high-churn web directories, so no matches here can mean the directory is not being watched rather than that nothing was written. UNVERIFIED AS AUTHORED — derived from MITRE ATT&CK DET0480, 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.

DeviceFileEvents| where (((FolderPath contains "\\inetpub\\wwwroot\\" or FolderPath contains "\\ClientAccess\\Owa\\" or FolderPath contains "\\FrontEnd\\HttpProxy\\owa\\" or FolderPath contains "\\Web Server Extensions\\") and (FolderPath endswith "login.aspx" or FolderPath endswith "logon.aspx" or FolderPath endswith "signin.aspx" or FolderPath endswith "default.aspx" or FolderPath endswith "auth.aspx" or FolderPath endswith "login.asp" or FolderPath endswith "login.php" or FolderPath endswith "login.js" or FolderPath endswith "logon.js" or FolderPath endswith "login.html" or FolderPath endswith "login.htm")) and not ((InitiatingProcessFolderPath endswith "\\msdeploy.exe" or InitiatingProcessFolderPath endswith "\\TrustedInstaller.exe" or InitiatingProcessFolderPath endswith "\\TiWorker.exe")))

Splunk · SPL

Run this as a search.

index=* (((TargetFilename="*\\inetpub\\wwwroot\\*" OR TargetFilename="*\\ClientAccess\\Owa\\*" OR TargetFilename="*\\FrontEnd\\HttpProxy\\owa\\*" OR TargetFilename="*\\Web Server Extensions\\*") AND (TargetFilename="*login.aspx" OR TargetFilename="*logon.aspx" OR TargetFilename="*signin.aspx" OR TargetFilename="*default.aspx" OR TargetFilename="*auth.aspx" OR TargetFilename="*login.asp" OR TargetFilename="*login.php" OR TargetFilename="*login.js" OR TargetFilename="*logon.js" OR TargetFilename="*login.html" OR TargetFilename="*login.htm")) AND NOT ((Image="*\\msdeploy.exe" OR Image="*\\TrustedInstaller.exe" OR Image="*\\TiWorker.exe")))

Elastic · ES|QL

Run this as a search.

FROM logs-*| WHERE (((TO_LOWER(file.path) LIKE "*\\\\inetpub\\\\wwwroot\\\\*" OR TO_LOWER(file.path) LIKE "*\\\\clientaccess\\\\owa\\\\*" OR TO_LOWER(file.path) LIKE "*\\\\frontend\\\\httpproxy\\\\owa\\\\*" OR TO_LOWER(file.path) LIKE "*\\\\web server extensions\\\\*") AND (TO_LOWER(file.path) LIKE "*login.aspx" OR TO_LOWER(file.path) LIKE "*logon.aspx" OR TO_LOWER(file.path) LIKE "*signin.aspx" OR TO_LOWER(file.path) LIKE "*default.aspx" OR TO_LOWER(file.path) LIKE "*auth.aspx" OR TO_LOWER(file.path) LIKE "*login.asp" OR TO_LOWER(file.path) LIKE "*login.php" OR TO_LOWER(file.path) LIKE "*login.js" OR TO_LOWER(file.path) LIKE "*logon.js" OR TO_LOWER(file.path) LIKE "*login.html" OR TO_LOWER(file.path) LIKE "*login.htm")) AND NOT ((TO_LOWER(process.executable) LIKE "*\\\\msdeploy.exe" OR TO_LOWER(process.executable) LIKE "*\\\\trustedinstaller.exe" OR TO_LOWER(process.executable) LIKE "*\\\\tiworker.exe")))

Wazuh · XML rule

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

<group name="sigma,windows,file_event,">  <!-- 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="TargetFilename" type="pcre2">(?i)(\\inetpub\\wwwroot\\|\\ClientAccess\\Owa\\|\\FrontEnd\\HttpProxy\\owa\\|\\Web Server Extensions\\)</field>    <field name="TargetFilename" type="pcre2">(?i)(login\.aspx$|logon\.aspx$|signin\.aspx$|default\.aspx$|auth\.aspx$|login\.asp$|login\.php$|login\.js$|logon\.js$|login\.html$|login\.htm$)</field>    <field name="Image" negate="yes" type="pcre2">(?i)(\\msdeploy\.exe$|\\TrustedInstaller\.exe$|\\TiWorker\.exe$)</field>    <description>Login page file written under a portal web root</description>    <mitre>      <id>T1056.003</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.