Generate docs from job=validate_atomics_generate_docs branch=master

This commit is contained in:
CircleCI Atomic Red Team doc generator
2020-04-22 15:49:23 +00:00
parent 3a3a7ba6e3
commit 12a297615d
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -29682,7 +29682,7 @@ command-and-control:
description: The folder path of ncat.exe
type: path
default: "$env:TEMP\\T1095"
dependency_executor_name: powerShell
dependency_executor_name: powershell
dependencies:
- description: ncat.exe must be available at specified location (#{ncat_exe})
prereq_command: if( Test-Path "#{ncat_exe}") {exit 0} else {exit 1}
+3 -3
View File
@@ -75,14 +75,14 @@ cmd /c #{ncat_exe} #{server_ip} #{server_port}
#### Dependencies: Run with `powerShell`!
#### Dependencies: Run with `powershell`!
##### Description: ncat.exe must be available at specified location (#{ncat_exe})
##### Check Prereq Commands:
```powerShell
```powershell
if( Test-Path "#{ncat_exe}") {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```powerShell
```powershell
New-Item -ItemType Directory -Force -Path #{ncat_path} | Out-Null
$parentpath = Split-Path (Split-Path "#{ncat_exe}"); $zippath = "$parentpath\nmap.zip"
Invoke-WebRequest "https://nmap.org/dist/nmap-7.80-win32.zip" -OutFile "$zippath"