forked from simonschuang/rpi-hostapd
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Part-way through evil mitm router conversion
- Loading branch information
1 parent
9e59e5a
commit dade2d6
Showing
7 changed files
with
1,108 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
FROM sdhibit/rpi-raspbian:jessie | ||
FROM debian:jessie | ||
|
||
MAINTAINER Simon Chuang "simon.s.chuang@gmail.com" | ||
MAINTAINER Brannon Dorsey "brannon@brannondorsey.com" | ||
|
||
RUN apt-get update --fix-missing && apt-get install -y \ | ||
hostapd \ | ||
dbus \ | ||
net-tools \ | ||
iptables \ | ||
dnsmasq \ | ||
vim \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
net-tools \ | ||
tmux \ | ||
macchanger | ||
|
||
# mitmproxy requires this env | ||
ENV LANG en_US.UTF-8 | ||
|
||
ADD mitmproxy/* /bin/ | ||
ADD hostapd.conf /etc/hostapd/hostapd.conf | ||
ADD hostapd /etc/default/hostapd | ||
ADD dnsmasq.conf /etc/dnsmasq.conf | ||
|
||
Add entrypoint.sh /entrypoint.sh | ||
ADD entrypoint.sh /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] | ||
# ENTRYPOINT ["/entrypoint.sh"] |
Oops, something went wrong.