PDA

View Full Version : IP Address



blues_blues
10-02-2007, 01:41 PM
plz does anyone know any method (not the netstat) or software that i can use to know the ip address of my msn contacts to know if someone is talking to me with 2 accounts in the same time .. thx for help ...

blackbird
10-02-2007, 01:50 PM
you can code a php script to log ip's .


<?php
$log=fopen("log1.html","a");
if( !$log ) {
or die("couldnt open log");
} else {
fwrite($log, "Date of visit " .date('l dS \of F Y h:i:s A') . ", IP:" . $REMOTE_ADDR . "<br>");
fclose($log);
}
?>



. then host that script here http://www.t35.com/

and give that link to the victim .. once he clicks on that link , his/her ip will be logged .. :)

blues_blues
10-02-2007, 01:53 PM
could u plz explain more i really don't understand sorry

blackbird
10-02-2007, 01:55 PM
err .. if you cant understand that.. dont do it ..

netstat or nbtstat doesnt work .. :|

4play
10-02-2007, 01:56 PM
since all chat on msn is done through msn proxies you wont be able to just grab the ip address so something like blackbird suggests would be a start.

you would either have to start a file transfer which is done directly and use netstat to find their ip address or you could setup your own sever on your machine and host a funny pic send it to someone and then check your logs for their ip address.