Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Spam Decimator Details »»
Spam Decimator
Version: 2.0.1, by Fraxter Fraxter is offline
Developer Last Online: Oct 2015 Show Printable Version Email this Page

Category: Anti-Spam Options - Version: 4.1.5 Rating:
Released: 09-27-2011 Last Update: 02-28-2012 Installs: 79
Uses Plugins Auto-Templates
Additional Files Translations Is in Beta Stage  
No support by the author.

Description
Handle spam with two fast clicks.

Features
- Ban user
- Delete all forum threads by user (soft or permanent)
- Delete all forum posts by user (soft or permanent)
- Delete all blog comments by user (soft or permanent)
- Delete all blogs by user (soft or permanent)
- Delete all cms comments by user (soft or permanent)
- Move soft deleted threads to specific forum (option)
- Send auto mail to spammer
- Send auto mail to webmaster
- Set maximum posts for display spam button

Install
1.) Upload all files from the "upload" folder to your forum root
2.) Import the product
3.) Done

Update
1.) Upload all files from the "upload" folder to your forum root (override existing files)
2.) Import the product (override the existing)
3.) Done

Changelog


2.0.1
[BUGFIX] - Blog entries deletion

2.0 Beta 2
[UPDATE] - Improved Decimator view (See: Attachment #3)
[FEATURE] - Added checkbox for blog entry deletion
[BUGFIX] - Textarea (send mail to spammer) only visible if setting is on now

2.0 Beta
[UPDATE] - Updated to vBulletin 4.1.5
[UPDATE] - Made full XHTML valid
[UPDATE] - Updated delete_blog_entries() function (for soft and permanent delete)
[UPDATE] - Replaced all hardcoded text with phrases
[UPDATE] - Various changes
[FEATURE] - ON/OFF Setting for send mail to spammer
[BUGFIX] - Fixed wrong forum/thread rebuilding (reported here: #125)

Note
This is only a beta. Update will follow. Please report bugs and issues in this thread.

Credits
Special thanks to RaidenDAWG2, who's written the original addon. He gave me the permission to update & release it here.

Download Now

File Type: zip spamdecimator_2.0.1.zip (11.7 KB, 338 views)

Screenshots

File Type: jpg spam1.jpg (13.2 KB, 0 views)
File Type: jpg spam2.jpg (14.5 KB, 0 views)
File Type: png decimator.png (35.0 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
6 благодарности(ей) от:
ah-webhosting, amin, hanhdn, Hostboard, Mulet

Comments
  #52  
Old 01-06-2012, 06:10 PM
Hostboard's Avatar
Hostboard Hostboard is offline
 
Join Date: May 2002
Location: CT
Posts: 843
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by amin View Post
Hi

I kind like this Mod at beging but on private message there is an icon you can spam any user! one if my moderator spammed himself!!!!
sorry I have to uninstall it until this bug get fixed
I have this installed on multiple VB4 sites. The SPAM button is the exact same as the ones listed after each thread and brings up the decimator window as shown in the modifications description:

https://vborg.vbsupport.ru/attachmen...4&d=1317579819

It does nothing else. Double checked and working as designed.
Reply With Quote
  #53  
Old 01-12-2012, 05:03 AM
Scyther's Avatar
Scyther Scyther is offline
 
Join Date: Jul 2009
Location: Planet Earth
Posts: 194
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good mod..thanks marked installed.
Reply With Quote
  #54  
Old 01-19-2012, 11:45 PM
MediaHound MediaHound is offline
 
Join Date: May 2004
Location: Florida
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I installed the mod.
I did not visit the settings to REALLY enable blog post spam deletion.
I ran the tool against a user.
His blog spam was still there.
I figured out I REALLY needed to enable the blog spam removal.
I enabled that.
I visited the thread where the post was soft deleted of the user who I ran the tool against.
I ran the tool against him again, this time I was sure I would delete all his blog spam.
All the blog posts on my site were deleted.
I am more than pissed right now, need to restore blog table from most recent incremental rsoft backup.

BE CAREFUL WITH THIS!
Developer should patch to prevent that.
Reply With Quote
  #55  
Old 01-19-2012, 11:59 PM
MediaHound MediaHound is offline
 
Join Date: May 2004
Location: Florida
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here is a very quick and dirty fix for anyone who might do that to themself.
Restore the deleted posts to be visible:
Code:
UPDATE  `forum`.`blog` SET  `state` =  'visible' WHERE  `blog`.`blogid` =1;
and if you are happy,
Code:
UPDATE  `forum`.`blog` SET  `state` =  'visible' WHERE  `blog`.`blogid` >1;
and then restore the deleted comments to be visible:
Code:
UPDATE  `forum`.`blog_text` SET  `state` =  'visible' WHERE  `blog_text`.`blogtextid` =1;
and if you are happy,
Code:
UPDATE  `forum`.`blog_text` SET  `state` =  'visible' WHERE  `blog_text`.`blogtextid` >1;
Reply With Quote
  #56  
Old 01-21-2012, 01:05 PM
MediaHound MediaHound is offline
 
Join Date: May 2004
Location: Florida
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well I just ran it again on a fresh spammer and again all my blog posts are deleted.
Reply With Quote
  #57  
Old 01-21-2012, 01:23 PM
MediaHound MediaHound is offline
 
Join Date: May 2004
Location: Florida
Posts: 165
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Once you restore all the blog posts, you can go in and delete just the offending blog posts and comments, using a query like this
Code:
UPDATE  `forum`.`blog_text` SET  `state` =  'deleted' WHERE  `blog_text`.`userid` =7870
and
Code:
UPDATE  `forum`.`blog` SET  `state` =  'deleted' WHERE  `blog`.`userid` =7870;
just change the userid to the correct one you want to clean up.
Reply With Quote
  #58  
Old 01-21-2012, 03:02 PM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bug confirmed. I will take a look. Thanks for reporting.
Reply With Quote
  #59  
Old 02-01-2012, 06:55 PM
Hostboard's Avatar
Hostboard Hostboard is offline
 
Join Date: May 2002
Location: CT
Posts: 843
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hopefully an update fixing this bug and re-palcement of the SPAM button as requested here: https://vborg.vbsupport.ru/showpost....4&postcount=20
can be done soon. More or less will put the finishing touches on this awsome mod
Reply With Quote
  #60  
Old 02-04-2012, 07:15 PM
mrthe mrthe is offline
 
Join Date: May 2007
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ip ban. would be a perfect idea

great mod ... congrats
Reply With Quote
  #61  
Old 02-29-2012, 03:16 PM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

MediaHound found a huge bug which was related to blog post deletion.
I fixed and updated the mod. It's not the best solution, but for more i haven't time yet.

Sorry for the delay, i hope 2013 i can come back with more features and faster updates. Atm my real life really sucks.
Reply With Quote
Благодарность от:
MediaHound
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 12:36 AM.


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.16726 seconds
  • Memory Usage 2,345KB
  • Queries Executed 27 (?)
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
  • (6)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (6)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (2)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (4)postbit_attachment
  • (11)postbit_onlinestatus
  • (11)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
  • 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
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete