Skip to content

Commit

Permalink
Generated docs from job=generate-docs branch=master [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Atomic Red Team doc generator committed Aug 2, 2024
1 parent 8e18caf commit aa9410b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions atomics/Indexes/containers-index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51689,9 +51689,9 @@ discovery:
'
executor:
command: |-
docker build -t t1046 /root/AtomicRedTeam/atomics/T1046/src/
docker run --name t1046_container -d -t t1046
docker exec t1046_container ./test.sh
docker build -t t1046 $PathToAtomicsFolder/T1046/src/
docker run --name t1046_container --rm -d -t t1046
docker exec t1046_container /scan.sh
cleanup_command: |-
docker stop t1046_container
docker rmi -f t1046
Expand Down
6 changes: 3 additions & 3 deletions atomics/Indexes/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105965,9 +105965,9 @@ discovery:
'
executor:
command: |-
docker build -t t1046 /root/AtomicRedTeam/atomics/T1046/src/
docker run --name t1046_container -d -t t1046
docker exec t1046_container ./test.sh
docker build -t t1046 $PathToAtomicsFolder/T1046/src/
docker run --name t1046_container --rm -d -t t1046
docker exec t1046_container /scan.sh
cleanup_command: |-
docker stop t1046_container
docker rmi -f t1046
Expand Down
6 changes: 3 additions & 3 deletions atomics/T1046/T1046.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,9 @@ Attackers may try to obtain a list of services that are operating on remote host


```sh
docker build -t t1046 /root/AtomicRedTeam/atomics/T1046/src/
docker run --name t1046_container -d -t t1046
docker exec t1046_container ./test.sh
docker build -t t1046 $PathToAtomicsFolder/T1046/src/
docker run --name t1046_container --rm -d -t t1046
docker exec t1046_container /scan.sh
```

#### Cleanup Commands:
Expand Down

0 comments on commit aa9410b

Please sign in to comment.