T1222 Improvements and Cleanup (#949)

Co-authored-by: Carrie Roberts <clr2of8@gmail.com>
This commit is contained in:
Andrew Beers
2020-04-22 11:27:11 -05:00
committed by GitHub
parent 35f45ec0ec
commit 5dc114511d
+48 -93
View File
@@ -5,7 +5,8 @@ display_name: File Permissions Modification
atomic_tests:
- name: Take ownership using takeown utility
description: |
Modifies the filesystem permissions of the specified file or folder to take ownership of the object.
Modifies the filesystem permissions of the specified file or folder to take ownership of the object. Upon execution, "SUCCESS" will
be displayed for the folder and each file inside of it.
supported_platforms:
- windows
@@ -14,56 +15,29 @@ atomic_tests:
file_folder_to_own:
description: Path of the file or folder for takeown to take ownership.
type: path
default: PathToAtomicsFolder\T1222\T1222.yaml
default: "%temp%\\T1222_takeown_folder"
dependency_executor_name: command_prompt
dependencies:
- description: |
Test requrires a file to take ownership of to be located at (#{file_folder_to_own})
prereq_command: |
IF EXIST #{file_folder_to_own} ( EXIT 0 ) ELSE ( EXIT 1 )
get_prereq_command: |
mkdir #{file_folder_to_own}
echo T1222_takeown1 >> #{file_folder_to_own}\T1222_takeown1.txt
echo T1222_takeown2 >> #{file_folder_to_own}\T1222_takeown2.txt
executor:
name: command_prompt
command: |
takeown.exe /f #{file_folder_to_own}
- name: Take ownership recursively using takeown utility
description: |
Modifies the filesystem permissions of the specified folder to take ownership of it and its contents.
supported_platforms:
- windows
input_arguments:
folder_to_own:
description: Path of the folder for takeown to take ownership.
type: path
default: PathToAtomicsFolder\T1222
executor:
name: command_prompt
command: |
takeown.exe /f #{folder_to_own} /r
- name: cacls - Grant permission to specified user or group
description: |
Modifies the filesystem permissions of the specified file or folder to allow the specified user or group Full Control.
supported_platforms:
- windows
input_arguments:
file_or_folder:
description: Path of the file or folder to change permissions.
type: path
default: PathToAtomicsFolder\T1222\T1222.yaml
user_or_group:
description: User or group to allow full control
type: string
default: Everyone
executor:
name: command_prompt
command: |
cacls.exe #{file_or_folder} /grant #{user_or_group}:F
takeown.exe /f #{file_folder_to_own} /r
- name: cacls - Grant permission to specified user or group recursively
description: |
Modifies the filesystem permissions of the specified folder and contents to allow the specified user or group Full Control.
Modifies the filesystem permissions of the specified folder and contents to allow the specified user or group Full Control. If "Access is denied"
is displayed it may be because the file or folder doesn't exit. Run the prereq command to create it. Upon successfull execution, "Successfully processed 3 files"
will be displayed.
supported_platforms:
- windows
@@ -72,64 +46,32 @@ atomic_tests:
file_or_folder:
description: Path of the file or folder to change permissions.
type: path
default: PathToAtomicsFolder\T1222
default: "%temp%\\T1222_cacls"
user_or_group:
description: User or group to allow full control
type: string
default: Everyone
dependency_executor_name: command_prompt
dependencies:
- description: |
Test requrires a file to modifyto be located at (#{file_or_folder})
prereq_command: |
IF EXIST #{file_or_folder} ( EXIT 0 ) ELSE ( EXIT 1 )
get_prereq_command: |
mkdir #{file_or_folder}
echo T1222_cacls1 >> #{file_or_folder}\T1222_cacls1.txt
echo T1222_cacls2 >> #{file_or_folder}\T1222_cacls2.txt
executor:
name: command_prompt
command: |
cacls.exe #{file_or_folder} /grant #{user_or_group}:F /t
- name: icacls - Grant permission to specified user or group
description: |
Modifies the filesystem permissions of the specified file or folder to allow the specified user or group Full Control.
supported_platforms:
- windows
input_arguments:
file_or_folder:
description: Path of the file or folder to change permissions.
type: path
default: PathToAtomicsFolder\T1222\T1222.yaml
user_or_group:
description: User or group to allow full control
type: string
default: Everyone
executor:
name: command_prompt
command: |
icacls.exe #{file_or_folder} /grant #{user_or_group}:F
- name: icacls - Grant permission to specified user or group recursively
description: |
Modifies the filesystem permissions of the specified folder and contents to allow the specified user or group Full Control.
supported_platforms:
- windows
input_arguments:
file_or_folder:
description: Path of the file or folder to change permissions.
type: path
default: PathToAtomicsFolder\T1222
user_or_group:
description: User or group to allow full control
type: string
default: Everyone
executor:
name: command_prompt
command: |
icacls.exe #{file_or_folder} /grant #{user_or_group}:F /t
Icacls.exe #{file_or_folder} /grant #{user_or_group}:F
- name: attrib - Remove read-only attribute
description: |
Removes the read-only attribute from a file or folder using the attrib.exe command.
Removes the read-only attribute from a file or folder using the attrib.exe command. Upon execution, no output will be displayed.
Open the file in File Explorer > Right Click - Prperties and observe that the Read Only checkbox is empty.
supported_platforms:
- windows
@@ -138,12 +80,25 @@ atomic_tests:
file_or_folder:
description: Path of the file or folder remove attribute.
type: path
default: PathToAtomicsFolder\T1222
default: "%temp%\\T1222_attrib"
dependency_executor_name: command_prompt
dependencies:
- description: |
Test requrires a file to modify to be located at (#{file_or_folder})
prereq_command: |
IF EXIST #{file_or_folder} ( EXIT 0 ) ELSE ( EXIT 1 )
get_prereq_command: |
mkdir #{file_or_folder}
echo T1222_attrib1 >> #{file_or_folder}\T1222_attrib1.txt
echo T1222_attrib2 >> #{file_or_folder}\T1222_attrib2.txt
attrib.exe +r #{file_or_folder}\T1222_attrib1.txt
attrib.exe +r #{file_or_folder}\T1222_attrib2.txt
executor:
name: command_prompt
command: |
attrib.exe -r #{file_or_folder}
attrib.exe -r #{file_or_folder}\*.* /s
- name: chmod - Change file or folder mode (numeric mode)
description: |