Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_fsutil_usage.yml
T

38 lines
1.6 KiB
YAML
Raw Normal View History

2020-01-30 17:26:09 +01:00
title: Fsutil Suspicious Invocation
2019-11-12 23:12:27 +01:00
id: add64136-62e5-48ea-807e-88638d02df1e
2022-03-30 11:15:54 +02:00
status: stable
2022-10-28 15:06:36 +02:00
description: |
Detects suspicious parameters of fsutil (deleting USN journal, configuring it with small size, etc).
Might be used by ransomwares during the attack (seen by NotPetya and others).
references:
- https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/fsutil-usn
2022-07-11 17:48:40 +01:00
- https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1070/T1070.md
- https://eqllib.readthedocs.io/en/latest/analytics/c91f422a-5214-4b17-8664-c5fcf115c0a2.html
- https://github.com/albertzsigovits/malware-notes/blob/558898932c1579ff589290092a2c8febefc3a4c9/Ransomware/Lockbit.md
- https://blog.cluster25.duskrise.com/2023/05/22/back-in-black-blackbyte-nt
2022-10-28 15:06:36 +02:00
author: Ecco, E.M. Anhaus, oscd.community
date: 2019-09-26
modified: 2023-09-09
2022-10-28 15:06:36 +02:00
tags:
- attack.defense-evasion
- attack.impact
2022-10-28 15:06:36 +02:00
- attack.t1070
- attack.t1485
logsource:
2022-07-11 17:48:40 +01:00
category: process_creation
product: windows
detection:
2022-07-11 17:48:40 +01:00
selection_img:
- Image|endswith: '\fsutil.exe'
- OriginalFileName: 'fsutil.exe'
selection_cli:
CommandLine|contains:
- 'deletejournal' # usn deletejournal ==> generally ransomware or attacker
- 'createjournal' # usn createjournal ==> can modify config to set it to a tiny size
- 'setZeroData' # file setZeroData ==> empties a file with zeroes
2022-07-11 17:48:40 +01:00
condition: all of selection_*
falsepositives:
2022-07-11 17:48:40 +01:00
- Admin activity
- Scripts and administrative tools used in the monitored environment
2021-11-27 11:33:14 +01:00
level: high