Forum Moderators: DixonJones

Message Too Old, No Replies

Scarf Alert!

63.148.99.247 gobbling my files...

         

pendanticist

3:59 am on Jan 26, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



...at the rate of one file every three seconds. Verrrry systematically at that.

Pendanticist.

jdMorgan

5:04 am on Jan 26, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Not mine...

RewriteCond %{REMOTE_ADDR} ^63\.148\.99\.2(2[4-9]¦[34][0-9]¦5[0-5])$ [OR]
RewriteCond %{REMOTE_ADDR} ^63\.226\.3[34]\.
RewriteRule .* - [F,L]

Jim

Key_Master

5:25 am on Jan 26, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



jdMorgan, how do you connect 63.226.3[3-4]. with Cyveillance.com?

BTW, shouldn't that be:

RewriteCond %{REMOTE_ADDR} ^63\.148\.99\.2(2[4-9]¦[3-4][0-9]¦5[0-5])$ [OR]
RewriteCond %{REMOTE_ADDR} ^63\.226\.3[3-4]\.

jdMorgan

5:47 am on Jan 26, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Key_Master,

Actually, I can't find anything in my notes to connect those ranges...
However, both have caused trouble here with useless (to my user-base) and/or rude accesses. These two lines were extracted from my (much longer) list, and so I just assumed... However, the second range belongs to another party.

On the patterns:
[3-4] means "match any number between 3 and 4 inclusive."
[34] means "match a 3 or a 4."
So, where the two numbers are contiguous, it makes no difference whether you include the dash, but it saves one character to omit it.

Jim