Skip to content

Instantly share code, notes, and snippets.

@PaulCher
Created April 7, 2021 21:15
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 PaulCher/d86d4db6bba67034e1c4de69e9edafd7 to your computer and use it in GitHub Desktop.
Save PaulCher/d86d4db6bba67034e1c4de69e9edafd7 to your computer and use it in GitHub Desktop.
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qy && \
apt-get install -qy libssl-dev libcapstone3 curl wget netcat python3 python3-pip python-dev && \
rm -rf /var/lib/apt/lists/*
RUN useradd --uid 1001 -ms /bin/bash poc
RUN pip3 install setuptools pwntools requests
USER poc
ENV PWNLIB_NOTERM=true
WORKDIR /home/poc/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment