-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerfile
41 lines (30 loc) · 923 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
31
32
33
34
35
36
37
38
39
40
FROM kalilinux/kali-rolling
USER root
COPY xhost /usr/bin
WORKDIR /wififorge
COPY . .
RUN apt-get update -y && apt-get upgrade --fix-missing -y --no-install-recommends
RUN apt install -y \
git \
sudo \
python3-pip \
curl \
wget \
mininet --allow-downgrades \
john \
wifiphisher \
net-tools \
dsniff \
iputils-ping \
wifite \
pciutils \
python3-tqdm
RUN git config --global --add safe.directory $PWD
RUN git submodule init
RUN git submodule update
RUN git config --global --add safe.directory $PWD/Framework/mininet-wifi/hostapd
RUN python3 -m pip config set global.break-system-packages true
RUN wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
RUN ./Framework/mininet-wifi/util/install.sh -Wlnfv
RUN sudo make -C Framework/mininet-wifi install