top of page
Search
  • OTW

Web App Hacking: Finding Vulnerable WordPress Sites

Updated: Nov 18, 2022


WordPress-based websites are among the most numerous on this planet (maybe other planets too, but I can't vouch for that). According to WordPress's own website, WordPress powers 23% of the top 10 million websites. That's approximately 2.3 million sites using WordPress!

WordPress websites are also among the most vulnerable websites. Generally, WordPress hosts small-to medium-sized businesses that are not the most vigilant at installing patches and updates. This makes for some broad and fertile ground for web app hacking!

In this tutorial--before we advance to vulnerability assessment and exploitation--I want to show how to identify these potentially vulnerable WordPress websites.

WordPress Vulnerabilities

WordPress is among the Internet's most widely used content management systems (CMS). In addition, it is among the most vulnerable. A quick glance at SecurityFocus's website reveals 16 pages of known vulnerabilities to WordPress sites, with the most recent coming just a few days ago (November 5, 2016).

A similar analysis of exploits particular to WordPress on Exploit Database reveals 975 exploits. The most recent of these are just over a month ago, September, 2016.

These two bits of information make it clear that WordPress provides fertile ground for web app hacking that we will explore in future tutorials her at Hackers-Arise.

Step 1: Finding Sites Built on WordPress

The first step here is to identify whether the website is running WordPress. If we are examining a particular website and we want to know whether it runs WordPress, there is a website called "BuiltWith" where we can enter the domain name and it will return information on the technologies that the site was built with.

In this case, let's take a look at the Toronto Standard, a venerable newspaper of Canada's largest city. When we enter its URL (www.torontostandard.com) into the BuiltWith website, it returns that following information.

As you can see, it reveals to us that the Toronto Standard runs on Apache and is hosted by BlueHost. If we scroll down a bit, we can see that BuiltWith tells us that the newspaper uses WordPress as its CMS.

Step 2: Google Dorks to Find WordPress Sites

There are numerous signatures of a WordPress website. These include unique directories, login pages, tags, text, etc. For those of you familiar with Google hacking, you can usually find those signatures in the URL.

A few useful Google dorks to identify WordPress websites include:

"index of" inurl:wp-content/

This dork returned 10,400,000 sites.

"inurl:"/wp-content/plugins/wp-shopping-cart/"

This dork returned 4,230 sites.

inurl:"/wp-content/wpclone-temp/wpclone_backup/"

This dork returned 804 sites where the backups may contain juicy information such as passwords.

"inurl:wp-content/plugins/wp-dbmanager/"

This dork returned 290 sites.

I'm sure that you can come up with many more dorks that will return WordPress sites, but these should provide you with plenty of sites to practice on for awhile.

While doing Google hacking, you might get a webpage from Google with a CAPTCHA. Don't worry, Google is just trying to make certain you aren't running a script which violates the Google EULA.

Step 3: Tools for Identifying WordPress Sites

There are a number of tools that you can use to identify WordPress websites. Probably the two best are the browser extensions Chrome Sniffer for the Chrome web browser (it's also available on GitHub) and BuiltWith for the Mozilla web browsers (these include Firefox and Kali's IceWeasel).

With the Chrome Sniffer extension installed, when I navigate to torontostandard.com, a small WordPress logo appears in the the right side of the URL box indicating that this site runs WordPress.

Now, whenever you navigate to a website, your browser will identify the technology the site is built with. This, obviously, can be useful for all types of web app hacking, not just WordPress.

Keep Coming Back for More Web App Hacking!

In my next tutorial in this series, we look at ways to find known vulnerabilities in these websites and, ultimately, the tools and techniques for exploiting them, so keep coming back!


19,883 views
bottom of page