Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Reviews And Website Questions
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

Website Reviews And Website Questions Website reviews section for getting feedback on what your site is good for and not, as in style etc etc. Ask any other questions you might need help on.

Google
Closed Thread
 
LinkBack Thread Tools Display Modes
Old 05-27-2007, 11:14 PM   #1
no.reply7@comcast.net
 
no.reply7@comcast.net's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

In my htaccess file, I have some restrictions using the following
rule: RewriteCond %{HTTP_USER_AGENT}. One example would be:
RewriteCond %{HTTP_USER_AGENT} ^.*baidu.*$ [NC,OR], which restricts
any browser with baidu in it name.

How can I set up a rule to ban this particular browser: Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1) ? 95% of requests made to
my site by this browser is spam. I thought of using ^.*SV1.*$ but
unfortunately, there are legitimate browsers with SV1 in parts of
their name.

Thanks for the help.

--F

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Advertisements
Old 05-27-2007, 11:14 PM   #2
shimmyshack
 
shimmyshack's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On May 16, 6:25 pm, "no.rep...@comcast.net" <no.rep...@comcast.net>
wrote:
> In my htaccess file, I have some restrictions using the following
> rule: RewriteCond %{HTTP_USER_AGENT}. One example would be:
> RewriteCond %{HTTP_USER_AGENT} ^.*baidu.*$ [NC,OR], which restricts
> any browser with baidu in it name.
>
> How can I set up a rule to ban this particular browser: Mozilla/4.0
> (compatible; MSIE 6.0; Windows NT 5.1; SV1) ? 95% of requests made to
> my site by this browser is spam. I thought of using ^.*SV1.*$ but
> unfortunately, there are legitimate browsers with SV1 in parts of
> their name.
>
> Thanks for the help.
>
> --F


when u say "ban" i assume you mean, "try to stop"
any real spammer will use a valid IE6 user agent. this method does not
work unfortunately.
better would be to use mod_security to rule the type of request out
quietly, and accept that any public website (or hospital or library)
will be a target, and take steps to deal with the results rather than
gradually close the doors to people based on the way they look, which
will only ban those with no skill to hurt your interests anyway.

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #3
sig
 
sig's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On 16 May 2007 10:25:21 -0700 no.reply7@comcast.net said
> In my htaccess file, I have some restrictions using the following
> rule: RewriteCond %{HTTP_USER_AGENT}. One example would be:
> RewriteCond %{HTTP_USER_AGENT} ^.*baidu.*$ [NC,OR], which restricts
> any browser with baidu in it name.
>
> How can I set up a rule to ban this particular browser: Mozilla/4.0
> (compatible; MSIE 6.0; Windows NT 5.1; SV1) ? 95% of requests made to
> my site by this browser is spam. I thought of using ^.*SV1.*$ but
> unfortunately, there are legitimate browsers with SV1 in parts of
> their name.
>
> Thanks for the help.



Looks like a good UA to me, but if you want to stop it, try
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/4\.0 \(compatible; MSIE 6\.0; Windows NT 5\.1; SV1\)$

Sig

--
http://koiclubsandiego.org/comment/?r=8
3186fdb515784af427d7bd83018826b9
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #4
no.reply7@comcast.net
 
no.reply7@comcast.net's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On May 16, 5:08 pm, sig <pwuldov...@kriocoudek.mailexpire.com> wrote:
> On 16 May 2007 10:25:21 -0700 no.rep...@comcast.net said
>
> > In my htaccess file, I have some restrictions using the following
> > rule: RewriteCond %{HTTP_USER_AGENT}. One example would be:
> > RewriteCond %{HTTP_USER_AGENT} ^.*baidu.*$ [NC,OR], which restricts
> > any browser with baidu in it name.

>
> > How can I set up a rule to ban this particular browser: Mozilla/4.0
> > (compatible; MSIE 6.0; Windows NT 5.1; SV1) ? 95% of requests made to
> > my site by this browser is spam. I thought of using ^.*SV1.*$ but
> > unfortunately, there are legitimate browsers with SV1 in parts of
> > their name.

>
> > Thanks for the help.

>
> Looks like a good UA to me, but if you want to stop it, try
> RewriteCond %{HTTP_USER_AGENT} ^Mozilla/4\.0 \(compatible; MSIE 6\.0; Windows NT 5\.1; SV1\)$
>
> Sig
>
> --http://koiclubsandiego.org/comment/?r=8
> 3186fdb515784af427d7bd83018826b9


I wished it worked but it didn't. It gave me a 500 error when I don't
use that browser.

Here is my problem: I get bombarded with bogus GET request with
sources such as
http://www.toyamall.com/
http://www.blackprofessional.co.uk/
http://www.jusoo.ch/
http://www.tscheiner-huette.info/
http://www.francorpconnect.com/
etc...etc...

A large portion come from Korea and all from the exact browser
mentioned above. Any thought on how to make it go away?

Any thought would be greatly appreciated.

Thanks.

--F

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #5
shimmyshack
 
shimmyshack's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On May 17, 5:06 pm, "no.rep...@comcast.net" <no.rep...@comcast.net>
wrote:
> On May 16, 5:08 pm, sig <pwuldov...@kriocoudek.mailexpire.com> wrote:
>
>
>
> > On 16 May 2007 10:25:21 -0700 no.rep...@comcast.net said

>
> > > In my htaccess file, I have some restrictions using the following
> > > rule: RewriteCond %{HTTP_USER_AGENT}. One example would be:
> > > RewriteCond %{HTTP_USER_AGENT} ^.*baidu.*$ [NC,OR], which restricts
> > > any browser with baidu in it name.

>
> > > How can I set up a rule to ban this particular browser: Mozilla/4.0
> > > (compatible; MSIE 6.0; Windows NT 5.1; SV1) ? 95% of requests made to
> > > my site by this browser is spam. I thought of using ^.*SV1.*$ but
> > > unfortunately, there are legitimate browsers with SV1 in parts of
> > > their name.

>
> > > Thanks for the help.

>
> > Looks like a good UA to me, but if you want to stop it, try
> > RewriteCond %{HTTP_USER_AGENT} ^Mozilla/4\.0 \(compatible; MSIE 6\.0; Windows NT 5\.1; SV1\)$

>
> > Sig

>
> > --http://koiclubsandiego.org/comment/?r=8
> > 3186fdb515784af427d7bd83018826b9

>
> I wished it worked but it didn't. It gave me a 500 error when I don't
> use that browser.
>
> Here is my problem: I get bombarded with bogus GET request with
> sources such


sources? do you mean referers?
If so you are probably being log spammed. If you logs are public, the
referers are logged and your logs indexed by google, which increases
the ranking for these sites.
Implement a simple login/basic auth protection for your logs and they
will get bored.
However if you run an open proxy, and these requests are via your
server, lock it down immediately.


ashttp://www.toyamall.com/http://www.blackprofessional.co.uk/http://www.jusoo.ch/http://www.tscheiner-huette.info/http://www.francorpconnect.com/
> etc...etc...
>
> A large portion come from Korea and all from the exact browser
> mentioned above. Any thought on how to make it go away?
>


does your website sell to Korea, if not ban Korea's entire IP range,
this is similar to DNSBL for spam emails.
Use a dns tool to locate the network provider's IP block for this
user, and block them.
Implement a DNSBL script to test IPs, and dynamically ban them by
altering a precondition file (or .htaccess with a series of Deny from
xxx.xxx rules.
Get a list of bogus referers for this IP, and add them to a ban list.


> Any thought would be greatly appreciated.


Do the requests have a particular preferred time, implement time
dependant blocking of the smallest effective IP range.
If your site is itself involved with undesirable content, I would
imagine your site will always be a target for other similar sites, I
imagine to that sites like those dont always operate ethically. If
it's clean as a whistle then its probably just log spamming.
As you talk about "SPAM" do you mean these requests are just bogus
nonsense requests, or do you mean they are scanning you, or do you
mean they are sending spam through your forms, if the former two, you
could use a firewall in between your server and the internet to block
certain types of requests, Im not sure if you read my previous post
but even a software web application firewall like mod_security is
effective.
If the latter, then implement some kind of turing test, like a
captcha, and code with security in mind to keep unsophisticated
spammers out.

But ultimately, if your site is public and a target for sophisticated
attacks, (which it doesnt appear to be) then theres little you can do.
>
> Thanks.
>
> --F


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #6
sig
 
sig's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On 17 May 2007 09:06:24 -0700 no.reply7@comcast.net said

>
> Here is my problem: I get bombarded with bogus GET request with
> sources such as
> http://www.toyamall.com/
> http://www.blackprofessional.co.uk/
> http://www.jusoo.ch/
> http://www.tscheiner-huette.info/
> http://www.francorpconnect.com/
> etc...etc...
>
> A large portion come from Korea and all from the exact browser
> mentioned above. Any thought on how to make it go away?
>
> Any thought would be greatly appreciated.


Order Deny,Allow
Deny from www.toyamall.com
Deny from www.blackprofessional.co.uk
Deny from www.jusoo.ch
Deny from www.tscheiner-huette.info
Deny from www.francorpconnect.com

Sig
--
http://koiclubsandiego.org/comment/?r=8
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #7
shimmyshack
 
shimmyshack's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On May 17, 8:03 pm, sig <pwuldov...@kriocoudek.mailexpire.com> wrote:
> On 17 May 2007 09:06:24 -0700 no.rep...@comcast.net said
>
>
>
> > Here is my problem: I get bombarded with bogus GET request with
> > sources such as
> >http://www.toyamall.com/
> >http://www.blackprofessional.co.uk/
> >http://www.jusoo.ch/
> >http://www.tscheiner-huette.info/
> >http://www.francorpconnect.com/
> > etc...etc...

>
> > A large portion come from Korea and all from the exact browser
> > mentioned above. Any thought on how to make it go away?

>
> > Any thought would be greatly appreciated.

>
> Order Deny,Allow
> Deny fromwww.toyamall.com
> Deny fromwww.blackprofessional.co.uk
> Deny fromwww.jusoo.ch
> Deny fromwww.tscheiner-huette.info
> Deny fromwww.francorpconnect.com
>
> Sig
> --http://koiclubsandiego.org/comment/?r=8


this would only work if the requests are from these domains, but it
appears these are the refers because they have http:// in front.
Worrying about log files will get you ina fiddle wihtout really
acheiving anything, unless these guys are serious slurpers of
bandwidth/CPU or something else, who cares how many idiotic request
they make unless they are getting something out of it you dont want
them to. Just prevent the onvious forms of attacks and then you will
sleep at night no matter who gets on the end of your websites, which
are as I keep saying, public - potential millions of people can do
this, are you going to ban them all, and then stay up at night
worrying about your growing ban list, and how out of date its getting?!

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #8
no.reply7@comcast.net
 
no.reply7@comcast.net's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

On May 17, 12:13 pm, shimmyshack <matt.fa...@gmail.com> wrote:
> On May 17, 8:03 pm, sig <pwuldov...@kriocoudek.mailexpire.com> wrote:
>
>
>
>
>
> > On 17 May 2007 09:06:24 -0700 no.rep...@comcast.net said

>
> > > Here is my problem: I get bombarded with bogus GET request with
> > > sources such as
> > >http://www.toyamall.com/
> > >http://www.blackprofessional.co.uk/
> > >http://www.jusoo.ch/
> > >http://www.tscheiner-huette.info/
> > >http://www.francorpconnect.com/
> > > etc...etc...

>
> > > A large portion come from Korea and all from the exact browser
> > > mentioned above. Any thought on how to make it go away?

>
> > > Any thought would be greatly appreciated.

>
> > Order Deny,Allow
> > Deny fromwww.toyamall.com
> > Deny fromwww.blackprofessional.co.uk
> > Deny fromwww.jusoo.ch
> > Deny fromwww.tscheiner-huette.info
> > Deny fromwww.francorpconnect.com

>
> > Sig
> > --http://koiclubsandiego.org/comment/?r=8

>
> this would only work if the requests are from these domains, but it
> appears these are the refers because they have http:// in front.
> Worrying about log files will get you ina fiddle wihtout really
> acheiving anything, unless these guys are serious slurpers of
> bandwidth/CPU or something else, who cares how many idiotic request
> they make unless they are getting something out of it you dont want
> them to. Just prevent the onvious forms of attacks and then you will
> sleep at night no matter who gets on the end of your websites, which
> are as I keep saying, public - potential millions of people can do
> this, are you going to ban them all, and then stay up at night
> worrying about your growing ban list, and how out of date its getting?!- Hide quoted text -
>
> - Show quoted text -


My site is clean as a whistle so it might be log spamming. I'll look
into mod_secure. and yes, I was talking about referrers, not sources.

Thanks.

 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-27-2007, 11:14 PM   #9
ol'softy
 
ol'softy's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)

"no.reply7@comcast.net" <no.reply7@comcast.net> wrote:

>In my htaccess file, I have some restrictions using the following
>rule: RewriteCond %{HTTP_USER_AGENT}. One example would be:
>RewriteCond %{HTTP_USER_AGENT} ^.*baidu.*$ [NC,OR], which restricts
>any browser with baidu in it name.
>
>How can I set up a rule to ban this particular browser: Mozilla/4.0
>(compatible; MSIE 6.0; Windows NT 5.1; SV1) ? 95% of requests made to
>my site by this browser is spam. I thought of using ^.*SV1.*$ but
>unfortunately, there are legitimate browsers with SV1 in parts of
>their name.
>
>Thanks for the help.
>
>--F


I'd suggest checking to see if the spam comes from a single ip-addr
and banning the ip instead of the u-a. Anything to do with
user-agents is likely to bite you sooner or later, there are 'bots out
there that send null u-a strings, 'bots that make up random u-a
strings, all kind of crap going on that is sufficient to make trusting
anything u-a based kind of goofy.

--
contact via http://www.ren-prod-inc.com/hug_soft
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Old 05-28-2007, 12:07 AM   #10
Jim Hayter
 
Jim Hayter's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default banning this browser: Mozilla/4.0 (compatible; MSIE 6.0; WindowsNT 5.1; SV1)

shimmyshack wrote:
> On May 17, 5:06 pm, "no.rep...@comcast.net" <no.rep...@comcast.net>
> wrote:


<snip>
> sources? do you mean referers?
> If so you are probably being log spammed. If you logs are public, the
> referers are logged and your logs indexed by google, which increases
> the ranking for these sites.
> Implement a simple login/basic auth protection for your logs and they
> will get bored.


I'm not seeing much evidence that they get bored. My logs have never
been public, but I see log spam on a regular basis. One of the joys of
running an internet facing web server.

Jim
 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Featured Websites
Free Space
Free Space
Free Space Free Space
Closed Thread
Tags: , , , , , ,




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Browser Differences clarise Website Coding 12 01-20-2008 6:49 AM
What Browser do you use? $atom Operating Systems And Software 7 05-21-2007 9:57 PM
Web browser MadKad Operating Systems And Software 7 01-23-2007 10:56 AM


Featured Websites




All times are GMT +1. The time now is 12:25 PM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98