Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 07-21-2015, 01:23 PM
skubaman skubaman is offline
 
Join Date: Dec 2006
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default So much SPAM!

Hi,
Running Vb 3.8.8. I have human verification on with recaptcha. I also run vBStopForumSpam and Spam Manager linked to Akismet. Nonetheless there has been an explosion of spam on my forum recently. There are so many new members and messages that it's hard to clean up.

How are bots signing up as new users when I have recaptcha on? What can I do to reduce spam at this point?

If you also have any tips on how I can quickly delete the current spam would be really helpful. Currently I have to go topic to topic, selecting all posts and deleting as spam. Is there a quicker way to identify all spam?

Thank you so much
Reply With Quote
  #2  
Old 07-21-2015, 01:59 PM
Bozza Bozza is offline
 
Join Date: Jul 2003
Posts: 48
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do you manually verify accounts? That's what we have done for a long, long time - it's the best way to stop anything coming through.

That said we don't get many spammers getting in (on our vB4 site) and do not run any of the measures you detail above. We have human verification with custom questions on the subject matter of our forum niche.

We did have a recent explosion however, and they were getting in through Tapatalk where the parameters were initially set to allow people to bypass the manual new account verification. Once we turned that off, they went away immediately again.
Reply With Quote
  #3  
Old 07-21-2015, 06:51 PM
skubaman skubaman is offline
 
Join Date: Dec 2006
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, I did not require approval for new users. That usually causes a big drop in participation. But since I noticed this big increase in SPAM, I have switch to require approval until I can improve the situation.

Vbulletin support said I should switch from recaptcha to questions and answers. I do feel these can create drop off of registrations as well, but I will give it a try.

Right now, I am getting about 1 new SPAM member per hour.

Anybody has tips to clean up the spam quick? I don't like that limit that we can't delete more than 50 spam messages from same author through the forum, only through admin.

Thanks

--------------- Added [DATE]1437524720[/DATE] at [TIME]1437524720[/TIME] ---------------

Was wondering if anyone can recommend a good solution to clean up spam that will work on vB 3.8.8?

Is there a way to block any account trying to sign up with a .ru email address? Is there a way to ban users in bulk and delete all their messages? Let's say find everyone with email .ru, ban them and delete all their posts?

Thanks
Reply With Quote
  #4  
Old 07-23-2015, 03:52 AM
skubaman skubaman is offline
 
Join Date: Dec 2006
Posts: 80
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi, still hoping someone can suggest some tools/mods. I know of mods to help block spam posts. But I am in need of doing a big cleanup. There are so many SPAM posts that I can manually delete the posts and ban users one by one.

I already have "one touch ban" mod but it requires doing one user at a time. I have hundreds to ban.

I am familiar with the tools provided by vB, but looking for more efficient solutions. For example:

- way to search all users with email ending in .ru and ban them all in bulk? Even better if it will delete all their messages at the same time
- or search all posts with the word "sunglasses", and then I can delete all in bulk, and even better ban all the users that posted them.

Thanks so much
Reply With Quote
  #5  
Old 07-23-2015, 07:20 PM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is a kind of risky thing that involves changing the database directly, but I think what you can do is this:

1) Create a new usergroup (probably by copying the banned group), and note the usergroupid.

2) Do one or more queries to update users' usergroupids to the one you just created, based on whatever criteria you want. Obviously this requires some sql knowledge. But for example, you mentioned email addresses ending in .ru . This should do that:
Code:
UPDATE user SET usergroupid=X WHERE email LIKE '%.ru'
where X is the usergroup id of the new usergroup you created in step 1. Obviously this is the dangerous part. If you make a mistake in the query you could change all users or something bad like that. If you want to try this, make a database backup first.

If you wanted to look over the users before setting a new usergroup, you could do this:
Code:
SELECT username, email FROM user WHERE email LIKE '%.ru'
(Note that the WHERE part is the same as in the UPDATE query).

3) Now you can use Move/Prune users to delete all users in the new group, and all their posts and anything else should be gone as well.

Danger Will Robinson! Use at your own risk. Backup first!
Reply With Quote
Благодарность от:
yellow_spider
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:06 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04706 seconds
  • Memory Usage 2,200KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (5)post_thanks_box
  • (1)post_thanks_box_bit
  • (5)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (5)post_thanks_postbit_info
  • (5)postbit
  • (5)postbit_onlinestatus
  • (5)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete