Generate docs from job=generate_and_commit_guids_and_docs branch=master [skip ci]

This commit is contained in:
CircleCI Atomic Red Team doc generator
2021-04-26 20:51:00 +00:00
parent 59d69167b7
commit 7f899892ec
2 changed files with 6 additions and 5 deletions
+5 -3
View File
@@ -61156,9 +61156,11 @@ exfiltration:
exit 0; fi;
'
get_prereq_command: "if [ ! -d #{folder_path} ]; then mkdir -p #{folder_path};
touch #{folder_path}/safe_to_delete; fi; \ndd if=/dev/urandom of=#{folder_path}/#{file_name}
bs=25000000 count=1\n"
get_prereq_command: 'if [ ! -d #{folder_path} ]; then mkdir -p #{folder_path};
touch #{folder_path}/safe_to_delete; fi; dd if=/dev/urandom of=#{folder_path}/#{file_name}
bs=25000000 count=1
'
executor:
command: |
cd #{folder_path}; split -b 5000000 #{file_name}
+1 -2
View File
@@ -47,8 +47,7 @@ if [ ! -f #{folder_path}/#{file_name} ]; then exit 1; else exit 0; fi;
```
##### Get Prereq Commands:
```sh
if [ ! -d #{folder_path} ]; then mkdir -p #{folder_path}; touch #{folder_path}/safe_to_delete; fi;
dd if=/dev/urandom of=#{folder_path}/#{file_name} bs=25000000 count=1
if [ ! -d #{folder_path} ]; then mkdir -p #{folder_path}; touch #{folder_path}/safe_to_delete; fi; dd if=/dev/urandom of=#{folder_path}/#{file_name} bs=25000000 count=1
```