1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/amass/README.md
2020-05-08 18:00:39 +08:00

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