vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Anti-Spam Options - Spam Decimator (https://vborg.vbsupport.ru/showthread.php?t=271057)

Mulet 10-25-2011 02:53 PM

Do I win a prize or kick in the ass?

https://vborg.vbsupport.ru/external/2011/10/14.png

Mulet 10-25-2011 02:58 PM

See boys a girls, this is why you don't use phpbb3 and then get taken away from your forums by a new job on short notice.

https://vborg.vbsupport.ru/external/2011/10/13.png

Fraxter 10-25-2011 09:05 PM

Quote:

Originally Posted by Kzyl-orda (Post 2261178)
I guess "2.0 Beta 2" is a more updated version of the mod rather then "2.0 Beta", however I find it a bit ambiguos.

Yes, sorry for that. Think it will be more clear if i released the final 2.0.

Quote:

Originally Posted by Kzyl-orda (Post 2261178)
Also I can't find the option menu, so I can't choose to wich forum move the deleted posts and neither to hard delete them.

Go to ACP --> vBulletin Settings --> Spam Decimator Settings

Quote:

Originally Posted by Kzyl-orda (Post 2261178)
Also I think that the "check IP adress" should only tell moderator if anybody used the same IP adress and then give him the possibility to choose accordingly, giving them some kind of link and not brutally deleting. This may lead to errors. Painful errors.

The "check IP Address" option only tell all users which have the same ip. It takes no action against the other users, only against the choosen one.

Quote:

Originally Posted by Kzyl-orda (Post 2261178)
Also I should be able to disable to the moderators the ability to ban// check the same ip adress.
I can't allow moderators to use this mod untill you give us the possibility to limit the "check same IP adress", in some enviroments is a too risky option, you know how are customers...

If you need it, i can implement an on/off option for that feature in the next release.
Quote:

Originally Posted by Kzyl-orda (Post 2261178)
To give you some examples:
-People in China who live in a big many-family-one-house
-Students at university
-People at work
-Internet caf?s
-Hostels, dormitories.
As you see it's not so hard to find you people that match the same IP while registering and in that precise moment, and maybe just one of them is a spammer, not everybody is so luck to have a private internet connection at home.

Yeah, i fully understand what you mean. That's the reason why this option has only the job to show the users, not ban/delete anything.

Kzyl-orda 10-26-2011 03:22 PM

Quote:

Originally Posted by Fraxter (Post 2261527)
Yeah, i fully understand what you mean. That's the reason why this option has only the job to show the users, not ban/delete anything.

I misunderstood its use then, you may wisely describe this for the new users to come.
Quote:

Originally Posted by Fraxter (Post 2261527)
Go to ACP --> vBulletin Settings --> Spam Decimator Settings

Found thanks, you may also want to add this too in this page mod description.
Quote:

Originally Posted by Fraxter (Post 2261527)
If you need it, i can implement an on/off option for that feature in the next release.

No, I said this while misunderstanding how the mod works, it's fine like that.

Thanks for your help

datoneer 10-30-2011 12:27 PM

Amazing MOD. Installed, nominated for MOTM. Thank you so much for this!

Hostboard 12-15-2011 11:19 PM

Post #36 really really needs to be implemented replacing the current SPAM link. Spammers that don't touch the forums can't be decimated :(

phdev 12-16-2011 10:48 AM

Can I use this to scan for spam and mass delete spam?

Fraxter 12-16-2011 07:25 PM

Quote:

Originally Posted by phdev (Post 2278280)
Can I use this to scan for spam and mass delete spam?

Scanning: No.
Mass delete: yes

cayne 12-29-2011 01:18 AM

I got a question, I want all threads/posts to be moved into a specific forum, I see there's an option to do that:
Quote:

- Move Threads to Specified Forum? - Yes
- Which forum shall be used as the "junk" forum (i.e. what forum threads are moved to if Move To Forum? is enabled)?
I enabled this option, but when I use the mod it doesn't seem to "move" the thread to the specific forum, but deletes it completely. I've tested it with a user and a post of myself, but wasn't able to find the thread or my reply in the thread, which was created by a user I used this mod on.

(The id, is the number at the end of the url, when I click on the forum, right?!)

Besides that, great mod, def. going to use it!

amin 01-05-2012 11:03 PM

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

Hostboard 01-06-2012 06:10 PM

Quote:

Originally Posted by amin (Post 2284291)
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.

Scyther 01-12-2012 05:03 AM

Good mod..thanks marked installed.

MediaHound 01-19-2012 11:45 PM

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.

MediaHound 01-19-2012 11:59 PM

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;

MediaHound 01-21-2012 01:05 PM

Well I just ran it again on a fresh spammer and again all my blog posts are deleted.

MediaHound 01-21-2012 01:23 PM

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.

Fraxter 01-21-2012 03:02 PM

Bug confirmed. I will take a look. Thanks for reporting.

Hostboard 02-01-2012 06:55 PM

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 :)

mrthe 02-04-2012 07:15 PM

ip ban. would be a perfect idea

great mod ... congrats

Fraxter 02-29-2012 03:16 PM

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.

MediaHound 03-01-2012 09:22 PM

Thanks, will give it a whirl.

vividbreeze 03-08-2012 02:42 PM

Be nice to get a option in ADMINCP to do this to spammers. And even remove all with same iP for numerous signups

Talk Hard 03-11-2012 12:22 PM

Installed it and all my thread urls are blank white pages when enabled.

MediaHound 03-16-2012 03:42 PM

Quote:

Originally Posted by vividbreeze (Post 2307506)
Be nice to get a option in ADMINCP to do this to spammers. And even remove all with same iP for numerous signups

Yea I have spammers that only blog post and so there is not an easy way to hit a SPAM button on their "forum posts". So there is no doorway to execute this on certain people who need it. ADMINCP option is needed badly.

Hostboard 03-16-2012 04:22 PM

Quote:

Originally Posted by MediaHound (Post 2310100)
Yea I have spammers that only blog post and so there is not an easy way to hit a SPAM button on their "forum posts". So there is no doorway to execute this on certain people who need it. ADMINCP option is needed badly.

My post #20 in this thread describes this request. Post #36 describes how to do this. Still hopeing the author implements this into the core. Until then use TMS to make the changes.

dadoc 04-07-2012 09:31 PM

Great Mod no probs
Who doesn't love to hit that decimate button?

GhostHunter2010 06-04-2012 02:08 PM

i installed this on vb 4.2.0 but is not showin up the spam thing how can i make this show the spam txt on postbit thanks

Jimandbob 06-13-2012 10:46 AM

Quote:

Originally Posted by GhostHunter2010 (Post 2336488)
i installed this on vb 4.2.0 but is not showin up the spam thing how can i make this show the spam txt on postbit thanks

Same problem here, any ideas ?

Fraxter 06-30-2012 01:34 PM

Looks like the template was changed. Sorry guys i've atm no time for future updates. Everybody feel free to update the mod.

lazytown 11-25-2012 08:30 AM

Quote:

Originally Posted by hanhdn (Post 2259648)
You find {vb:raw template_hook.memberaction_dropdown_items} in memberaction_dropdown template, then add above it:


PHP Code:

<vb:if condition="$bbuserinfo[usergroupid] == 6||$bbuserinfo[usergroupid] == 7||$bbuserinfo[usergroupid] == 5||$bbuserinfo[usergroupid] == 10">
<
li class="left">
<
img src="{vb:stylevar imgdir_siteicons}/moderation.png" alt="" />
<
a href="#" class="spam" onclick="window.open('decimator.php?userid={vb:raw post.userid}&amp;threadid={vb:raw post.threadid}&amp;postid={vb:raw post.postid}','spam_decimator','statusbar=yes,menubar=yes,toolbar=yes,scrollbars =yes,resizable=yes,width=850,height=600'); return false;"><font color="red">Spam</font></a>
<
span class="seperator">&nbsp;</span>
</
li>
</
vb:if> 

You can change the groupid number depend on your forum;)


This code is not working in 4.2. It seems like it should, but it pops open a spam decimator window with empty strings for userid, postid, etc.

DoubleGlasses 01-09-2013 06:20 AM

1 Attachment(s)
Hello All,

So I've tried to implement the code in Post 36 based on the request in Post #20. I was able to drop the code in and get the spam button. But when I click on it - the user id isn't passed in.

The userid, threadid, and postid url parameters are blank...

I too am in a situation where someone went nuts adding spam blog posts but no forum posts.

risestar 11-23-2013 11:01 PM

I upgraded to 4.2.2 and this seems to be working ok

sv1cec 11-25-2013 10:40 AM

I installed it in 4.2.2 and it works OK, but I have noticed the following issues:

1. The program doesn't move the deleted posts in the forum designated in AdminCP.
2. While in AdminCP, I have set it to not send emails to spammers, that option still appears in the Decimator window, as well as the option to email webmaster. If these options are set to "No", in AdminCP, they should not appear at all, in the Decimator window.

Finally, one request: I would love to see the spammer IP address added at the beginning of the "Banned IP addresses" list. That should be controlled by an AdminCP option.

Hostboard 11-26-2013 03:50 AM

I re-released this here (very minor update):
https://vborg.vbsupport.ru/showthread.php?t=294660

Then released a much larger/sophisticated version here:
https://vborg.vbsupport.ru/showthread.php?t=301466

If you post your ideas we will consider implementing them within SA.

Ronya 12-11-2015 02:43 PM

Quote:

Originally Posted by lazytown (Post 2384832)
This code is not working in 4.2. It seems like it should, but it pops open a spam decimator window with empty strings for userid, postid, etc.

To fix post#36 just change {vb:raw post.userid} to {vb:raw memberinfo.userid}

SuperTaz 02-07-2017 07:03 AM

Any word on if this mod will be updated?

MarkFL 02-07-2017 07:32 AM

Quote:

Originally Posted by SuperTaz (Post 2581990)
Any word on if this mod will be updated?

One of the sites I help with (vB 4.2.3) uses this product, and the only issue I had with it was the position of the spam-decimator button, which I fixed with a plugin hooked at "parse_templates" with the code:

PHP Code:

global $vbulletin;

if (
$vbulletin->options['sd_enabled'] AND in_array(THIS_SCRIPT, array('showthread''private')))
{
    
$template_hook['headinclude_css'] .= '<style>.decimator_link {height: 0 !important; padding: 0 !important;} .decimator_link img {position: relative !important; height: 15px !important; margin-right: 10px !important;}</style>';



SuperTaz 02-08-2017 06:01 AM

I need it to delete over 3000 blog spam posts. Can this mod do that?


All times are GMT. The time now is 01:02 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01332 seconds
  • Memory Usage 1,838KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (2)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (38)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete