Sign in to follow this  
AplexTM

WPScan Tutorial

Recommended Posts

Welcome on WPScan tutorial!

 

WPScan is popular tool to scan pages built with wordpress. It wont do whole job for you, but it may be helpful to gain information about your target. You dont need any special knowledge to use it, tool is very helpful for beginners.

Everything you need is your computer with linux, Kali has pre-installed wpscan.

To run wpscan on kali just type 'wpscan' in your terminal.

 

There are many useful options, I will show you some of them below:

--url -> As you guess, you have to type your target's url here

 

--enumerate -> This will give you lots of information about website. Firstly you have specify what do you exactly need. Here are some options:

 

--enumerate p -> Enumerates installed plugins

 

--enumerate vp -> Enumerates vulnerable plugins installed on your target

 

--enumerate u -> Enumerates users

 

--enumerate t -> Enumerate installed themes

 

Another important function is proxy, which allow you to scan host through proxy. Example below:

--proxy 127.0.0.1:5555

 

You can use socks5 proxy as well:

--proxy socks5://127.0.0.1:9000

 

If login is required:

--proxy-auth  Supply the proxy login credentials.

 

--basic-auth  Set the HTTP Basic authentication.

 

There is also an option to brute force enumerated users, for example using 50 threds:

wpscan --url www.example.com --wordlist wordlist.lst --threads 50

 

As you see, after --wordlist you need to give a pass wordlist.

 

If you want to brute specific user, just add '--username', example:

wpscan --url www.example.com --wordlist wordlist.lst --username admin

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this