Bot attack
-
please update if successful @meetdilip
-
Can confirm that spam-be-gone works great... blocking many registration attempts.
These are the last 10 lines from this community's output log:
warn: [plugins/spam-be-gone] Joshuadal | [email protected] was detected as spammer and was denied registration. warn: [plugins/spam-be-gone] ZnSGUwavuCo | [email protected] was detected as spammer and was denied registration. warn: [plugins/spam-be-gone] ZnSGUwavuCo | [email protected] was detected as spammer and was denied registration. warn: [plugins/spam-be-gone] BPtiTRyfdu | was detected as spammer and was denied registration. warn: [plugins/spam-be-gone] BPtiTRyfdu | was detected as spammer and was denied registration. warn: [socket.io] Unrecognized message: meta.updateHeader warn: [socket.io] Unrecognized message: meta.updateHeader warn: [plugins/spam-be-gone] Joshuadal | [email protected] was detected as spammer and was denied registration. warn: [plugins/spam-be-gone] Martinor | [email protected] was detected as spammer and was denied registration. warn: [plugins/spam-be-gone] Joshuadal | [email protected] was detected as spammer and was denied registration.
Edit
warn: [socket.io] Unrecognized message: meta.updateHeader
Speaking of that -- who the heck is still browsing NodeBB with client scripts from 2 weeks ago? F5 already...!
-
-
Same here with the bot attack. Works just fine now!
-
Thanks @bentael
-
@meetdilip Log in attempts has been in for weeks, go into your ACP, General Settings, then User, it's about half way down, you can specify how many attempts and for how long they're locked out. As for Q&A, someone can ask a question, someone else can provide the answer in the form of a comment. If you're referring to a way of changing the order based on a best answer, then this issue should be relevant to your interests. #450
-
ur welcome boyz. Captcha support is added, but not published yet pending PR merge,
-
warn: [plugins/spam-be-gone] hgmgcrxzd | [email protected] was detected as spammer and was denied registration.
info: [plugins] Problem executing hook: filter:user.create
warn: [plugins/spam-be-gone] hgmgcrxzd | [email protected] was detected as spammer and was denied registration.???
info: [plugins] Problem executing hook: filter:user.create
What? -
@a_5mith said:
@meetdilip Log in attempts has been in for weeks, go into your ACP, General Settings, then User, it's about half way down, you can specify how many attempts and for how long they're locked out. As for Q&A, someone can ask a question, someone else can provide the answer in the form of a comment. If you're referring to a way of changing the order based on a best answer, then this issue should be relevant to your interests. #450
Thanks. I thought it will be a plugin. As for Q&A, I mentioned while on registration.
-
-
@a_5mith said:
@meetdilip https://github.com/akhoury/nodebb-plugin-spam-be-gone
Thanks. I am a bit reluctant as our ISP is a government owned and gives dynamic IP. These are highly misused by spammers. So I will be in effect blocking my target audience. Is there any way that I can add an extra layer of protection which does not involve blocking blacklisted IPs ?
-
@meetdilip I'm not sure on how this exact plugin works other than checking against project honeypot, but Project Honeypot & http:bl does more than just look at IP. It also checks the contents of the Header Request for things like the username & password used and if they match the honeypot, human users with blocked IPs are usually sent to a custom 403 page that contains a link for them to "unblock" the account, this basically asks them to fill out a range of spam busting questions, this then whitelists that IP. However I believe this is done by an apache extension, one for nginx doesn't yet exist. In addition, the http:bl can be set to only go back a set number of days, my SMF forum is currently set to 30 days and with a spam level of 25 (defaults) and it's blocked 1100 spam registrations in 7 days, an example has been posted at the bottom of this post.
Captchas haven't worked for years, I don't even bother using them in production, you have to make them so complicated that humans find them harder to complete than bots. So they're a waste of time, unless you create your own algorithm. Google have broken their own captcha system (the one that uses the picture of a house number and a string of numbers) so it's only a matter of time before bots can.
There's no 100% effective way of removing spam, even a Q&A could be bruteforced, it's the combination of many small spam protection techniques that make it effective. Integration of Q&A is definitely one method. Making it look like a password verification box, but requiring a completely different value, has stopped 80% of my spambot registrations.
In the below image, look at the entity field, passwrd2 is my question and answer form. Whether this is possible in this plugin, I'm not sure, we would have to ask the creator.