Generated docs from job=generate-docs branch=master [ci skip]

This commit is contained in:
Atomic Red Team doc generator
2022-09-07 02:41:41 +00:00
parent 88e14a91a1
commit d1629ab283
2 changed files with 0 additions and 21 deletions
-9
View File
@@ -7921,9 +7921,6 @@ defense-evasion:
command: 'Get-ChildItem #{file_path} | % { $_.CreationTime = "#{target_date_time}"
}
'
cleanup_command: 'Remove-Item #{file_path} -Force -ErrorAction Ignore
'
name: powershell
- name: Windows - Modify file last modified timestamp with PowerShell
@@ -7958,9 +7955,6 @@ defense-evasion:
command: 'Get-ChildItem #{file_path} | % { $_.LastWriteTime = "#{target_date_time}"
}
'
cleanup_command: 'Remove-Item #{file_path} -Force -ErrorAction Ignore
'
name: powershell
- name: Windows - Modify file last access timestamp with PowerShell
@@ -7995,9 +7989,6 @@ defense-evasion:
command: 'Get-ChildItem #{file_path} | % { $_.LastAccessTime = "#{target_date_time}"
}
'
cleanup_command: 'Remove-Item #{file_path} -Force -ErrorAction Ignore
'
name: powershell
- name: Windows - Timestomp a File
-12
View File
@@ -194,10 +194,6 @@ To verify execution, use File Explorer to view the Properties of the file and ob
Get-ChildItem #{file_path} | % { $_.CreationTime = "#{target_date_time}" }
```
#### Cleanup Commands:
```powershell
Remove-Item #{file_path} -Force -ErrorAction Ignore
```
@@ -246,10 +242,6 @@ To verify execution, use File Explorer to view the Properties of the file and ob
Get-ChildItem #{file_path} | % { $_.LastWriteTime = "#{target_date_time}" }
```
#### Cleanup Commands:
```powershell
Remove-Item #{file_path} -Force -ErrorAction Ignore
```
@@ -298,10 +290,6 @@ To verify execution, use File Explorer to view the Properties of the file and ob
Get-ChildItem #{file_path} | % { $_.LastAccessTime = "#{target_date_time}" }
```
#### Cleanup Commands:
```powershell
Remove-Item #{file_path} -Force -ErrorAction Ignore
```