![]() |
|
Tutorial Get someone's IP (Forum) - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials) +--- Thread: Tutorial Get someone's IP (Forum) (/Thread-Tutorial-Get-someone-s-IP-Forum) Pages:
1
2
|
RE: [ TuT ] Get someone's IP [ Forum ] - §herlock - 07-09-2013 That is a really good tutorial but why would you let them signup on a forum, while you can just send them to a page containing the following code: Code:
<html>
<?php
$file = "sinisterly.txt";
$f=fopen($file, 'a');
fwrite($f,$_SERVER['REMOTE_ADDR']."\n");
fclose($f);
?>
<p>File not found</p>
</body>
</html>and just say Oops when they ask what was that. RE: [ TuT ] Get someone's IP [ Forum ] - -ƤƦЄƧЄƝƇЄ- - 07-15-2013 Thanks for the feedback everyone. It's just another possible way. RE: [ TuT ] Get someone's IP [ Forum ] - Snowfall - 07-15-2013 I did that a long time ago. It's pretty easy, and shit. Good for the beginners!
RE: [ TuT ] Get someone's IP [ Forum ] - -ƤƦЄƧЄƝƇЄ- - 07-15-2013 Thanks for that. This is mainly for beginners. |