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

This commit is contained in:
Atomic Red Team doc generator
2024-08-02 21:39:16 +00:00
parent 366ff6f084
commit 47a7a1525f
3 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -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:
+4 -4
View File
@@ -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:
+4 -4
View File
@@ -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
```