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

This commit is contained in:
Atomic Red Team doc generator
2024-07-10 18:42:34 +00:00
parent a5ae5e1771
commit 9bf5eb6864
4 changed files with 17 additions and 4 deletions
+5 -1
View File
@@ -54108,10 +54108,14 @@ execution:
description: Script path
type: path
default: "/tmp/art.sh"
host:
description: Host to ping
type: string
default: 8.8.8.8
executor:
command: |
sh -c "echo 'echo Hello from the Atomic Red Team' > #{script_path}"
sh -c "echo 'ping -c 4 8.8.8.8' >> #{script_path}"
sh -c "echo 'ping -c 4 #{host}' >> #{script_path}"
chmod +x #{script_path}
sh #{script_path}
cleanup_command: 'rm #{script_path}
+5 -1
View File
@@ -31363,10 +31363,14 @@ execution:
description: Script path
type: path
default: "/tmp/art.sh"
host:
description: Host to ping
type: string
default: 8.8.8.8
executor:
command: |
sh -c "echo 'echo Hello from the Atomic Red Team' > #{script_path}"
sh -c "echo 'ping -c 4 8.8.8.8' >> #{script_path}"
sh -c "echo 'ping -c 4 #{host}' >> #{script_path}"
chmod +x #{script_path}
sh #{script_path}
cleanup_command: 'rm #{script_path}
+5 -1
View File
@@ -29352,10 +29352,14 @@ execution:
description: Script path
type: path
default: "/tmp/art.sh"
host:
description: Host to ping
type: string
default: 8.8.8.8
executor:
command: |
sh -c "echo 'echo Hello from the Atomic Red Team' > #{script_path}"
sh -c "echo 'ping -c 4 8.8.8.8' >> #{script_path}"
sh -c "echo 'ping -c 4 #{host}' >> #{script_path}"
chmod +x #{script_path}
sh #{script_path}
cleanup_command: 'rm #{script_path}
+2 -1
View File
@@ -53,6 +53,7 @@ Creates and executes a simple sh script.
| Name | Description | Type | Default Value |
|------|-------------|------|---------------|
| script_path | Script path | path | /tmp/art.sh|
| host | Host to ping | string | 8.8.8.8|
#### Attack Commands: Run with `sh`!
@@ -60,7 +61,7 @@ Creates and executes a simple sh script.
```sh
sh -c "echo 'echo Hello from the Atomic Red Team' > #{script_path}"
sh -c "echo 'ping -c 4 8.8.8.8' >> #{script_path}"
sh -c "echo 'ping -c 4 #{host}' >> #{script_path}"
chmod +x #{script_path}
sh #{script_path}
```