diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..906a39f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:edge + + +RUN apk --update add --no-cache python2 py2-requests py2-pip py2-lxml py2-requests openssl ca-certificates +RUN apk --update add --virtual build-dependencies python2-dev build-base wget git \ + && git clone https://github.com/1N3/BlackWidow.git +WORKDIR BlackWidow + +RUN pip2 install -r requirements.txt +ENTRYPOINT ["python2", "blackwidow"] +CMD ["--help"] \ No newline at end of file diff --git a/README.md b/README.md index c65a72f..f954b48 100755 --- a/README.md +++ b/README.md @@ -34,6 +34,15 @@ injectx.py https://test.com/uers.php?user=1&admin=true - Fuzz all GET parameters ## SAMPLE REPORT: ![alt tag](https://github.com/1N3/BlackWidow/blob/master/blackwidow-report1.png) +## DOCKER: +```bash +git clone https://github.com/1N3/BlackWidow.git +cd BlackWidow +docker build -t BlackWidow . +docker run -it BlackWidow # Defaults to --help + +``` + ## LICENSE: This software is released under the GNU General Public License v3.0. See LICENSE.md for details.