forked from stevenaldinger/wifi-hack-pixie-dust-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
30 lines (29 loc) · 892 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM alpine:3.8
# reaver build deps = build-base, libpcap-dev
RUN apk add --no-cache --virtual .build-deps \
build-base \
libpcap-dev \
# add aircrack-ng and airmon-ng
&& apk add --no-cache \
aircrack-ng \
# download and install pixiewps from source (reaver dependency)
&& wget -O pixiewps.zip https://github.com/wiire/pixiewps/archive/master.zip \
&& unzip pixiewps.zip \
&& rm pixiewps.zip \
&& cd pixiewps-master/ \
&& make \
&& make install \
&& cd .. \
&& rm -rf pixiewps-master \
# download and install reaver from source
&& wget -O reaver.zip https://github.com/t6x/reaver-wps-fork-t6x/archive/master.zip \
&& unzip reaver.zip \
&& rm reaver.zip \
&& cd reaver-wps-fork-t6x-master/src \
&& ./configure \
&& make \
&& make install \
&& cd .. \
&& rm -rf reaver-wps-fork-t6x-master \
# clean up build dependencies
&& apk del --purge .build-deps