1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-05-29 22:57:35 +02:00

add aircrack-ng-arm

This commit is contained in:
kev 2018-09-01 09:43:28 +08:00
parent e4ebeb8137
commit e17a763c3c
4 changed files with 43 additions and 0 deletions

View File

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

View File

@ -0,0 +1,9 @@
#
# Dockerfile for aircrack-ng-arm
#
FROM easypi/alpine-arm
RUN apk add --no-cache aircrack-ng bash coreutils tmux
ENTRYPOINT ["sleep", "inf"]

26
aircrack-ng-arm/README.md Normal file
View File

@ -0,0 +1,26 @@
aircrack-ng
===========
```bash
docker-compose up -d
docker-compose exec aircrack bash
>>> airmon-ng
PHY Interface Driver Chipset
null wlan0 r8188eu
phy0 wlan1mon rt2800usb
>>> airmon-ng start wlan1
PHY Interface Driver Chipset
null wlan0 r8188eu
phy0 wlan1 rt2800usb
(mac80211 monitor mode vif enabled for [phy0]wlan1 on [phy0]wlan1mon)
(mac80211 station mode vif disabled for [phy0]wlan1)
>>> airodump-ng wlan1mon
```

View File

@ -0,0 +1,7 @@
aircrack:
image: easypi/aircrack-ng-arm
cap_add:
- NET_ADMIN
net: host
tty: true
restart: unless-stopped