hunderdown

msg:3021545 | 3:45 pm on Jul 25, 2006 (gmt 0) |
Notifiy Google, the sooner the better.
|
moishe

msg:3021549 | 3:51 pm on Jul 25, 2006 (gmt 0) |
Yep, gonna do that now. I am having trouble remembering how to block a url in my htaccess file, if I put deny http://www.example.com, I get a 500 error when trying to access my site, anyone have a code snippet for the htaccess to block a specific URL. I searched but am having trouble finding a clear answer. Thanks, M
|
ianpurton

msg:3021572 | 4:07 pm on Jul 25, 2006 (gmt 0) |
RewriteEngine on # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} example\.com [NC] RewriteRule .* - [F] This will give out a 403 forbidden error.
|
Khensu

msg:3021580 | 4:26 pm on Jul 25, 2006 (gmt 0) |
ianpurton Thanks, I logged that for future reference. You just never know.
|
TXGodzilla

msg:3023096 | 7:50 pm on Jul 26, 2006 (gmt 0) |
You can also deny the IP address with: DENY FROM 64.193.62.5 or DENY FROM 64.193.62 # server will match first 3 octets DENY FROM 64.193.62.0/24 # block the entire class C (CIDR assignment) IP range used as an example only. [edited by: TXGodzilla at 7:52 pm (utc) on July 26, 2006]
|
wmuser

msg:3026026 | 4:23 pm on Jul 28, 2006 (gmt 0) |
Never faced this but the first thing to do is to notify Google before its too late
|
moishe

msg:3026452 | 8:31 pm on Jul 28, 2006 (gmt 0) |
Google notified, canned response received, site blocked, no more referals showing up so hopefully all is well:)
|
|