-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create T1222.yaml * Update T1070.004.yaml Added clear of recycle bin using rd * Update T1057.yaml added taskmgr.exe based process viewing * Update T1012.yaml Added SIL status lookup via registry * Update T1057.yaml Fixed up the name ,description for Taskmgr.exe test * Update T1057.yaml Fixed the UUID
- Loading branch information
1 parent
8366cf4
commit 03d7d6b
Showing
4 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
attack_technique: T1222 | ||
display_name: 'File and Directory Permissions Modification' | ||
atomic_tests: | ||
- name: Enable Local and Remote Symbolic Links via fsutil | ||
auto_generated_guid: 6c4ac96f-d4fa-44f4-83ca-56d8f4a55c02 | ||
description: | | ||
Use fsutil to enable both ‘remote to local’ and ‘remote to remote’ symbolic links. This allows access to files from local shortcuts with local or remote paths. | ||
[reference](https://symantec-enterprise-blogs.security.com/threat-intelligence/noberus-blackcat-alphv-rust-ransomware/) | ||
supported_platforms: | ||
- windows | ||
executor: | ||
command: | | ||
fsutil behavior set SymlinkEvaluation R2L:1 | ||
fsutil behavior set SymlinkEvaluation R2R:1 | ||
cleanup_command: | | ||
fsutil behavior set SymlinkEvaluation R2L:0 | ||
fsutil behavior set SymlinkEvaluation R2R:0 | ||
name: command_prompt | ||
elevation_required: true |