From b5bca160d1540e64bec27721421b06de36acb04b Mon Sep 17 00:00:00 2001 From: kev Date: Tue, 15 Sep 2020 15:11:34 +0800 Subject: [PATCH] add wafw00f --- README.md | 1 + wafw00f/Dockerfile | 13 +++++++++++++ wafw00f/README.md | 12 ++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 wafw00f/Dockerfile create mode 100644 wafw00f/README.md diff --git a/README.md b/README.md index 546fb39..4b22612 100644 --- a/README.md +++ b/README.md @@ -215,6 +215,7 @@ A collection of delicious docker recipes. - [x] routersploit - [x] snort :beetle: - [x] sslsplit +- [x] wafw00f - [x] webgoat ## Proxy diff --git a/wafw00f/Dockerfile b/wafw00f/Dockerfile new file mode 100644 index 0000000..bce6ee5 --- /dev/null +++ b/wafw00f/Dockerfile @@ -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"] diff --git a/wafw00f/README.md b/wafw00f/README.md new file mode 100644 index 0000000..ec5f2a9 --- /dev/null +++ b/wafw00f/README.md @@ -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