From c77258e6fbe0a776bbc6a9fd0d46d0eb10a44c42 Mon Sep 17 00:00:00 2001 From: CircleCI Atomic Red Team doc generator Date: Fri, 19 Jun 2020 16:30:34 +0000 Subject: [PATCH] Generate docs from job=validate_atomics_generate_docs branch=master --- atomics/Indexes/index.yaml | 2 +- atomics/T1569.002/T1569.002.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/atomics/Indexes/index.yaml b/atomics/Indexes/index.yaml index 4463d8f6..78adf3d2 100644 --- a/atomics/Indexes/index.yaml +++ b/atomics/Indexes/index.yaml @@ -40073,7 +40073,7 @@ execution: File C:\\art-marker.txt" executor: command: | - sc.exe create #{service_name} binPath= #{executable_command} + sc.exe create #{service_name} binPath= "#{executable_command}" sc.exe start #{service_name} sc.exe delete #{service_name} name: command_prompt diff --git a/atomics/T1569.002/T1569.002.md b/atomics/T1569.002/T1569.002.md index eb7f1b64..e9bd772e 100644 --- a/atomics/T1569.002/T1569.002.md +++ b/atomics/T1569.002/T1569.002.md @@ -36,7 +36,7 @@ Upon successful execution, cmd.exe create a new service using sc.exe create that ```cmd -sc.exe create #{service_name} binPath= #{executable_command} +sc.exe create #{service_name} binPath= "#{executable_command}" sc.exe start #{service_name} sc.exe delete #{service_name} ```