jwk811 Posted May 30, 2010 Share Posted May 30, 2010 theres a bunch of membership sign ups on my site. they make their account, verify their email and never come back. i can tell they are all similiar because their passwords are always 10 random numbers and letters and their usernames have a similar style. jw if these are bots and if so what the hell does that mean? thanks Quote Link to comment https://forums.phpfreaks.com/topic/203383-bots-making-accounts-on-my-site/ Share on other sites More sharing options...
mapleleaf Posted May 30, 2010 Share Posted May 30, 2010 Keep track of ip,user_agent info and the time of registration. Often bots will do lots of activity in a couple of seconds. At least this will help you know what you are dealing with You could also block bots by browser string. Java.... is never a user agent you need on your site. Some are malicious. Quote Link to comment https://forums.phpfreaks.com/topic/203383-bots-making-accounts-on-my-site/#findComment-1065475 Share on other sites More sharing options...
jwk811 Posted June 1, 2010 Author Share Posted June 1, 2010 i dont understand Quote Link to comment https://forums.phpfreaks.com/topic/203383-bots-making-accounts-on-my-site/#findComment-1066286 Share on other sites More sharing options...
premiso Posted June 1, 2010 Share Posted June 1, 2010 If they are bots, you can try and implement reCaptcha to at least slow them down in their user creation process. But if they are spam bots, ips etc is not going to help. They generally use proxies and generate a new ip for each new account etc and user_agents are easily spoofed. Quote Link to comment https://forums.phpfreaks.com/topic/203383-bots-making-accounts-on-my-site/#findComment-1066309 Share on other sites More sharing options...
Alex Posted June 1, 2010 Share Posted June 1, 2010 i can tell they are all similiar because their passwords are always 10 random numbers and letters I know it's not directly on topic, but you shouldn't be storing passwords like that. It's very insecure and no one should register on your website if that's how you're storing passwords. I know I wouldn't. Instead you should be storing a hash of their password so that if your database is compromised the passwords are still protected. Quote Link to comment https://forums.phpfreaks.com/topic/203383-bots-making-accounts-on-my-site/#findComment-1066318 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.