Skip to content

Instantly share code, notes, and snippets.

@h3litz
Forked from phith0n/sqlmap_api.dockerfile
Created November 13, 2016 15:36
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 h3litz/61584d8f96f947aa58142c3977bbe05d to your computer and use it in GitHub Desktop.
Save h3litz/61584d8f96f947aa58142c3977bbe05d 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