Skip to content

Instantly share code, notes, and snippets.

@oddcoder
Last active January 8, 2017 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oddcoder/e923c495621897b4fab9312c07573512 to your computer and use it in GitHub Desktop.
Save oddcoder/e923c495621897b4fab9312c07573512 to your computer and use it in GitHub Desktop.
what I use for exploitation, reverse engineering
From docker/debian:latest
RUN apt-get -y update && apt-get -y upgrade
RUN apt-get install -y locate gcc tcc gdb git python python-pip python-dev libffi-dev nano tmux strace libx32gcc-4.8-dev libc6-dev-i386 gcc-multilib
RUN pip install voltron
RUN pip install pwntools
RUN pip install z3
RUN echo source /usr/local/lib/python2.7/dist-packages/voltron/entry.py > .gdbinit
RUN echo voltron init >> .gdbinit
RUN echo set disassembly-flavor intel >> .gdbinit
RUN echo set pagination off >>.gdbinit
RUN echo unset env LINES >>.gdbinit
RUN echo unset env COLUMNS >>.gdbinit
RUN git clone https://github.com/hellman/fixenv
RUN git clone https://github.com/radare/radare2.git
RUN cd radare2
RUN sys/install.sh
RUN cd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment