I made a website with a login script. Now there is some guy that makes false logins all the time. For example usernames like ‘lfdjgh’ and email addresses like jkgfhkjghf@dkhfkgh.com. I want to find out where this person is located etc.
Is there a way to find some detailed information about that user? Computer-name, Ip address, location, etc?
Thanks
I agree with that the other answers have said, you can use the values passed with
$_SERVERto help avoid this.Along with adding a CAPTCHA to your page, you can also add the IP address to your database, grabbed with
$_SERVER['REMOTE_ADDR']and compare known spam IP’s to new registrations, and check if its a known spammer. Its what I do, and I don’t have much spam at all (:Happy hunting!