add docker examples

This commit is contained in:
Christian Mehlmauer
2017-03-23 20:09:30 +01:00
parent 11c05a3590
commit 5303b28957

View File

@@ -157,11 +157,21 @@ Pull the repo with `docker pull wpscanteam/wpscan`
## Start WPScan
```
docker run --rm wpscanteam/wpscan -u http://yourblog.com [options]
docker run --rm wpscanteam/wpscan -u https://yourblog.com [options]
```
For the available Options, please see https://github.com/wpscanteam/wpscan#wpscan-arguments
## Examples
Mount a local wordlist to the docker container and start a bruteforce attack for user admin
```
docker run --rm -v ~/wordlists:/wordlists wpscan/dev --url https://yourblog.com --wordlist /wordlists/crackstation.txt --username admin
```
(This mounts the host directory `~/wordlists` to the container in the path `/wordlists`)
Published on https://hub.docker.com/r/wpscanteam/wpscan/
# KNOWN ISSUES