Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: anti-spam E-mail filter
 New Topic  Reply to Topic
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 6

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 11 September 2008 :  13:59:35  Show Profile  Visit HuwR's Homepage  Reply with Quote
the badword filtering shouldn't be filtering registration emails unless you have modified the code. so they must be typing that address<
Go to Top of Page

gpspassion
Junior Member

260 Posts

Posted - 11 September 2008 :  14:17:25  Show Profile  Visit gpspassion's Homepage  Reply with Quote
Correct the **** appeared in the members.asp search result.<
Go to Top of Page

gpspassion
Junior Member

260 Posts

Posted - 27 October 2008 :  05:13:44  Show Profile  Visit gpspassion's Homepage  Reply with Quote
Bump for this great topic.
There is an idiot who's spamming with domains like @2008topoctober.com, @2008onlineblog4.net, @2008bloggger.com, etc...
Is there any way to block all @2008*** domains with this MOD ?
Thanks.<
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 27 October 2008 :  09:17:38  Show Profile  Visit AnonJr's Homepage  Reply with Quote
I'm sure its possible, but it would require a little extra work.<
Go to Top of Page

Massimo
Junior Member

Italy
125 Posts

Posted - 27 October 2008 :  19:01:03  Show Profile  Visit Massimo's Homepage  Reply with Quote
Mods Stop Spam Server 1.1 (Remake fix, implementation old mods) Italian version look at:

http://www.superdeejay.net/guida_forumxp/mod_stop_spam_server.asp

Installation page:

http://www.superdeejay.net/guida_forumxp/mod_stop_spam_server.html

sorry for my bad eng.<

Massimo Farieri
Snitz Italian Community
===============
http://www.snitz.it
http://www.superdeejay.net/forum/

Go to Top of Page

gpspassion
Junior Member

260 Posts

Posted - 02 November 2008 :  06:29:07  Show Profile  Visit gpspassion's Homepage  Reply with Quote
quote:
Originally posted by AnonJr

I'm sure its possible, but it would require a little extra work.

Any hints on what that work would be, I'm getting hammered by theses idiots ! Account blocking and IP banning is not deterring them it seems...<
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 02 November 2008 :  06:41:52  Show Profile  Visit AnonJr's Homepage  Reply with Quote
Not off the top of my head.

Last week (and probably this month) things are rather nuts around the hospital. I've worked every day since last Sunday, and I probably won't get a day off until Friday at the earliest. I was away at Greensboro for a 4 day training course and they kept calling and e-mailing, and I had to take my breaks and evenings to remote in and handle some of the most irrational requests I've had since I started working there. Hasn't left much time for more than a cursory run through the posts... sorry about that.
<
Go to Top of Page

Podge
Support Moderator

Ireland
3775 Posts

Posted - 02 November 2008 :  09:53:00  Show Profile  Send Podge an ICQ Message  Send Podge a Yahoo! Message  Reply with Quote
quote:
Any hints on what that work would be, I'm getting hammered by theses idiots !

In the short term you could try renaming post_info.asp to something random like 38324785_post_info.asp
You will need to edit post.asp so that line 494 is changed from
		"              <form name=""PostTopic"" method=""post"" action=""post_info.asp"""

to
		"              <form name=""PostTopic"" method=""post"" action=""38324785_post_info.asp"""
<

Podge.

The Hunger Site - Click to donate free food | My Blog | Snitz 3.4.05 AutoInstall (Beta!)

My Mods: CAPTCHA Mod | GateKeeper Mod
Tutorial: Enable subscriptions on your board

Warning: The post above or below may contain nuts.
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 02 November 2008 :  11:23:54  Show Profile  Reply with Quote
quote:
Originally posted by jitterwocky

I wrote some very similar code to take care of the problem.

--
Dim strSpamEmail
strSpamEmail = Request.Form("Email")
Dim strSpamIP
strSpamIP = "http://" & Request.ServerVariables("REMOTE_HOST")
if InStr(1,strSpamEmail,"@u-yep.com",1) > 0 then
response.redirect strSpamIP
end if
--

I found I had to Dim my variables before putting them in the InStr code otherwise valid registrants would be shown a Snitz error message. Perhaps that has something to do with my particular version of VBScript.

The "1"s in the InStr code make it so that case doesn't matter.

My favorite part is redirecting the spam bot back to its own server via REMOTE_HOST. If enough Snitz forums used this code then the spammer servers would essentially initiate a mild denial-of-service attack against themselves.





The problem with this is that you'd have to list all of the servers (again) in the code, line by line. Instead, try this approach - I've got the spam servers in a dbase table:
'Anti-ForumPoster code
Dim isSpambot : isSpambot = 0
Dim strSpamEmail : strSpamEmail = Request.Form("Email")
Dim strSpamIP : strSpamIP = "http://" & Request.ServerVariables("REMOTE_HOST")
agent = LCase(Request.ServerVariables("HTTP_USER_AGENT"))
If InStr(agent, "forum poster") > 0 Then isSpamBot = 1
set rss = my_conn.execute("SELECT SPAM_SERVER FROM FORUM_SPAM_MAIL")
rss.MoveFirst
While not rss.EOF
	strSPAM_SERVER="@"&rss("SPAM_SERVER")
	if InStr(1,strSpamEmail,strSPAM_SERVER,1) > 0 then isSpamBot = 1
rss.MoveNext
wend 
rss.Close
set rss=Nothing
If InStr(agent, "fp.icontool.com") > 0 Then isSpamBot = 1
If InStr(agent, "icontool") > 0 Then isSpamBot = 1
If isSpambot = 1 Then Response.Redirect("http://" & Request.ServerVariables("REMOTE_ADDR"))
'End Anti-ForumPoster Code


The original instructions for a more limited version of this required it to be put in "config.asp". That won't work with my addition, because the connection string hasn't been configured. Instead, I added it to "inc_header.asp" and "inc_header_short.asp". Now, it'll redirect the abuser regardless of which spam server he/she is using.<
Go to Top of Page

gpspassion
Junior Member

260 Posts

Posted - 21 November 2008 :  07:13:06  Show Profile  Visit gpspassion's Homepage  Reply with Quote
quote:
Originally posted by Podge

quote:
Any hints on what that work would be, I'm getting hammered by theses idiots !

In the short term you could try renaming post_info.asp to something random like 38324785_post_info.asp
You will need to edit post.asp so that line 494 is changed from
		"              <form name=""PostTopic"" method=""post"" action=""post_info.asp"""

to
		"              <form name=""PostTopic"" method=""post"" action=""38324785_post_info.asp"""


Thanks, won't prevent them from registering new accounts but no more new threads ! Can I use this type of trick to prevent them from replying to existing threads ? Which file should I modify for that?<
Go to Top of Page

gpspassion
Junior Member

260 Posts

Posted - 23 November 2008 :  11:38:42  Show Profile  Visit gpspassion's Homepage  Reply with Quote
Well this has been working well, I can seem them trying to post and then getting "stuck" ! Do you think this type of trick could be used for registration too?<
Go to Top of Page

sschaer
Starting Member

Switzerland
14 Posts

Posted - 05 December 2008 :  11:46:57  Show Profile  Visit sschaer's Homepage  Reply with Quote
help needed. just downloaded the mod and did what it said in the readme file.

unfortunately i get the following error message :

Microsoft VBScript compilation error- Error '800a03ea'
Syntax error
/admin_spamserver.asp, line 143


i use windows xp pro (sp2) and no database (aka access like).

what could be the issue here ??<


have fun
sandro


www.cp-forum.net
www.sschaer.org
Go to Top of Page

sschaer
Starting Member

Switzerland
14 Posts

Posted - 13 January 2009 :  02:29:31  Show Profile  Visit sschaer's Homepage  Reply with Quote
bump....



no help out there ??<


have fun
sandro


www.cp-forum.net
www.sschaer.org
Go to Top of Page

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 13 January 2009 :  04:09:59  Show Profile  Reply with Quote
quote:
Originally posted by sschaer

help needed. just downloaded the mod and did what it said in the readme file.

unfortunately i get the following error message :

Microsoft VBScript compilation error- Error '800a03ea'
Syntax error
/admin_spamserver.asp, line 143


i use windows xp pro (sp2) and no database (aka access like).

what could be the issue here ??



Delete the blank line at line 143.<
Go to Top of Page

MikeB.Lynn
New Member

54 Posts

Posted - 09 March 2009 :  06:30:54  Show Profile  Reply with Quote
quote:
Originally posted by MarcelG

TO block top level domains, just add some lines in between, which are constructed like this:

(right(lcase(Request.Form("Email")),3)=".ru") or _


<


I'm using the spamserver lock add-on.
Will this code work with that? if so, where would it be inserted.

Thanks
Mike
Go to Top of Page
Page: of 6 Previous Topic Topic Next Topic  
Previous Page | Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.14 seconds. Powered By: Snitz Forums 2000 Version 3.4.07