Generate docs from job=validate_atomics_generate_docs branch=technique-fixup-cs

This commit is contained in:
CircleCI Atomic Red Team doc generator
2018-09-03 04:26:30 +00:00
parent f48e47d408
commit edf4a88498
+10 -2
View File
@@ -37,10 +37,14 @@ Installs A Local Service
| Name | Description | Type | Default Value |
|------|-------------|------|---------------|
| binary_path | Name of the service binary, include path. | Path | C:\AtomicRedTeam\atomics\T1050\bin\AtomicService.exe|
| service_name | Name of the Service | String | AtomicTestService|
#### Run it with `command_prompt`!
```
sc.exe create AtomicTestService binPath= #{binary_path}
sc.exe create #{service_name} binPath= #{binary_path}
sc.exe start #{service_name}
sc.exe stop #{service_name}
sc.exe delete #{service_name}
```
<br/>
<br/>
@@ -55,9 +59,13 @@ Installs A Local Service via PowerShell
| Name | Description | Type | Default Value |
|------|-------------|------|---------------|
| binary_path | Name of the service binary, include path. | Path | C:\AtomicRedTeam\atomics\T1050\bin\AtomicService.exe|
| service_name | Name of the Service | String | AtomicTestService|
#### Run it with `powershell`!
```
powershell.exe New-Service -Name "AtomicTestService" -BinaryPathName "#{binary_path}"
New-Service -Name "#{service_name}" -BinaryPathName "#{binary_path}"
Start-Service -Name "#{service_name}"
Stop-Service -Name "#{service_name}"
(Get-WmiObject Win32_Service -filter "name='#{service_name}'").Delete()
```
<br/>