Forum Moderators: open

Message Too Old, No Replies

Help, I'm having problems blocking Teleport Pro

What am I doing wrong?

         

Mad_Max

2:09 am on Mar 1, 2003 (gmt 0)

10+ Year Member



I'm doing something wrong, but I don't know what. Any help would be GREATLY appreciated.

RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_USER_AGENT} ^EmailCollector [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^webbandit [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR]
RewriteCond %{HTTP_USER_AGENT} ^Webster [OR]
RewriteCond %{HTTP_USER_AGENT} ^MSproxy/2.0 [OR]
RewriteCond %{HTTP_USER_AGENT} ^MSFrontPage [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR]
RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR]
RewriteCond %{HTTP_USER_AGENT} ^Extractorpro [OR]
RewriteCond %{HTTP_USER_AGENT} ^Web\ Downloader[OR]
RewriteCond %{HTTP_USER_AGENT} ^WebEMailExtrac [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR]
RewriteCond %{HTTP_USER_AGENT} ^teleport\ pro [OR]
RewriteCond %{HTTP_USER_AGENT} ^combine [OR]
RewriteCond %{HTTP_USER_AGENT} ^UtilMind [OR]
RewriteCond %{HTTP_USER_AGENT} ^Bloodhound [OR]
RewriteCond %{HTTP_USER_AGENT} ^e-collector [OR]
RewriteCond %{HTTP_USER_AGENT} ^htmlgobble [OR]
RewriteCond %{HTTP_USER_AGENT} ^JavaBee [OR]
RewriteCond %{HTTP_USER_AGENT} ^Robofox [OR]
RewriteCond %{HTTP_USER_AGENT} ^WebFetcher [OR]
RewriteCond %{HTTP_USER_AGENT} ^tarspider [OR]
RewriteCond %{HTTP_USER_AGENT} ^webmirror [OR]
RewriteCond %{HTTP_USER_AGENT} ^webvac [OR]
RewriteCond %{HTTP_USER_AGENT} ^w3mir [OR]
RewriteCond %{HTTP_USER_AGENT} ^JoBo [OR]
RewriteCond %{HTTP_USER_AGENT} ^Zeus [OR]
RewriteCond %{HTTP_USER_AGENT} ^Java [OR]
RewriteCond %{HTTP_USER_AGENT} ^Offline [OR]
RewriteCond %{HTTP_USER_AGENT} ^Larbin [OR]
RewriteCond %{HTTP_USER_AGENT} ^Wget [OR]
RewriteCond %{HTTP_USER_AGENT} ^Crescent [OR]
RewriteCond %{HTTP_USER_AGENT} ^Email [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/2.0 [OR]
RewriteCond %{HTTP_USER_AGENT} ^Down2Web [OR]
RewriteCond %{HTTP_USER_AGENT} ^Microsoft*
RewriteRule ^.* - [F]
RewriteCond %{HTTP_REFERER} ^http://www.iaea.org$
RewriteRule!^http://[^/.]\.carbc.com.* - [F]

RewriteEngine On
RewriteRule ^Car-News-([1-9][0-9]*).* modules.php?op=modload&name=News&file=article&sid=$1
RewriteRule ^Car-Review-([1-9][0-9]*).* modules.php?op=modload&name=Reviews&file=index&req=showcontent&id=$1
RewriteRule ^Car-Links-([1-9][0-9]*).* modules.php?op=modload&name=Web_Links&file=index&req=viewlink&cid=$1
RewriteRule ^Visit-Site-([1-9][0-9]*).* modules.php?op=modload&name=Web_Links&file=index&req=visit&lid=$1
RewriteRule ^Car-News-Archive.html modules.php?op=modload&name=Search&file=index&action=search&overview=1&active_stories=1
RewriteRule ^Submit-News.html modules.php?op=modload&name=Submit_News&file=index
RewriteRule ^Car-Reviews.html modules.php?op=modload&name=Reviews&file=index&req=All
RewriteRule ^Automotive-Forum.html modules.php?op=modload&name=XForum&file=index
RewriteRule ^Car-Pictures.html modules.php?op=modload&name=gallery&file=index&include=albums.php
RewriteRule ^Minitests.html modules.php?op=modload&name=News&file=index&catid=2&topic=
RewriteRule ^Press-Releases.html modules.php?op=modload&name=News&file=index&catid=1&topic=
RewriteRule ^News-Topics.html modules.php?op=modload&name=Topics&file=index
RewriteRule ^Recommend-Us.html modules.php?op=modload&name=Recommend_Us&file=index
RewriteRule ^News-Topic-([1-9][0-9]*).* modules.php?op=modload&name=News&file=index&catid=$1
RewriteRule ^Car-News-([1-9][0-9]*).* modules.php?op=modload&name=News&file=article&sid=$1&mode=thread&order=0&thold=0

wilderness

2:19 am on Mar 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



SetEnvIf User-Agent ^Teleport

or just deny the IP range.

jdMorgan

2:19 am on Mar 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Well...
mod_rewrite is case-sensitive, unless you tell it otherwise. Use:

RewriteCond %{HTTP_USER_AGENT} ^teleport\ pro [NC,OR]
-or-
RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro [OR]

HTH,
Jim

Mad_Max

6:49 am on Mar 1, 2003 (gmt 0)

10+ Year Member



Thank you both VERY much, it seems to have finally stopped. I'm glad it was the end of the month, it ate through half my monthly bandwidth in one day :\

jdMorgan

7:16 am on Mar 1, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Oh my,

You may find this thread [webmasterworld.com], and the previous threads cited in it, quite useful.

Jim