Title: Reflected XSS in wordpress plugin recipes-writer v1.0.4 |
Author: Larry W. Cashdollar, @_larry0 |
Date: 2016-02-09 |
Download Site: https://wordpress.org/plugins/recipes-writer |
Downloads: 664 |
Vendor Notified: 2016-02-09 |
Export: Json |
Vendor Contact: plugins@wordpress.org |
Plugin Name: recipes-writer |
Vulnerability: There is a reflected XSS vulnerability in the following php code ./recipes-writer/admin-recipes.php:
54: <li><a href="?page=<?php echo $_GET['page']; ?>&action=edit">Create New Recipe</a></li>
61: <th scope="col" class="col-small"><a href="?page=<?php echo $_GET['page']; ?>&sort=id">ID</a><?php if ( $_GET['sort'] == 'id' || !isset( $_GET['sort'] ) ) echo " ▼"; ?></td>
62: <th scope="col"><a href="?page=<?php echo $_GET['page']; ?>&sort=name">Name</a><?php if ( $_GET['sort'] == 'name' ) echo " ▼"; ?></td>
The variable page appears to send unsanitized data back to the users browser.
|
CVE-ID: 2016-1000147 |
File:./recipes-writer/admin-recipes.php |
Exploit Code: Exploit was derived from appearance of first vulnerable parameter in code, there could be more shown above.
|