Add commands' source

This commit is contained in:
Shreya 2020-08-20 19:20:36 +05:30
parent 1f82dab6f5
commit e8f72f5cd5
2 changed files with 6 additions and 0 deletions

View File

@ -9,3 +9,6 @@ def get_linux_timestomping_commands():
f'cat {TEMP_FILE} ; ' f'cat {TEMP_FILE} ; '
f'rm {TEMP_FILE} -f' f'rm {TEMP_FILE} -f'
] ]
# Commands' source: https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1070.006/T1070.006.md

View File

@ -3,3 +3,6 @@ TEMP_FILE = 'monkey-timestomping-file.txt'
def get_windows_timestomping_commands(): def get_windows_timestomping_commands():
return 'powershell.exe infection_monkey/post_breach/timestomping/windows/timestomping.ps1' return 'powershell.exe infection_monkey/post_breach/timestomping/windows/timestomping.ps1'
# Commands' source: https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1070.006/T1070.006.md