Skip to content

Instantly share code, notes, and snippets.

@cyanboy
Created July 7, 2020 08:25
Show Gist options
  • Save cyanboy/1e844272ed4c3af029b33de42f380fa2 to your computer and use it in GitHub Desktop.
Save cyanboy/1e844272ed4c3af029b33de42f380fa2 to your computer and use it in GitHub Desktop.
Dockerfile for Pwn
FROM kalilinux/kali-rolling
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
RUN apt-get update && apt-get upgrade -y && apt-get install -y python3 python3-pip python3-dev git libssl-dev libffi-dev build-essential gdb vim curl wget cmake
RUN wget -q -O- https://github.com/hugsy/gef/raw/master/scripts/gef.sh | sh
RUN python3 -m pip install --upgrade pip
RUN python3 -m pip install capstone unicorn keystone-engine ropper pwntools
CMD /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment