Adding GitHub Actions workflow test for duplicate filenames (#340)

* Adding GitHub Actions workflow test for duplicate filenames

* Adding generic error message

* Deduping fsutil.exe and teams.exe
This commit is contained in:
Wietze
2023-11-08 01:55:24 +00:00
committed by GitHub
parent 5b4d6d604c
commit 80267d91dd
5 changed files with 52 additions and 63 deletions

View File

@@ -1,10 +1,24 @@
---
Name: fsutil.exe
Description: Filesystem management utility
Author: gtworek
Created: 2023-11-04
Name: Fsutil.exe
Description: File System Utility
Author: 'Elliot Killick'
Created: 2021-08-16
Commands:
- Command: 'fsutil trace decode'
- Command: fsutil.exe file setZeroData offset=0 length=9999999999 C:\Windows\Temp\payload.dll
Description: Zero out a file
Usecase: Can be used to forensically erase a file
Category: Tamper
Privileges: User
MitreID: T1485
OperatingSystem: Windows XP, Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10
- Command: 'fsutil.exe usn deletejournal /d c:'
Description: Delete the USN journal volume to hide file creation activity
Usecase: Can be used to hide file creation activity
Category: Tamper
Privileges: User
MitreID: T1485
OperatingSystem: Windows XP, Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10
- Command: fsutil.exe trace decode
Description: Executes a pre-planted binary named netsh.exe from the current directory.
Usecase: Spawn a pre-planted executable from fsutil.exe.
Category: Execute
@@ -13,12 +27,20 @@ Commands:
OperatingSystem: Windows 11
Full_Path:
- Path: C:\Windows\System32\fsutil.exe
- Path: C:\Windows\SysWOW64\fsutil.exe
Detection:
- IOC: fsutil.exe should not be run on a normal workstation
- IOC: file setZeroData (not case-sensitive) in the process arguments
- IOC: Sysmon Event ID 1
- IOC: Execution of process fsutil.exe with trace decode could be suspicious
- IOC: Non-Windows netsh.exe execution
- Sigma: https://github.com/SigmaHQ/sigma/blob/ff5102832031425f6eed011dd3a2e62653008c94/rules/windows/process_creation/proc_creation_win_susp_fsutil_usage.yml
Resources:
- Link: https://twitter.com/0gtweet/status/1720724516324704404
Acknowledgement:
- Person: Elliot Killick
Handle: '@elliotkillick'
- Person: Jimmy
Handle: '@bohops'
- Person: Grzegorz Tworek
Handle: '@0gtweet'