Quote (Azrad @ Sep 16 2013 02:09pm)
But if this is a serious theft, I would just call the police. If they take it seriously, they have the clout to get the IP addresses from servers, and to get the info on who was issued that IP during the time period in question (from the ISP).
This
Also yes if you just want to grab their ip it's fairly simple
I used the following website to grab the ip of the fake "jessica nigri" on jsp
http://jessicanigriblog.netne.net/You don't need to go there if you don't want, it's just a working example, the following code is what is used on that page->
Along with some text to scare him
Code
<?php
$senderip = $_SERVER['REMOTE_ADDR'];
mail("youremail@gmail.com", "Subject: Grabbed Email", "The IP is " . $senderip, "From: youremail@gmail.com" );
?>