From 7f899892ec68c5a071679d7a6ac81fc3281ddc1b Mon Sep 17 00:00:00 2001 From: CircleCI Atomic Red Team doc generator Date: Mon, 26 Apr 2021 20:51:00 +0000 Subject: [PATCH] Generate docs from job=generate_and_commit_guids_and_docs branch=master [skip ci] --- atomics/Indexes/index.yaml | 8 +++++--- atomics/T1030/T1030.md | 3 +-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/atomics/Indexes/index.yaml b/atomics/Indexes/index.yaml index 8e12b48b..90f888db 100644 --- a/atomics/Indexes/index.yaml +++ b/atomics/Indexes/index.yaml @@ -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} diff --git a/atomics/T1030/T1030.md b/atomics/T1030/T1030.md index b4b80de2..db1e43f3 100644 --- a/atomics/T1030/T1030.md +++ b/atomics/T1030/T1030.md @@ -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 ```