Last active
May 20, 2022 08:56
-
-
Save justanotherdot/f068ab9293dd9a5f3cad62cba141d473 to your computer and use it in GitHub Desktop.
A Dockerfile with (almost) all the tools mentioned in Bite Size Networking by Julia Evans
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
# N.B. The only tool missing here that is mentioned in the document is `zenmap` | |
# purely because this image is intended to be run via a CLI and `zenmap` is a GUI | |
# to `nmap` i.e. one can play around with the tools by running: | |
# | |
# $ docker build --name bite_size_networking:latest . | |
# $ docker run --rm -d --name bsn_test bite_size_networking:latest | |
# $ docker exec -it bsn_test bash | |
# | |
# Alternatively, one can change the `ENTRYPOINT` to `["bash"]` and run: | |
# | |
# $ docker run -it --name bsn_test bite_size_networking:latest | |
# | |
# then later (after exiting the shell): | |
# | |
# $ docker start bsn_test | |
# $ docker attach bsn_test | |
# | |
# One can also run this image on a docker network to capture packets and so | |
# forth for debugging purposes. Once you've found the tooling that best suits | |
# your needs, it may make sense to make a slimmed down version of this | |
# Dockerfile and, if wireguard isn't needed, base this image off | |
# `debian:stable` instead. | |
# | |
# Lastly, you can purchase Bite Size Networking or Julia's other fantastic | |
# zines over at https://wizardzines.com/ | |
# We use `unstable` here since we install `wireguard` below | |
FROM debian:unstable | |
RUN apt update && \ | |
DEBIAN_FRONTEND=noninteractive apt install -y \ | |
dnsutils \ | |
curl \ | |
nmap \ | |
tcpdump \ | |
ngrep \ | |
mitmproxy \ | |
iptables \ | |
ethtool \ | |
stunnel \ | |
hping3 \ | |
lsof \ | |
ipcalc \ | |
p0f \ | |
iperf \ | |
apache2-utils \ | |
wget \ | |
python3 \ | |
iftop \ | |
nethogs \ | |
iptraf \ | |
httpie \ | |
nload \ | |
aria2 \ | |
nftables \ | |
tcpflow \ | |
telnet \ | |
openvpn \ | |
links \ | |
wireguard \ | |
tshark | |
ENTRYPOINT ["sh", "-c", "while true; do sleep $(( 60 * 60 * 24 )); done"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment