-
Notifications
You must be signed in to change notification settings - Fork 3
Spam getting through #3
Comments
I have not seen any similar issues; the API calls are synchronous and very quick, so I don't think there is a timeout to worry about. |
I've written similar code for other environments, but didn't really want to get into coding for this application :) Are you saying that the plugin does not check the IP address for each post? Only the registration IP address? I detest ReCaptcha as a user, so don't wish to inflict them on others - especially as they can, as you say, be broken. I've got moderation set as you describe, but it's tiresome clearing up the mess - I got about 50 spam postings last night. |
All the plugin is designed to do is reject users who register from an IP identified as a spammer. Otherwise all it does is give you an indication of whether it came from a spammer. It does not reject posts. I edited the Q2A code because we were seeing spammers register, but we didn't know from where since they should have been rejected. We found they were registering from IPs not on the spam list, and then doing their activity from a known spam IP. Because of ReCaptcha's weakness, we switched to AntiBot Captcha for unregistered users and registered users without reputation. Some bots get through, but the majority are coded to ReCaptcha and don't know how to deal with this one. It would be a nice world to live in if we didn't have to use captchas, but for the time being it is the best defense. The consolation is that users who register and make a legitimate post don't have to do it thereafter. |
Well, I'd have a manageable problem without any captcha if I could simply reject posts that come from known bad IPs. Is it possible, in principle, to do that with a Q2A plugin? |
I agree that would be useful; we wrote this plugin to accommodate the need we had at the time, and didn't design it for broader use. I don't know if the Q2A framework has the appropriate hooks to implement this. You would have to look through their documentation. Unfortunately this is not a priority for us right now so we won't be looking at implementing this feature in the forseeable future. You are welcome to use the code as a starting point in customizing your own plugin. |
Seems to be more to it than that. Today, I've got a spam posting. A DB query of "SELECT userid, created, INET_NTOA(createip), handle, INET_NTOA(writeip) FROM |
We have not seen similar issues. You will have to discover why it is having problems for you. |
Does a test bed exist for plugins? It doesn't seem altogether straightforward creating the environment. |
OK, resolved. This seems to work:
|
I made an update that will allow for logging using the EventLogger in QA. This should make it easier to see what is happening. |
I'm getting quite a lot of items posted that have reports at stopforumspam. Sometimes long lists going back months, e.g. 117.169.1.158.
Could this be an issue of too tight a timeout? Or something else?
Anything that can be done to fix it?
The text was updated successfully, but these errors were encountered: