Attack Alert :: Decoding

Attack Alert :: Decoding

  1.    // Split words and phrases
  2.    $words = explode(' ', trim(urldecode($HTTP_GET_VARS['highlight'])));
  3.  
  4.    for($i = 0; $i < count($words); $i++)   {
  5.       if (trim($words[$i]) != '') {
  6.          $highlight_match[] = '#\b(' . str_replace("*", "([\w]+)?", $words[$i]) . ')\b#is';
  7.       }
  8.    }
  1. ./?&highlight=%2527%252e_____insert code here_____%252e%2527"