Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - stopforumspam
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

stopforumspam

 Post Reply Post Reply Page  123 8>
Author
alabamatoy View Drop Down
Groupie
Groupie


Joined: 04 February 2006
Location: United States
Status: Offline
Points: 143
Post Options Post Options   Thanks (0) Thanks(0)   Quote alabamatoy Quote  Post ReplyReply Direct Link To This Post Topic: stopforumspam
    Posted: 30 August 2011 at 12:32pm
I manage two webwiz forums.  I expend a lot of time filtering out the spammers and scammers and insurance salesmen and male-reproductive-issue hacks and such junk.  There is a site with an API that supports automating this: http://www.stopforumspam.com/
 
Has anyone threaded their API into Webwiz?  Has webwiz considered embracing stopforumspam's solution in its core codebase?
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 30 August 2011 at 12:53pm
This has been looked in to before. This only stops known spammers, but as spammers adapt all the time the service would not stop spam. It is also not available for commercial software so Web Wiz Forums can not be used with the service.

Web Wiz Forums already has all the tools in version 10 you need to stop spam. Read the page below for how to prevent spam within your forums:-

http://www.webwiz.net/web-wiz-forums/kb/spam-prevention.htm


Edited by WebWiz-Bruce - 30 August 2011 at 1:01pm
Back to Top
MadDog View Drop Down
Mod Builder Group
Mod Builder Group
Avatar

Joined: 01 January 2002
Status: Offline
Points: 3008
Post Options Post Options   Thanks (0) Thanks(0)   Quote MadDog Quote  Post ReplyReply Direct Link To This Post Posted: 31 August 2011 at 1:19am
Bruce,

I adopted stopforumspam on a few of my websites a little over 8 months ago. So far, it has stopped 100% of spam issues.

Its only a few lines of code... wouldnt hurt to add it IMO.

Source Code: http://temerc.com/forums/viewtopic.php?f=71&t=6234
'// Blacklists
Function IsUserBlacklisted(sIP, sName, sEMail)
      '// We need to make sure we can actually create the MSXML object
      If IsObject(CreateObject("MSXML2.ServerXMLHTTP")) = False Then IsUserBlacklisted = "Error: MSXML2.ServerXMLHTTP could not be created, please check MSXML is installed (v6 or above is recommended)": Exit Function
      '// Set init bool to false
      bBlacklisted = False
      '// Check Blacklists
      set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP")  
      objXMLHTTP.open "GET", "http://temerc.com/Check_Spammers/check_spammers_plain.php?name=" & sName & "&email=" & sEMail & "&ip=" & sIP, false
      objXMLHTTP.setRequestHeader "User-Agent", Request.ServerVariables("HTTP_HOST")
      objXMLHTTP.send ""
      if objXMLHTTP.status = 200 then
         If Instr(1, objXMLHTTP.ResponseText, "TRUE", vbTextCompare) > 0 Then bBlacklisted = True
      end if
      set objXMLHTTP = nothing
      IsUserBlacklisted = bBlacklisted
End Function

(my version is cleaned up a bit, but you get the idea on how easy it is to implement)
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 31 August 2011 at 8:23am
If you read there terms and conditions it is for non-commercial use only and can not be included in Web Wiz Forums which is commercial software or for any commercial forums:-

  • Your use of this data and supporting software is non-commercial.
  • You will not charge money for any software that utilizes the data.
  • API queries are limited to 20,000 per day.

However, you can use the new spam filter in version 10 in a similar way to prevent spam but allows you to customise it to your own forum.

We are looking at expanding the spam filter to either to either have a file that you can download that contains persistent spamming sites to stop them posting on your forum or use an external lookup to our service hosted on our network in a similar way to stopforumspam works.

We have also been working with a Microsoft forum that we host on our network to make it much harder for spam bots to signup to Web Wiz Forums using encrypted unique form parts in the signup and other methods. This is included in the latest 10.03 release.

Back to Top
Gullanian View Drop Down
Senior Member
Senior Member
Avatar

Joined: 04 January 2002
Location: England
Status: Offline
Points: 4373
Post Options Post Options   Thanks (0) Thanks(0)   Quote Gullanian Quote  Post ReplyReply Direct Link To This Post Posted: 31 August 2011 at 9:52am
Honeypot fields seem to work well for me
Back to Top
pedigree@sfs View Drop Down
Newbie
Newbie


Joined: 01 September 2011
Status: Offline
Points: 3
Post Options Post Options   Thanks (0) Thanks(0)   Quote pedigree@sfs Quote  Post ReplyReply Direct Link To This Post Posted: 01 September 2011 at 12:59pm
As the current stopforumspam admin, I need to correct something.  The license doesnt allow access to our system to be sold commerically but it doesnt prohibit its use in a commerical product.  There are several plugins and mods for other commerical forum software (such as ipboard and vbulletin) as these are permitted, as would any mod or plugin that any one was to code that could be added to webwiz.

Edited by pedigree@sfs - 01 September 2011 at 2:54pm
Back to Top
WebWiz-Bruce View Drop Down
Admin Group
Admin Group
Avatar
Web Wiz Developer

Joined: 03 September 2001
Location: Bournemouth
Status: Offline
Points: 9844
Post Options Post Options   Thanks (0) Thanks(0)   Quote WebWiz-Bruce Quote  Post ReplyReply Direct Link To This Post Posted: 01 September 2011 at 1:34pm
So it couldn't be supported directly in Web Wiz Forums as there are paid versions, but could be included as an mod or plugin?
Back to Top
pedigree@sfs View Drop Down
Newbie
Newbie


Joined: 01 September 2011
Status: Offline
Points: 3
Post Options Post Options   Thanks (0) Thanks(0)   Quote pedigree@sfs Quote  Post ReplyReply Direct Link To This Post Posted: 01 September 2011 at 2:54pm
Originally posted by WebWiz-Bruce WebWiz-Bruce wrote:

So it couldn't be supported directly in Web Wiz Forums as there are paid versions, but could be included as an mod or plugin?


Correct.  I know this is going to sound a little backward but if you were to provide a code change, freely downloadable as a seperate file (plug/mod/patch etc), that added lookups, then that is completely within the license, just as long as its not incorporated directly into the commerical code at point/time of sale.

WW was the first forum that I hacked in order to put active directory authenication into it and I enjoyed it.

Back to Top
 Post Reply Post Reply Page  123 8>

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.