| Author |
How to get an IP |
spike_hacker_inc
Member
Posts: 6
Location: South Africa
Joined: 21.05.05 Rank: Guest |
|
Hey, i was woundering how do you get an IP address of someone, without actually asking them or being phiscally at thier computer???  |
|
| Author |
RE: How to get an IP |
AbSoRb
Member

Posts: 255
Location: /etc/shadow
Joined: 03.08.05 Rank: Hacker Level 3 |
|
when you make a freewebs site, after a week you can make a guest book, and you get the option to record the IP addres of the people who post. then just tell a load of ppl, "hey, i just made a brill new site, go on and sign my guestbook" 
AbSoRb information, and use it wisely.

Thanks for the awesome sig Flash !
http://www.zeroidentity.org
----------------------------------------------------------------------------------------------------
Disclaimer: I am in no way responsible for any of the information posted above or whatever you wish to do with it, it's for learning purposes only |
|
| Author |
RE: How to get an IP |
synstealth
Member
Posts: 778
Location: /etc/shadow
Joined: 30.11.04 Rank: God |
|
|
you dont have to make them POST.. just log it when they view it. simple! |
|
| Author |
RE: How to get an IP |
CNS Chemist
Member
Posts: 187
Location: i'm a racist, educate me.
Joined: 10.03.05 Rank: Moderate |
|
Various ways, like constructing a image that logs IP addresses to a file on an alternate or local server. I'm not listing how to do that, If you dont know already you probably shouldnt 
i'm a racist, educate me. |
|
| Author |
RE: How to get an IP |
BobbyB
Member

Posts: 260
Location: England
Joined: 16.03.05 Rank: Monster |
|
Just get some free php hosting, and put this code in a page and direct them to it
<?php
$ip = getenv('REMOTE_ADDR');
$filename = "iplogger.txt";
$file = fopen($filename, "w");
fputs($ip, $file);
fclose($file);
?>
Their IP will be saved in the file 'iplogger.txt'.
Edited by BobbyB on 11-09-05 01:25 |
|
| Author |
RE: How to get an IP |
fagitz
Member

Posts: 142
Location: That one place
Joined: 23.09.05 Rank: Mad User |
|
|
On a slightly related note, can anyone link me a good free php hosting site. I've googled to no avail, and actually thought they didn't exist. |
|
| Author |
RE: How to get an IP |
nights_shadow
Member

Posts: 856
Location: /var/log/messages
Joined: 30.12.04 Rank: God |
|
Well, there's t35.com. Recently, I was having a hard time just trying to get the damn site to work, but in the past i had good luck with it.
 |
|