Skip to main content

Home/ Wordpress/ Contents contributed and discussions participated by David McCart

Contents contributed and discussions participated by David McCart

David McCart

Yoast GA Plugin for WP - Cross Site Scripting Vulnerability - 14 views

XSS wordpress plugin
started by David McCart on 04 Dec 09 no follow-up yet
Tsudo liked it
  • David McCart
     
    Yoast GA Plugin for WP - Cross Site Scripting Vulnerability

    Version Affected: 3.2.4 (newest)

    Info: The Google Analytics for WordPress plugin automatically tracks and
    segments all outbound links from within posts, comment author links, links
    within comments, blogroll links and downloads. It also allows you to track
    AdSense clicks, add extra search engines, track image search queries and it
    will even work together with Urchin.

    Credits: InterN0T

    External Links:
    http://yoast.com/wordpress/google-analytics/


    -:: The Advisory ::-
    On line 353 in googleanalytics.php the following vulnerable code was identified:
    /**
    * If this is a 404 page, track the 404 and prevent all other stuff as it's not needed.
    */
    if ( is_404() ) {
    echo "\t\t".'pageTracker._trackPageview("/404.html?page=" + document.location.pathname + document.location.search + "&from=" + document.referrer);'."\n";
    echo "\t".'} catch(err) {}'."\n";
    echo '</script>'."\n";
    } else if ($wp_query->is_search && $wp_query->found_posts == 0) {
    echo "\t\t".'pageTracker._trackPageview("'.get_bloginfo('url').'/?s=no-results: '.$wp_query->query_vars['s'].'&cat=no-results");'."\n";
    echo "\t".'} catch(err) {}'."\n";
    echo '</script>'."\n";

    In order to trigger this bug, a 404 (Not Found) message must be the response when supplying the XSS code into the search-form.

    One can either end the script tag or use javascript in order to abuse this issue.


    Proof of Concept's:
    A. </script>alert(0)</script>
    B. ");alert(0);document.write("

    Example:
    A. hxxp://localhost/wp/?s=</script><script>alert(0)</script>
    B. hxxp://localhost/wp/?s=");alert(0);document.write("

    If magic_quotes is enabled inside php.ini, Proof of Concept (B) wont work.


    -:: Solution ::-
    The following patch was supplied to the vendor:

    On line 361 in googleanalytics.php the following piece of code is vulnerable to Cross Site Scripting:
    echo "\t\t".'pageTracker._trackPageview("'.get_bloginfo('url').'/?s=no-results: '.$wp_query->query_vars['s'].'&cat=no-results");'."\n";

    In order to prevent this, One will have to use f.ex. htmlentities or rawurlencode to secure it:
    echo "\t\t".'pageTracker._trackPageview("'.get_bloginfo('url').'/?s=no-results: '.rawurlencode($wp_query->query_vars['s']).'&cat=no-results");'."\n";

    The reason why we thought rawurlencode might be suitable is because htmlentities in a tracking URL might break the Google Analytics Tracking.


    Disclosure Information:
    - Vulnerability found 3rd December
    - Patch was made available 4th December
    - Disclosed on InterN0T 4th December
    - Vendor and Buqtraq (SecurityFocus) contacted the 4th December


    All of the best,
    MaXe

    No virus found in this incoming message.
    Checked by AVG - www.avg.com
    Version: 9.0.709 / Virus Database: 270.14.91/2542 - Release Date: 12/03/09 19:36:00
David McCart

6 Steps to Kill Your Community - Matt Mullenweg - 0 views

  •  
    you probably have all seen this in Wordpress News
David McCart

WordPress Plugin - KeywordLuv | More Than Scratch The Surface - 0 views

  •  
    i'm sure this has been already saved, but its friday and i'm feeling reckless
David McCart

20 MUST HAVE Wordpress Plugins For You To Get Started Effectively | Onextrapixel - Show... - 0 views

  •  
    nice list, i'd say another, but it was the one before
  •  
    nice list
David McCart

The Autopsy Of WordPress As CMS With 25 Great WP Plugins & Designs | Onextrapixel - Sho... - 0 views

  •  
    nice list to consider
1 - 6 of 6
Showing 20 items per page