Skip to content

Instantly share code, notes, and snippets.

@retanoj
Forked from phith0n/sqlmap_api.dockerfile
Created November 7, 2016 09:36
Show Gist options
  • Save retanoj/5a8359f452e9323e9f4b3539b8dbff93 to your computer and use it in GitHub Desktop.
Save retanoj/5a8359f452e9323e9f4b3539b8dbff93 to your computer and use it in GitHub Desktop.
Docker提高生产力之SQLMAP API
FROM python:2.7
ENV VERSION 1.0.11
RUN apt-get update && apt-get install -y \
git --no-install-recommends
RUN mkdir /app
WORKDIR /app
RUN git clone https://github.com/sqlmapproject/sqlmap.git . \
&& git checkout tags/${VERSION}
CMD ["./sqlmapapi.py", "-s", "-H", "0.0.0.0", "-p", "7775"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment