File deletion vuln + WordPress design flaw = Pwn | xxxFile deletion vuln + WordPress design flaw = Pwn – xxx
菜单

File deletion vuln + WordPress design flaw = Pwn

十一月 6, 2018 - BleepingComputer

File deletion vuln + WordPress design flaw = Pwn

A design flaw in the WordPress permission system used by plugins and a file deletion vulnerability in a very popular eCommerce plugin called WooCommerce could allow attackers to gain full control over a WordPress site.

WooCommerce by Automattic is a popular WordPress plugin that adds eCommerce functionality to a blog so that site owners can host their own stores. According to the WooCommerce plugin page at WordPress.org, there are over 4 million active installations of the plugin.

File deletion vuln + WordPress design flaw = Pwn
WooCommerce Plugin Page

When WordPress plugins are installed that utilize different user roles, instead of creating their own authentication system, they utilize the WordPress permission system. Plugins do this by creating new roles that are assigned different WordPress capabilities  and then utilize plugin functions to limit how these roles can interact with other users or settings in WordPress.

According to new research by Simon Scannell, a researcher for PHP Security firm RIPS Tech, when WooCommerce is installed it will create a Shop Manager role that has the “edit_users” WordPress capability/permission. This capability allows users to edit ANY WordPress user, including the Administrator account.

You can see the privileges given to the Shop manager role by the WooCommerce plugin below.

// Shop manager role. add_role(  'shop_manager',      // Internal name of the new role  'Shop manager',      // The label for displaying  array(               // Capabilities                 ⋮   'read_private_posts'     => true,   'edit_users'             => true,   'edit_posts'             => true,                 ⋮  ) );

As site owners obviously do not want a plugin’s users to be able to edit the Administrators for the entire site, WooCommerce created a function that prevents users in that role from editing users who are part of the Administrator role.

The flaw with WordPress plugin/privilege system is that if the WooCommerce plugin is disabled, the function that limits what users a Shop Manager can edit is no longer accessible and thus Shop managers can edit users in the Administrator role.

The only way to disable a plugin, though, is by using an Administrator account or by deleting the files associated with the plugin.

This is where a file deletion vulnerability discovered by RIPS Tech comes into play.

File deletion vuln + WordPress design flaw = Pwn

Using RIPS code analysis software, Scannell was able to discover a file deletion vulnerability in WooCommerce 3.4.5 and earlier. This vulnerability was in the plugin’s log deletion functionality that Shop Manager have access.

Using the vulnerability a user who was in the Shop Manager role could escape out of the expected folder by adding .. to the passed argument.

For example, to delete the main plugin file, they could pass the following argument to the log deletion function, which would delete the “wp-content/wc-logs/../../plugins/woocommerce-3.4.5/woocommerce.php” file.

../../plugins/woocommerce-3.4.5/woocommerce.php

Now that the file was deleted, the plugin could no longer be loaded and would then be disabled by WordPress.

With the plugin disabled, Shop Manager now had full access to edit any user, including an Administrator account. Once an Administrator account was taken over, an attacker would have full access to the site.

You can see a demonstration of the use of this WordPress flaw and the WooCommerce vulnerability in a video by RIPS Tech below.

It should be noted that in order to successfully exploit this vulnerability, an attacker would need to have access to a user account who is in the Shop manager role. So it would have to be either an inside job or Shop manager credentials would need to be acquired in another way.

“Such access could be obtained via XSS vulnerabilities or phishing attacks.” stated Scannell.

The vulnerability, though, does illustrate how the permission systems for plugins can be taken advantage of by using a vulnerability that would not normally allow a site takeover.

This vulnerability was fixed on October 11th in WooCommerce version 3.4.6.

While WordPress can be configured to automatically update all plugins, Scannel told BleepingComputer that this is not enabled by default and thus many users may still be running older vulnerable versions of the WooCommerce plugin.

Therefore it is important that all users check the version of the installed plugin, and if its its older than version 3.4.6, upgrade to the latest version.

BleepingComputer had contacted Automattic for questions regarding this vulnerability, but had not heard back by the time of this publication.

Related Articles:

Apache Struts Team Urges Users for Library Update to Plug Years-Old Bugs

New PortSmash Hyper-Threading CPU Vuln Can Steal Decryption Keys

Trivial Bug in X.Org Gives Root Permission on Linux and BSD Systems

Unusual Remote Execution Bug in Cisco WebEx Discovered by Researchers

Libssh CVE-2018-10933 Scanners & Exploits Released – Apply Updates Now


Notice: Undefined variable: canUpdate in /var/www/html/wordpress/wp-content/plugins/wp-autopost-pro/wp-autopost-function.php on line 51