Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some "TargetFilename" in "SYSMON EVENT ID 15" section #164

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion sysmonconfig-export.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
<Image condition="image">net1.exe</Image> <!--Windows: Launched by "net.exe", but it may not detect connections either -->
<Image condition="image">notepad.exe</Image> <!--Windows: [ https://secrary.com/ReversingMalware/CoinMiner/ ] [ https://blog.cobaltstrike.com/2013/08/08/why-is-notepad-exe-connecting-to-the-internet/ ] -->
<Image condition="image">nslookup.exe</Image> <!--Windows: Retrieve data over DNS -->
<Image condition="image">powershell.exe</Image> <!--Windows: PowerShell interface-->
<Image condition="image">powershell.exe</Image> <!--Windows: PowerShell interface-->
<Image condition="image">powershell_ise.exe</Image> <!--Windows: PowerShell interface-->
<Image condition="image">qprocess.exe</Image> <!--Windows: [ https://www.first.org/resources/papers/conf2017/APT-Log-Analysis-Tracking-Attack-Tools-by-Audit-Policy-and-Sysmon.pdf ] -->
<Image condition="image">qwinsta.exe</Image> <!--Windows: Query remote sessions | Credit @ion-storm -->
Expand Down Expand Up @@ -827,6 +827,17 @@
<TargetFilename condition="end with">.vbs</TargetFilename> <!--VisualBasicScripting files-->
<TargetFilename condition="end with">.wsc</TargetFilename> <!--Scripting | Credit @bartblaze -->
<TargetFilename condition="end with">.wsf</TargetFilename> <!--Scripting | Credit @bartblaze -->
<TargetFilename condition="end with">.docm</TargetFilename> <!--Office Word potentially with macro -->
<TargetFilename condition="end with">.docx</TargetFilename> <!--Office Word potentially with macro -->
<TargetFilename condition="end with">.xls</TargetFilename> <!--Office Excel potentially with macro -->
<TargetFilename condition="end with">.xlsm</TargetFilename> <!--Office Excel potentially with macro -->
<TargetFilename condition="end with">.xlsx</TargetFilename> <!--Office Excel potentially with macro -->
<TargetFilename condition="end with">.pptm</TargetFilename> <!--Office PowerPoint potentially with macro -->
<TargetFilename condition="end with">.pptx</TargetFilename> <!--Office PowerPoint potentially with macro -->
<TargetFilename condition="end with">.rtf</TargetFilename> <!--RTF file potentially with exploitation -->
<TargetFilename condition="end with">.pdf</TargetFilename> <!--PDF file potentially with exploitation -->
<TargetFilename condition="end with">.zip</TargetFilename> <!--ZIP file potentially with delivering malicious files -->
<TargetFilename condition="end with">.7z</TargetFilename> <!--7-ZIP file potentially with delivering malicious files -->
</FileCreateStreamHash>

<RuleGroup name="" groupRelation="or">
Expand Down