Skip to content

Commit

Permalink
Part-way through evil mitm router conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
brannondorsey committed Jul 28, 2017
1 parent 9e59e5a commit dade2d6
Show file tree
Hide file tree
Showing 7 changed files with 1,108 additions and 26 deletions.
17 changes: 11 additions & 6 deletions Dockerfile
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"]
Loading

0 comments on commit dade2d6

Please sign in to comment.