Skip to content

Commit

Permalink
Added minimal alpine:edge + python2 Dockerfile
Browse files Browse the repository at this point in the history
Updated README.md with Docker instructions
  • Loading branch information
khast3x committed Jan 9, 2018
1 parent 70f5497 commit 5a4b5da
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 5a4b5da

Please sign in to comment.