From 804a8c34c6571f139d216c1191ce6e495e322931 Mon Sep 17 00:00:00 2001 From: Taha Abbasi Date: Mon, 8 Oct 2018 13:39:11 -0400 Subject: [PATCH] Added username enumeration instructions Added username enumeration instructions, and username enumeration with range instructions for use with Docker and without. --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 54b3b5a5..463d39f0 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,17 @@ bundle install && rake install Pull the repo with ```docker pull wpscanteam/wpscan``` +Enumerating usernames +``` +docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u +``` + +Enumerating a range of usernames +``` +docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u1-100 +``` +** replace u1-100 with a range of your choice. + # Usage ```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings. If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used. @@ -69,6 +80,19 @@ url: 'http://target.tld' Running ```wpscan``` in the current directory (pwd), is the same as ```wpscan -v --proxy socks5://127.0.0.1:9090 --url http://target.tld``` + +Enumerating usernames +``` +wpscan --url https://target.tld/ --enumerate u +``` + +Enumerating a range of usernames +``` +wpscan --url https://target.tld/ --enumerate u1-100 +``` +** replace u1-100 with a range of your choice. + + # PROJECT HOME [https://wpscan.org](https://wpscan.org)