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 - [GlowHost] Spam-O-Matic - Spam Firewall stops forum spam (https://vborg.vbsupport.ru/showthread.php?t=248042)

AbruzzoMeteo 05-07-2013 06:04 AM

Quote:

Originally Posted by ForceHSS (Post 2420290)
Do you mean it mods there posts?

I mean that the spam plugin blocks/stops them posting ,replying, quoting, attaching posts.
;)

ForceHSS 05-07-2013 08:02 AM

Quote:

Originally Posted by AbruzzoMeteo (Post 2420409)
I mean that the spam plugin blocks/stops them posting ,replying, quoting, attaching posts.
;)

Could be another plugin messing with this one or you have not config it right

AbruzzoMeteo 05-07-2013 08:12 AM

1 Attachment(s)
as you can see from the attached, i've insterted the groups number to be protected by the plugin. Can you spot some mistakes in that?

ForceHSS 05-07-2013 09:07 AM

Quote:

Originally Posted by AbruzzoMeteo (Post 2420431)
as you can see from the attached, i've insterted the groups number to be protected by the plugin. Can you spot some mistakes in that?

need to see all settings in the plugin

Dwarden 05-07-2013 12:27 PM

i noticed little problem with the GSOM plugin,

if there is problem on outgoing traffic from vB
and you chose to ban & submit to SFS

then in the GSOM log is stays it submitted the user into SFS database w/o any indication o error

is this possible to improve or it can't be verified ?

Menewsha 05-08-2013 05:18 AM

Cool plugin, but there is a pretty serious oversight in this plugin which led to a ton of abuse recently.

The remote cache option states the following: "Duration in minutes that remote queries should be cached to reduce query traffic / lookup duration and load on the remote server"

However the code says this:

$sql = 'DELETE FROM '.TABLE_PREFIX.'glowhostspamomatic_remotecache WHERE `date` < DATE_SUB(NOW(), INTERVAL '.(int)$vbulletin->options['glowhostspamomatic_remote_cache'].' DAY); ';

So we were hit by a botnet (one new registration attempt every four seconds, not even exaggerating) and we were expecting that after an IP was reported, that we wouldn't see that IP registering again after the 30 minute cache timeout. This led to two issues:

1) The cache isn't cleared for the banned user immediately, meaning the bot could immediately reregister without SFS being checked for the new entry.

2) The cache was 30 days old, so the same IP would literally create thousands of accounts before the cache would clear and start reporting the abuse.

This also led to another observation of the code. The order of checks goes username, email, IP. However the order of checks (to take advantage of cache) should go IP, email, username. The code shouldn't even waste time querying for a bad username if it knows the IP is bad, so why put unnecessary strain on the SFS service by querying for username if the IP is bad?

So, as I said, great plugin, but it needs some changes to work properly on a high traffic site effectively.

Edit: I thought I'd mention how I changed the query. This should hopefully increase cache efficiency also:

$sql = 'DELETE FROM '.TABLE_PREFIX.'glowhostspamomatic_remotecache WHERE (`date` < DATE_SUB(NOW(), INTERVAL '.(int)$vbulletin->options['glowhostspamomatic_remote_cache'].' MINUTE) and is_spambot = 0) or (`date` < DATE_SUB(NOW(), INTERVAL '.(int)$vbulletin->options['glowhostspamomatic_remote_cache'].' DAY) and is_spambot = 1); ';

This would delete SFS negatives that are 30 minutes old, while letting SFS positives sit in the database cached for 30 days.

Msfantastico 05-08-2013 05:47 AM

This was working for a couple of months now I see 20-30 spammers get by every morning

1136 Spammers Denied Registration

18 Spammers Permanently Banned

7 Spammers submitted to StopForumSpam

7834 Spammy Posts Automatically Moderated

Expat 05-08-2013 08:14 AM

Quote:

Originally Posted by vbresults (Post 2413150)
This should fix it -- replace the admincp/glowhostspamomatic.php file with the one attached.

Your fix took care of the error on line 108 I was getting in 4.2.1 when submitting I knew the product was working, but that error was driving me nuts. Thank you for figuring out the issue and posting the fix. Hopefully the author will incorporate your fix sooner than later.

ikorolis 05-08-2013 10:40 AM

nice mod - good work

not installed

i am prefer stop forum spam (traffic and load is very low)

vbresults 05-09-2013 06:13 PM

Quote:

Originally Posted by Expat (Post 2420658)
Your fix took care of the error on line 108 I was getting in 4.2.1 when submitting I knew the product was working, but that error was driving me nuts. Thank you for figuring out the issue and posting the fix. Hopefully the author will incorporate your fix sooner than later.

You're welcome. :)

Expat 05-10-2013 11:12 PM

Quote:

Originally Posted by ikorolis (Post 2420673)
nice mod - good work

not installed

i am prefer stop forum spam (traffic and load is very low)

Stop Forum Spam is fine, but the ability to purge a spammer account and all traces while reporting the spammer is incredibly valuable to me. Remember, these a$$holes are running their scams and WE foot the bill. They are attempting to manipulate search engines with their garbage, and the more that is removed reduced their effectiveness.

There's a reason I removed the "welcome to our newest member code" from my site. Why would I want to welcome a potential spammer and potentially push up their internet search engine standing? Same thing goes for member listings...none of my forum members are listed until they have three validated posts.

Sorry for the rant, but this is a subject that is near and dear. Either way, if more forum owners were a bit more savvy and took more interest in purging/reporting spammers, we'd all be better off. ANY anti-spam tool is better than apathy.

Bluemax712 05-16-2013 04:23 AM

Quote:

Originally Posted by GlowHost.com (Post 2418366)
We have a bug and security fix due out in the next few days. I will take a look at this and see if it is related to what has already been patched.

Did this bug /security fix ever come out?
It's still says version 2.10 released 1/10/2103

vbresults 05-16-2013 02:31 PM

Quote:

Originally Posted by apsrfvb4 (Post 2422405)
Did this bug /security fix ever come out?
It's still says version 2.10 released 1/10/2103

The "Last Update:" item at the top tells you when the last update went out.

Ba'al 05-19-2013 11:02 PM

We are having a problem with this Mod, when enabled and a member posts it goes to a blank white screen and when i disable it everything goes back to normal, posts post normally.

Any ideas on what could be the issue?

ForceHSS 05-20-2013 12:10 AM

Quote:

Originally Posted by Ba'al (Post 2423053)
We are having a problem with this Mod, when enabled and a member posts it goes to a blank white screen and when i disable it everything goes back to normal, posts post normally.

Any ideas on what could be the issue?

Pm me your skype name will give u some help

Ba'al 05-20-2013 08:08 PM

Quote:

Originally Posted by ForceHSS (Post 2423058)
Pm me your skype name will give u some help

pm sent,thanx

dariyos 05-24-2013 12:53 PM

how can i stop moderate posts?
i dont want, that the moderators get the posts from new users to activate the posts, and i dont want prevent posts, too ..

i can only choose moderate posts or prevent posts.

irantk 05-24-2013 10:37 PM

how can "Moderation Tools" option be enabled only for administrator?? and moderators do not use it?

freak46 05-26-2013 07:44 AM

thanks mark as installed

prashman 06-04-2013 01:45 PM

Hi,

Our web servers are behind an Amazon load balancer in TCP mode (transport layer) - so they cannot see the IP address if a client. I could configure load Balancer in HTTP mode and get Amazon to pass X-Forwarded-For header. Will Spam-0-Matic work with this header? Or does it look for REMOTE_ADDR?

If I run HTTPS then I will have to terminate SSL traffic on the load balancer to get this header forwarded to the web server. Not very good from a security point of view.

Any other alternative if the above is not possible?

RichieBoy67 06-05-2013 12:57 PM

Glad to see you are still on this!! Have been using this and recommending it to clients for years!

Is there a list of changes or anything from the latest updates?

Thanks

gcaptain 06-05-2013 05:00 PM

Is there any way to filter out all messages that contain Chinese and russian letters? These seem to be the bulk of my spam.

GlowHost.com 06-07-2013 05:16 AM

Quote:

Originally Posted by apsrfvb4 (Post 2422405)
Did this bug /security fix ever come out?
It's still says version 2.10 released 1/10/2103

Where did you see the old version number listed?

Quote:

Originally Posted by Menewsha (Post 2420640)
Cool plugin, but there is a pretty serious oversight in this plugin which led to a ton of abuse recently.

Thanks for the post, I will have a look at this and see what can be done.

Quote:

Originally Posted by prashman (Post 2425763)
Hi,

I could configure load Balancer in HTTP mode and get Amazon to pass X-Forwarded-For header. Will Spam-0-Matic work with this header? Or does it look for REMOTE_ADDR?

Yes, we look for REMOTE_ADDR. You can modify the SOM sources to use any other header you want. Search & Replace will do the job in few seconds.

Quote:

Originally Posted by RichieBoy67 (Post 2425936)
Glad to see you are still on this!! Have been using this and recommending it to clients for years!

Is there a list of changes or anything from the latest updates?

Thanks

Thank you. Yes, there is a terse changelog next to the download in this thread. Sorry it cannot be more detailed.

Bluemax712 06-07-2013 03:05 PM

Quote:

Originally Posted by GlowHost.com (Post 2426296)
Where did you see the old version number listed?

Thanks for the new update - will this v2.1.2 remain in beta for long?

PS The update fixed the RSS feeds going to moderation problem -- Thanks again

bzcomputers 06-07-2013 04:29 PM

Quote:

Originally Posted by apsrfvb4 (Post 2426408)
...will this v2.1.2 remain in beta for long?

This is not beta. The VB4 in the filename just refers to vBulletin version 4.

RichieBoy67 06-09-2013 05:15 AM

Quote:

Originally Posted by GlowHost.com (Post 2426296)
Where did you see the old version number listed?



Thanks for the post, I will have a look at this and see what can be done.



Yes, we look for REMOTE_ADDR. You can modify the SOM sources to use any other header you want. Search & Replace will do the job in few seconds.



Thank you. Yes, there is a terse changelog next to the download in this thread. Sorry it cannot be more detailed.


My bad, sorry I missed that. Thanks

dustoff99 06-10-2013 11:16 AM

I love this MOD, do you know if this will be updated for vB 5?

vbresults 06-11-2013 12:54 PM

Quote:

Originally Posted by RichieBoy67 (Post 2426784)
My bad, sorry I missed that. Thanks

Doesn't vBulletin have a variable for this?
PHP Code:

$vbulletin->ipaddress 


K!nG 06-14-2013 03:58 AM

I been using this mod for quite sometime and i was working fine till last month. Since from last month i have hundreds & hundreds of spammers registering on my forum on daily basis. It's still blocking a lot of them which i am thankful :) but i am really tired of deleting hundreds of them on daily basis.

The problem is when i check their username or email at stopforumspam.com i see a huge list of those spammers, however for some reason they are still not being blocked and pass all the verification and register. Is there anything that can be done for this issue ??

One quick question which i can't seem to find is how can i delete those spammers and report them to stopforumspam as a spammer via admincp ??

I will appreciate if you can suggest me any better way to block these spammers :(

Thanks in advance.

ForceHSS 06-14-2013 04:28 AM

Quote:

Originally Posted by K!nG (Post 2428016)
I been using this mod for quite sometime and i was working fine till last month. Since from last month i have hundreds & hundreds of spammers registering on my forum on daily basis. It's still blocking a lot of them which i am thankful :) but i am really tired of deleting hundreds of them on daily basis.

The problem is when i check their username or email at stopforumspam.com i see a huge list of those spammers, however for some reason they are still not being blocked and pass all the verification and register. Is there anything that can be done for this issue ??

One quick question which i can't seem to find is how can i delete those spammers and report them to stopforumspam as a spammer via admincp ??

I will appreciate if you can suggest me any better way to block these spammers :(

Thanks in advance.

Add this mod as well

K!nG 06-14-2013 05:59 PM

Thanks n i hope this will help :)

Update : I did install the above mentioned mod as well and it's still not helping much. I still had about 45 spammers registered in past few hours. You think this should be normal ??? Any help/suggestions ?

Thanks in advance.

bzcomputers 06-15-2013 01:11 AM

Quote:

Originally Posted by K!nG (Post 2428142)
Thanks n i hope this will help :)

Update : I did install the above mentioned mod as well and it's still not helping much. I still had about 45 spammers registered in past few hours. You think this should be normal ??? Any help/suggestions ?

Thanks in advance.

With:

1) [GlowHost] Spam-O-Matic
2) Spammers Suck! (or you could use Spambot Stopper)
3) NoSpam! Image Enhancement

= no spammers in a loooong time for me!

K!nG 06-15-2013 04:38 AM

So let me ask you guys this, If i have Glowhost Spam-o-matic, Vbulletin Spam Management, Spambot Stopper are running all at the same time and let's say if install NoSpam on top of it, would that work fine ?? I mean running all these mods at the same time would be okay or should i just stick to one or two of them ???

Thanks in advance.

Gripi 06-15-2013 08:38 AM

Hello..

i have 2 forum installed spam o matic, but i saw different thing in case like this:

first i delete one thread (soft delete), then i open the thread again, choose the post and hit the spam o matic menu, and confirm menu.

in my one forum, i got the user get banned, but no thread removed
in my second forum, i got the user get banned, but thread removed (hard delete).

i check all configuration is the same.. could someone one help me?

ForceHSS 06-15-2013 10:20 AM

Quote:

Originally Posted by K!nG (Post 2428217)
So let me ask you guys this, If i have Glowhost Spam-o-matic, Vbulletin Spam Management, Spambot Stopper are running all at the same time and let's say if install NoSpam on top of it, would that work fine ?? I mean running all these mods at the same time would be okay or should i just stick to one or two of them ???

Thanks in advance.

could have a look at it for you if you want pm me
I have some custom scripts I could add that will help can install them if u want

krimznheidiz 06-17-2013 10:26 AM

Hey guys. . i have a question. . why after install this plug in, i cannot post new thread??

bzcomputers 06-17-2013 12:06 PM

Quote:

Originally Posted by krimznheidiz (Post 2428671)
Hey guys. . i have a question. . why after install this plug in, i cannot post new thread??


Any number of reasons. There are some options that if enabled and not properly set up will stop anyone from posting on the forum.

Start by disabling the option below and see if that fixes it (at least until you set it up correctly).

https://vborg.vbsupport.ru/external/2013/06/18.jpg

K!nG 06-17-2013 03:32 PM

Quote:

Originally Posted by ForceHSS (Post 2428246)
could have a look at it for you if you want pm me
I have some custom scripts I could add that will help can install them if u want


Hi ForceHSS,

I have installed this one mod where you have to confirm your email before the registration and u can't register if u don't confirm your email via given code. So far it's helping me a lot. I would say it brought down spammers from 100 in 12 hours time to 5-6 in 12 hours, however they are still that pass this option as well. If this gets hectic i will contact u for sure. If that okay for you :)

Thanks for your help.

Gripi 06-21-2013 04:54 PM

dont know this is a bug or not.

when a thread submited, and the member edit the 1st post and put lots of link inside it, the thread get moderated.

me (admin), try to approve the thread using the moderation tools, but the status of the post still moderated, i have to approve the post from the admincp.

very strange.. never had a problem like this before upgrade to 2.1.2

Bluemax712 06-22-2013 01:34 AM

Quote:

Originally Posted by Gripi (Post 2429628)
dont know this is a bug or not.

when a thread submited, and the member edit the 1st post and put lots of link inside it, the thread get moderated.

me (admin), try to approve the thread using the moderation tools, but the status of the post still moderated, i have to approve the post from the admincp.

very strange.. never had a problem like this before upgrade to 2.1.2

I know what you are talking about but think this is a vBulletin thing

It would be great if any action at all - made by a mod on a post
(disapprove / approve / move ) would then cause the mod notification to go away,
but this was happening for me before this latest SOM update too.

Never have figured out why sometimes need to approve it the before moderation notice goes away - sometimes not :confused:


All times are GMT. The time now is 02:38 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.03310 seconds
  • Memory Usage 1,858KB
  • 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
  • (1)bbcode_php_printable
  • (24)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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