Finding vulnerabilities in WordPress with WPScan
WordPress is one of the most used Content Management Systems (CMS), if not the most used, in the world. A CMS is an application - usually a web application - that allows users to create fully functional websites easily with no or little programming knowledge. WPScan is a vulnerability scanner specialized in detecting vulnerabilities in WordPress sites.
In this recipe, we will use WPScan to identify vulnerable components on a WordPress site installed in the OWASP BWA virtual machine.
How to do it...
WPScan is a command-line tool; open a Terminal to start using it:
- Run WPScan against our target with the
wpscan http://192.168.56.11/wordpress/
command; the URL is the location of the WordPress site we want to scan. - If this is the first time you are running WPScan, it will ask to update the database, which requires internet connection. In our laboratory setup, the Kali Linux VM doesn't have internet connection, so it is a good idea first to change its...