add amass

This commit is contained in:
kev 2020-05-08 18:00:39 +08:00
parent f5af2bff40
commit 42e6ea2002
3 changed files with 37 additions and 0 deletions

View File

@ -201,6 +201,7 @@ A collection of delicious docker recipes.
## Security
- [x] aircrack-ng-arm
- [x] amass
- [x] bro
- [x] clamav
- [x] dsniff

29
amass/README.md Normal file
View File

@ -0,0 +1,29 @@
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

7
amass/docker-compose.yml Normal file
View File

@ -0,0 +1,7 @@
amass:
image: caffix/amass
entrypoint: sleep
command: infinity
volumes:
- ./data:/.config/amass
restart: unless-stopped