1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-21 01:27:01 +02:00

add bettercap

This commit is contained in:
kev 2024-08-26 17:24:03 +08:00
parent 93cfd55dc7
commit 8a0f422074
3 changed files with 28 additions and 0 deletions

View File

@ -334,6 +334,7 @@ A collection of delicious docker recipes.
- [x] docker.bintray.io/jfrog/artifactory-oss
- [x] markusressel/barcode-server
- [x] jeffail/benthos
- [x] bettercap/bettercap
- [x] tutum/builder
- [x] calendso/calendso
- [x] browserless/chrome

18
bettercap/README.md Normal file
View File

@ -0,0 +1,18 @@
bettercap
=========
[bettercap][1] is a powerful, easily extensible and portable framework written in Go
which aims to offer to security researchers, red teamers and reverse engineers
an easy to use, all-in-one solution with all the features they might possibly
need for performing reconnaissance and attacking WiFi networks, Bluetooth Low
Energy devices, wireless HID devices and IPv4/IPv6 networks.
```bash
$ docker compose up -d
$ alias bettercap="docker exec -it bettercap-bettercap-1 /app/bettercap"
$ bettercap --help
```
[1]: https://www.bettercap.org/

View File

@ -0,0 +1,9 @@
services:
bettercap:
image: bettercap/bettercap
entrypoint: sleep
command: infinity
network_mode: host
privileged: true
tty: true
restart: unless-stopped