1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-27 09:18:43 +00:00
dockerfiles/amass/README.md

30 lines
566 B
Markdown
Raw Normal View History

2020-05-08 10:00:39 +00:00
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