About behnish

  • Website: or email
  • Biography:

Posts by behnish:

 
0

Overcome XSS scripting or cross site scripting

on Feb 17, 2011 in PHP

Just paste this code in a header file which is included in the site. You can exclude the fields like description while filtering the POST And GET.


foreach ($_GET as $key => $value) {
$_GET[$key] = strip_tags($value);
}

foreach ($_POST as $key => $value) {
$_POST[$key] = strip_tags($value);
}

foreach ($_SERVER as $key => $value) {
$_SERVER[$key] = strip_tags($value);
}
 

 
0

Install Mac on normal machine

on Dec 28, 2010 in Security, Windows

Introduction There are thousands of Computer Users who would always dream to own a Mac and this is not just for the beautiful looks or the powerful hardware but for the Operating System OS X which is one of the reason Apple is selling their products in large numbers. Now its quite possible for anyone [...]

bottombar