Wednesday, 1 January 2014

How to Trace Someone's IP ?

Go through the Steps

Step 1 :
You need a Online hosting where you need a domain also i prefer 000webhosting , 1Freehosing.

Step 2 :
Create 2 files
i) index.php
ii) log.txt

now put this in index.php
<html>
<?php
$file = "log.txt";
$f=fopen($file, 'a');
fwrite($f,$_SERVER['REMOTE_ADDR']."\n\n");
fclose($f);
?>
//You can customize this part to make your page look attractive
</body>
</html>

Save the file and send the link to the Victim

the Ip of the user will be saved in log.txt

No comments:

Post a Comment