From 47a7a1525fbaa01b69ea57fe31e8d1e821167aaa Mon Sep 17 00:00:00 2001 From: Atomic Red Team doc generator Date: Fri, 2 Aug 2024 21:39:16 +0000 Subject: [PATCH] Generated docs from job=generate-docs branch=master [ci skip] --- atomics/Indexes/containers-index.yaml | 8 ++++---- atomics/Indexes/index.yaml | 8 ++++---- atomics/T1613/T1613.md | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/atomics/Indexes/containers-index.yaml b/atomics/Indexes/containers-index.yaml index a2293fda..aea28b2e 100644 --- a/atomics/Indexes/containers-index.yaml +++ b/atomics/Indexes/containers-index.yaml @@ -48855,13 +48855,13 @@ discovery: executor: command: |- docker build -t t1613 $PathtoAtomicsFolder/T1613/src/ - docker run --name t1613_container -d -t t1613 + docker run --name t1613_container --rm -d -t t1613 docker ps docker stats --no-stream docker inspect $(docker ps -l -q --filter ancestor=t1613) cleanup_command: |- docker stop t1613_container - docker rmi -f t1613_container + docker rmi -f t1613 name: sh - name: Podman Container and Resource Discovery auto_generated_guid: fc631702-3f03-4f2b-8d8a-6b3d055580a1 @@ -48889,13 +48889,13 @@ discovery: executor: command: |- podman build -t t1613 $PathtoAtomicsFolder/T1613/src/ - podman run --name t1613_container -d -t t1613 + podman run --name t1613_container --rm -d -t t1613 podman ps podman stats --no-stream podman inspect $(podman ps -l -q --filter ancestor=t1613) cleanup_command: |- podman stop t1613_container - podman rmi -f t1613_container + podman rmi -f t1613 name: sh T1016.001: technique: diff --git a/atomics/Indexes/index.yaml b/atomics/Indexes/index.yaml index e2acef1d..2f594050 100644 --- a/atomics/Indexes/index.yaml +++ b/atomics/Indexes/index.yaml @@ -97657,13 +97657,13 @@ discovery: executor: command: |- docker build -t t1613 $PathtoAtomicsFolder/T1613/src/ - docker run --name t1613_container -d -t t1613 + docker run --name t1613_container --rm -d -t t1613 docker ps docker stats --no-stream docker inspect $(docker ps -l -q --filter ancestor=t1613) cleanup_command: |- docker stop t1613_container - docker rmi -f t1613_container + docker rmi -f t1613 name: sh - name: Podman Container and Resource Discovery auto_generated_guid: fc631702-3f03-4f2b-8d8a-6b3d055580a1 @@ -97691,13 +97691,13 @@ discovery: executor: command: |- podman build -t t1613 $PathtoAtomicsFolder/T1613/src/ - podman run --name t1613_container -d -t t1613 + podman run --name t1613_container --rm -d -t t1613 podman ps podman stats --no-stream podman inspect $(podman ps -l -q --filter ancestor=t1613) cleanup_command: |- podman stop t1613_container - podman rmi -f t1613_container + podman rmi -f t1613 name: sh T1016.001: technique: diff --git a/atomics/T1613/T1613.md b/atomics/T1613/T1613.md index 430c7874..6130ee8d 100644 --- a/atomics/T1613/T1613.md +++ b/atomics/T1613/T1613.md @@ -31,7 +31,7 @@ Adversaries may attempt to discover containers and other resources that are avai ```sh docker build -t t1613 $PathtoAtomicsFolder/T1613/src/ -docker run --name t1613_container -d -t t1613 +docker run --name t1613_container --rm -d -t t1613 docker ps docker stats --no-stream docker inspect $(docker ps -l -q --filter ancestor=t1613) @@ -40,7 +40,7 @@ docker inspect $(docker ps -l -q --filter ancestor=t1613) #### Cleanup Commands: ```sh docker stop t1613_container -docker rmi -f t1613_container +docker rmi -f t1613 ``` @@ -89,7 +89,7 @@ Adversaries may attempt to discover containers and other resources that are avai ```sh podman build -t t1613 $PathtoAtomicsFolder/T1613/src/ -podman run --name t1613_container -d -t t1613 +podman run --name t1613_container --rm -d -t t1613 podman ps podman stats --no-stream podman inspect $(podman ps -l -q --filter ancestor=t1613) @@ -98,7 +98,7 @@ podman inspect $(podman ps -l -q --filter ancestor=t1613) #### Cleanup Commands: ```sh podman stop t1613_container -podman rmi -f t1613_container +podman rmi -f t1613 ```