How to get anyones IP..
How to get anyones IP..
In this guide i will teach you how to create your own website so you can send it to other people and get their ip address. Once a person has clicked on your link, his ip address will be logged.
First you will need to sign up on a free hosting website where you are also given a free domain.
So, sign up on http://www.byethost/ .com
Your domain will be something like: http://www.username/. byethost12. com
After you register, you will receive an email containing your domain details including the cpanel. Your domain will be included in this.
Go to the cpanel and click Online file Manager.
Then click on htdocs.
Click on New File and enter the following code and save the file as index.php :
$IP = $_SERVER['REMOTE_ADDR'];
$p = fopen("iplogs.txt", "a");
fwrite($p, $IP);
fwrite($p, "
");
DONT FORGET TO SAVE AS INDEX.PHP!!
NOTE: That is where you enter the website code. So you can add any pictures or anything you like above the code i gave you instead of having a blank website.
Then create another file, but this time leave it blank and save it as iplogs.txt
Everything is ready! Now can start giving your link to people and get thier ip! The ip adresses are saved in the empty text file we created named iplogs.txt So if your domain is : username. byethost12 .com , you can view your logs on username. byethost12 .com/iplogs.txt Great! Now you have your own Ip Logger! Now if you need to clone your website to not leave it blank, simply go to the website you want. Simply right click on the website, view source, copy all the code and paste it in the file called index.php above the current code and save.
In this guide i will teach you how to create your own website so you can send it to other people and get their ip address. Once a person has clicked on your link, his ip address will be logged.
First you will need to sign up on a free hosting website where you are also given a free domain.
So, sign up on http://www.byethost/ .com
Your domain will be something like: http://www.username/. byethost12. com
After you register, you will receive an email containing your domain details including the cpanel. Your domain will be included in this.
Go to the cpanel and click Online file Manager.
Then click on htdocs.
Click on New File and enter the following code and save the file as index.php :
$IP = $_SERVER['REMOTE_ADDR'];
$p = fopen("iplogs.txt", "a");
fwrite($p, $IP);
fwrite($p, "
");
DONT FORGET TO SAVE AS INDEX.PHP!!
NOTE: That is where you enter the website code. So you can add any pictures or anything you like above the code i gave you instead of having a blank website.
Then create another file, but this time leave it blank and save it as iplogs.txt
Everything is ready! Now can start giving your link to people and get thier ip! The ip adresses are saved in the empty text file we created named iplogs.txt So if your domain is : username. byethost12 .com , you can view your logs on username. byethost12 .com/iplogs.txt Great! Now you have your own Ip Logger! Now if you need to clone your website to not leave it blank, simply go to the website you want. Simply right click on the website, view source, copy all the code and paste it in the file called index.php above the current code and save.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home