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

This commit is contained in:
Atomic Red Team doc generator
2023-10-10 16:05:30 +00:00
parent e8d26acbc7
commit 4b58fa4f25
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -47647,10 +47647,10 @@ execution:
New-Item -ItemType Directory (Split-Path "#{jscript}") -Force | Out-Null
Invoke-WebRequest "https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/atomics/T1059.007/src/sys_info.js" -OutFile "#{jscript}"
executor:
command: 'cscript "#{jscript}" > $env:TEMP\T1059.007.out.txt
command: 'cscript "#{jscript}" > %tmp%\T1059.007.out.txt
'
cleanup_command: del $env:TEMP\T1059.007.out.txt >nul 2>&1
cleanup_command: del %tmp%\T1059.007.out.txt >nul 2>&1
name: command_prompt
- name: JScript execution to gather local computer information via wscript
auto_generated_guid: '0709945e-4fec-4c49-9faf-c3c292a74484'
+2 -2
View File
@@ -41192,10 +41192,10 @@ execution:
New-Item -ItemType Directory (Split-Path "#{jscript}") -Force | Out-Null
Invoke-WebRequest "https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/atomics/T1059.007/src/sys_info.js" -OutFile "#{jscript}"
executor:
command: 'cscript "#{jscript}" > $env:TEMP\T1059.007.out.txt
command: 'cscript "#{jscript}" > %tmp%\T1059.007.out.txt
'
cleanup_command: del $env:TEMP\T1059.007.out.txt >nul 2>&1
cleanup_command: del %tmp%\T1059.007.out.txt >nul 2>&1
name: command_prompt
- name: JScript execution to gather local computer information via wscript
auto_generated_guid: '0709945e-4fec-4c49-9faf-c3c292a74484'
+2 -2
View File
@@ -39,12 +39,12 @@ JScript execution test, execute JScript via cscript command. When successful, sy
```cmd
cscript "#{jscript}" > $env:TEMP\T1059.007.out.txt
cscript "#{jscript}" > %tmp%\T1059.007.out.txt
```
#### Cleanup Commands:
```cmd
del $env:TEMP\T1059.007.out.txt >nul 2>&1
del %tmp%\T1059.007.out.txt >nul 2>&1
```