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

This commit is contained in:
Atomic Red Team doc generator
2022-07-04 17:46:06 +00:00
parent 68160ab7e0
commit a9051c38de
2 changed files with 18 additions and 4 deletions
+8 -2
View File
@@ -44448,13 +44448,16 @@ execution:
prereq_command: 'if [ -f #{autosuid} ]; then exit 0; else exit 1; fi;
'
get_prereq_command: 'curl #{autosuid_url} --output #{autosuid}
get_prereq_command: 'curl --create-dirs #{autosuid_url} --output #{autosuid}
'
executor:
command: |
chmod +x #{autosuid}
bash #{autosuid}
cleanup_command: 'rm -rf #{autosuid}
'
name: sh
- name: LinEnum tool execution
auto_generated_guid: a2b35a63-9df1-4806-9a4d-5fe0500845f2
@@ -44483,13 +44486,16 @@ execution:
prereq_command: 'if [ -f #{linenum} ]; then exit 0; else exit 1; fi;
'
get_prereq_command: 'curl #{linenum_url} --output #{linenum}
get_prereq_command: 'curl --create-dirs #{linenum_url} --output #{linenum}
'
executor:
command: |
chmod +x #{linenum}
bash #{linenum}
cleanup_command: 'rm -rf #{linenum}
'
name: sh
T1559:
technique:
+10 -2
View File
@@ -121,6 +121,10 @@ chmod +x #{autosuid}
bash #{autosuid}
```
#### Cleanup Commands:
```sh
rm -rf #{autosuid}
```
@@ -132,7 +136,7 @@ if [ -f #{autosuid} ]; then exit 0; else exit 1; fi;
```
##### Get Prereq Commands:
```bash
curl #{autosuid_url} --output #{autosuid}
curl --create-dirs #{autosuid_url} --output #{autosuid}
```
@@ -168,6 +172,10 @@ chmod +x #{linenum}
bash #{linenum}
```
#### Cleanup Commands:
```sh
rm -rf #{linenum}
```
@@ -179,7 +187,7 @@ if [ -f #{linenum} ]; then exit 0; else exit 1; fi;
```
##### Get Prereq Commands:
```bash
curl #{linenum_url} --output #{linenum}
curl --create-dirs #{linenum_url} --output #{linenum}
```