Forum Moderators: phranque
The nutjob is back under this disguise today:
123.45.678.9 - - [17/Jun/2005:04:50:01 -0500] "GET /style_images/1/nav.gif HTTP/1.1" 200 73 "http://www.mydomain.com/index.php?showtopic=6" "Dual Proxy"
What now?
If so, just make another RewriteCond with this user-agent name in the pattern, and use [NC,OR] on the end of the first one.
Dual proxy is used by some ISPs such as satellite internet service providers. There's nothing inherently "bad" about Dual Proxy. So, be careful that you're sure about this.
Jim
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/5\.0\ \(Macintosh;\ U;\ PPC;\ en-US;\ rv:1\.0\.2\)\ Gecko/20030208\ Netscape/7\.02 [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^Dual\ Proxy [NC]
RewriteCond %{HTTP_USER_AGENT} "^Mozilla/5.0 (Macintosh; U; PPC; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02" [NC,OR]
RewriteCond %{HTTP_USER_AGENT} "^Dual Proxy" [NC]
"I've been blocking my web stalker from viewing my websites in htaccess by blocking his specific browser/computer/os combination. Thank you all for showing me how to do this".
And that is secure?
Myself, I use three browsers, a dynamic IP adress.
But I am an amateur on this field.