1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

add wafw00f

This commit is contained in:
kev 2020-09-15 15:11:34 +08:00
parent 17ff2e4ddc
commit b5bca160d1
3 changed files with 26 additions and 0 deletions

@ -215,6 +215,7 @@ A collection of delicious docker recipes.
- [x] routersploit
- [x] snort :beetle:
- [x] sslsplit
- [x] wafw00f
- [x] webgoat
## Proxy

13
wafw00f/Dockerfile Normal file

@ -0,0 +1,13 @@
#
# Dockerfile for wafw00f
#
FROM alpine:3
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache python3
&& pip3 install wafw00f
ENTRYPOINT ["wafw00f"]
CMD ["--help"]

12
wafw00f/README.md Normal file

@ -0,0 +1,12 @@
wafw00f
=======
[WAFW00F][1] allows one to identify and fingerprint Web Application Firewall
(WAF) products protecting a website.
```
$ alias wafw00f='docker run --rm -it vimagick/wafw00f'
$ wafw00f https://www.baidu.com
```
[1]: https://github.com/EnableSecurity/wafw00f