16 September, 2012

Get IP adress of your Target[TUT]

This method always worked for me so i am sharing it with you its very common but still very powerful.
1. Create a account on a webhost like 000webhost or just make a search here http://www.free-webhosts.com/
2. Once you have logged in click on Online File Manager
3. Now click on the folder htdocs.
[Image: 16XCy.png]
4.Create a new file and name it "iplogger.php" and enter the following code in it.

Code:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$desp = $_SERVER['REQUEST_URI'];
$psed = date("d-m-y / H:i:s");
$fde = $psed . " - " . $ip . " - " . $desp . "<br />";
$fopen = fopen("iplog.html", "a");
fwrite($fopen, $fde);
fclose($fopen);
header("Location: http://google.com");
?>
click on save and we are done!
Now anyone who clicks on the link


Code:
http://yourwebsite.com/iplogger.php
you will log their ip and they will get redirected to google.com you can chage that part though.
And to view your recorded go to "yourwebsite.com/iplog.html"

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home