Posts by behnish:
Overcome XSS scripting or cross site scripting
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);
}
Install Mac on normal machine
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 [...]



