Security
  Home arrow Security arrow Page 6 - A Quick Look at Cross Site Scripting
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
SECURITY

A Quick Look at Cross Site Scripting
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 49
    2005-01-04


    Table of Contents:
  • A Quick Look at Cross Site Scripting
  • What is Cross Site Scripting?
  • Going deeper into JavaScript
  • The hidden link
  • Preventing Cross Site Scripting
  • Coding for our safety

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    A Quick Look at Cross Site Scripting - Coding for our safety
    ( Page 6 of 6 )

    Let’s define a simple function to prevent the querysting from being tampered with external code. The function “validateQueryString()” is the following:

    <?php

    function validateQueryString ( $queryString , $min=1,
                                   $max=32 ) {
      if ( !preg_match ( "/^([a-zA-Z0-9]{".$min.",".$max."}=[a-zA-Z0-9]{".$min.",".$max."}&?)
    +$/", $queryString ) ) {
        return false;
      }
      return true;
    }

    ?>

    Once we have defined this function, we call it this way:

    <?php

    $queryString = $_SERVER[‘QUERY_STRING’];
    if ( !validateQueryString ( $queryString ) ) {
      header( ‘Location:errorpage.php’ );
    }
    else {
    echo ‘Welcome to our site!’;
    }

    ?>

    Let’s break down the code to see it in detail.

    The function performs pattern matching to the querystring passed as a parameter, checking to see if it matches the standard format of a querystring, including GET variable names that only contain the numbers 0-9 and valid letters either in lowercase or uppercase. Any other characters will be considered as invalid. Also, we have specified as a default value that variables can be from 1 to 32 characters long. If matches are not found, the function returns false. Otherwise, it will return true.

    Next, we have performed validation on the querystring by calling the function. If it returns false -- that is, the querystring contains invalid characters -- the user will be taken to an error page, or whatever you like to do. If the function returns true, we just display a welcome message.

    Of course, most of the time, we really know what variables to expect, so our validation function can be significantly simplified.

    Given the previous URL,

    http://www.yourdomain.com/welcomedir/
    welcomepage.php?name=John

    where the “name” variable is expected, we might write the new  “validateAlphanum()” function:

    <?php

    function validateAlphanum( $value , $min = 1 , $max =
                                32 )  {
      if ( !preg_match( "/^[a-zA-Z0-9]{".$min.",".$max."}
    $/", $value ) ) {
        return false;
      }
      return true;
    }

    ?>

    and finally validate the value like this:

    <?php

    $name = $_GET[‘name’];
    if ( !validateAlphanum ( $name ) ) {
      header( ‘Location:errorpage.php’ );
    }
    else {
      echo ‘Welcome to our site!’;
    }
    ?>

    The concept is the same as explained above. The only noticeable difference is that we’re taking in the “name” variable as the parameter for the “validateAlphanum()” function and checking if it contains only the allowed characters 0-9, a-z and A-Z. Anything else will be considered an invalid input.

    If you’re a strong advocate of object oriented programming, as I am, we might easily include this function as a new method for an object that performs user data validation. Something similar to this:

    <?php

    $name = $_GET[‘name’];  
      // get variable value
    $dv = &new dataValidator();  
      // instantiate new data
    validator object
    if ( !$dv->validateAlphanum( $name ) ) {  
      // execute validation method
      header( ‘Location:errorpage.php’ );
    }
    else {
      echo ‘Welcome to our site!’;
    }

    ?>
     

    Pretty simple, isn’t it?

    In order to avoid Cross Site Scripting, several approaches can be taken, whether procedural or object-oriented programming is your personal taste.

    In both cases, we’ve developed specific functions to validate querystrings and avoid tampered or unexpected user input data, demonstrating that Cross Site Scripting can be prevented easily with some help coming from our favorite server-side language.

    Conclusion

    As usually, dealing with user input data is a very sensitive issue, and Cross Site Scripting falls under this category. It is a serious problem that can be avoided with some simple validation techniques, as we have seen through this article.

    Building up robust applications that won’t make poor assumptions about visitor’s input is definitely the correct way to prevent Cross Site Scripting attacks and other harmful techniques. Client environments must always be considered as a pretty unsafe and unknown territory. So, for the sake of your website’s sanity and yours, keep your eyes open.



     
     
    >>> More Security Articles          >>> More By Alejandro Gervasio
     

       

    SECURITY ARTICLES

    - Critical Microsoft Visual Studio Security Pa...
    - US Faces Tech Security Expert Deficit
    - LAN Reconnaissance
    - An Epilogue to Cryptography
    - A Sequel to Cryptography
    - An Introduction to Cryptography
    - Security Overview
    - Network Security Assessment
    - Firewalls
    - What’s behind the curtain? Part II
    - What’s behind the curtain? Part I
    - Vectors
    - PKI: Looking at the Risks
    - A Quick Look at Cross Site Scripting
    - PKI Architectures: How to Choose One





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek