mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-10 11:10:27 +02:00
30 lines
566 B
Markdown
30 lines
566 B
Markdown
|
amass
|
||
|
=====
|
||
|
|
||
|
The OWASP [Amass][1] Project performs network mapping of attack surfaces and
|
||
|
external asset discovery using open source information gathering and active
|
||
|
reconnaissance techniques.
|
||
|
|
||
|
## docker-compose.yml
|
||
|
|
||
|
```yaml
|
||
|
amass:
|
||
|
image: caffix/amass
|
||
|
entrypoint: sleep
|
||
|
command: infinity
|
||
|
volumes:
|
||
|
- ./data:/.config/amass
|
||
|
restart: unless-stopped
|
||
|
```
|
||
|
|
||
|
## up and running
|
||
|
|
||
|
```bash
|
||
|
$ docker-compose up -d
|
||
|
$ docker-compose exec amass sh
|
||
|
>>> amass enum -list
|
||
|
>>> amass enum -brute -w /wordlists/all.txt -d example.com
|
||
|
```
|
||
|
|
||
|
[1]: https://github.com/OWASP/Amass
|