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

This commit is contained in:
Atomic Red Team doc generator
2023-09-12 19:14:33 +00:00
parent 5dc57a112a
commit 53f605e142
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -100010,10 +100010,10 @@ discovery:
'
get_prereq_command: |
New-Item -Type Directory (split-path #{port_file}) -ErrorAction ignore | Out-Null
New-Item -Type Directory (split-path "#{port_file}") -ErrorAction ignore | Out-Null
Invoke-WebRequest "#{portfile_url}" -OutFile "#{port_file}"
executor:
command: "$ports = Get-content #{port_file}\n$file = \"#{output_file}\"\n$totalopen
command: "$ports = Get-content \"#{port_file}\"\n$file = \"#{output_file}\"\n$totalopen
= 0\n$totalports = 0\nNew-Item $file -Force\nforeach ($port in $ports) {\n
\ $test = new-object system.Net.Sockets.TcpClient\n $wait = $test.beginConnect(\"allports.exposed\",
$port, $null, $null)\n $wait.asyncwaithandle.waitone(250, $false) | Out-Null\n
+2 -2
View File
@@ -85532,10 +85532,10 @@ discovery:
'
get_prereq_command: |
New-Item -Type Directory (split-path #{port_file}) -ErrorAction ignore | Out-Null
New-Item -Type Directory (split-path "#{port_file}") -ErrorAction ignore | Out-Null
Invoke-WebRequest "#{portfile_url}" -OutFile "#{port_file}"
executor:
command: "$ports = Get-content #{port_file}\n$file = \"#{output_file}\"\n$totalopen
command: "$ports = Get-content \"#{port_file}\"\n$file = \"#{output_file}\"\n$totalopen
= 0\n$totalports = 0\nNew-Item $file -Force\nforeach ($port in $ports) {\n
\ $test = new-object system.Net.Sockets.TcpClient\n $wait = $test.beginConnect(\"allports.exposed\",
$port, $null, $null)\n $wait.asyncwaithandle.waitone(250, $false) | Out-Null\n
+2 -2
View File
@@ -198,7 +198,7 @@ Upon successful execution, powershell will read top-128.txt (ports) and contact
```powershell
$ports = Get-content #{port_file}
$ports = Get-content "#{port_file}"
$file = "#{output_file}"
$totalopen = 0
$totalports = 0
@@ -241,7 +241,7 @@ if (Test-Path "#{port_file}") {exit 0} else {exit 1}
```
##### Get Prereq Commands:
```powershell
New-Item -Type Directory (split-path #{port_file}) -ErrorAction ignore | Out-Null
New-Item -Type Directory (split-path "#{port_file}") -ErrorAction ignore | Out-Null
Invoke-WebRequest "#{portfile_url}" -OutFile "#{port_file}"
```