forked from EnableSecurity/wafw00f
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Docker support (EnableSecurity#162)
* Adding Dockerfile * Adding Docker instructions
- Loading branch information
Showing
2 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM python:3 | ||
WORKDIR /usr/src/app | ||
COPY . . | ||
RUN python setup.py install | ||
ENTRYPOINT [ "wafw00f" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -256,6 +256,10 @@ The following should do the trick: | |
python setup.py install | ||
``` | ||
|
||
It is also possible to run it within a docker container. Clone this repository first and build the Docker image using `docker build . -t wafw00f`. | ||
Now you can run `docker run --rm -it wafw00f https://example.com` | ||
|
||
|
||
## Final Words | ||
|
||
__Questions?__ Pull up an [issue on GitHub Issue Tracker](https://github.com/enablesecurity/wafw00f/issues/new) or contact [me](mailto:[email protected]). | ||
|