d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Is There Any Way To > Track Ip/isp Addy From A Facebook Page
Add Reply New Topic New Poll
Member
Posts: 23,320
Joined: Jan 12 2008
Gold: 1,589.85
Apr 1 2013 04:20pm
Being harassed and stalked by a random facebook page and would like to know if there is any way to prove who I think it is via Ip/Isp or anything along those lines
Member
Posts: 13,425
Joined: Sep 29 2007
Gold: 0.00
Warn: 20%
Apr 1 2013 04:28pm
yes there is but it would require you having access to your own server with an httpd installed. (or simple a netcat listener with verbose output selected.)

what you would do is simply upload an image to your httpd and ask them to visit it which your httpd if configured to log, will log the ip address to your log files.

another method is via netcat where you can set it to listen on port 80 (requires sudo or root access on some machines) and you can then send the stalker to any page on that box. ex: www.yourmachine.com/reallycoolimage.jpg and netcat will dump all the connection info to stdout.

another method is to write a php script and put it on your httpd and simple save the remote address to a text file like so

Code
file_put_contents('filename.txt', $_SERVER['REMOTE_ADDR'], FILE_APPEND);


all this is based off convincing the stalker to look at your image or visit your machine on port 80 though.

This post was edited by AbDuCt on Apr 1 2013 04:29pm
Member
Posts: 11,610
Joined: Oct 28 2008
Gold: 1,795.00
Apr 1 2013 08:36pm
Quote (AbDuCt @ Apr 1 2013 05:28pm)
yes there is but it would require you having access to your own server with an httpd installed. (or simple a netcat listener with verbose output selected.)

what you would do is simply upload an image to your httpd and ask them to visit it which your httpd if configured to log, will log the ip address to your log files.

another method is via netcat where you can set it to listen on port 80 (requires sudo or root access on some machines) and you can then send the stalker to any page on that box. ex: www.yourmachine.com/reallycoolimage.jpg and netcat will dump all the connection info to stdout.

another method is to write a php script and put it on your httpd and simple save the remote address to a text file like so

Code
file_put_contents('filename.txt', $_SERVER['REMOTE_ADDR'], FILE_APPEND);


all this is based off convincing the stalker to look at your image or visit your machine on port 80 though.


not sure if facebook does chat by ip anymore, could just install wireshark to do this easily, I'm sure they do voip so if you could facetime them it'd be a sure thing

or do what abduct said
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Apr 1 2013 09:19pm
Have you considered just blocking them? I'm pretty sure facebook has some sort of support for that.
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll