^---
How do i block fusker with .htaccess?
Collapse
X
-
order allow,deny
deny from 123.45.6.7
deny from 012.34.5.
deny from fusker.whoever.com
deny from .whoever.com
allow from all
will deny access for the full IP shown, the partial IP mask (012.34.5.*), the sub domain shown and anything at whoever.com
I don't know if this will work:
deny from fuskerLast edited by fusionx; 12-04-2004, 01:12 PM. -
I edited the post - added "." in front of whoever.com
Well, that will stop those entries from hotlinking pics :-)
Anyone from those entries won't see a damn thing.
Of course, if they are using tools that let them spoof the referer, nothing will work.Comment
-
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?18pluspics.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://216.130.168.161(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ - [F,NC]
%haha123; is the oppostie of "}" - the opening bracket.
that stops hotlinking by referer. Change your domain and IP and it should work exactly as is.Last edited by fusionx; 12-04-2004, 01:21 PM.Comment
-
Cant i redirect those hotlink requests to a popup hell? Or a goatse or something?Originally posted by fusionx
I edited the post - added "." in front of whoever.com
Well, that will stop those entries from hotlinking pics :-)
Anyone from those entries won't see a damn thing.
Of course, if they are using tools that let them spoof the referer, nothing will work.Comment
-
I dont want to disable hotlinking completely, just from Fusker...so i use the first code you posted right?Originally posted by fusionx
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?18pluspics.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://216.130.168.161(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ - [F,NC]
that stops hotlinking by referer. Change your domain and IP and it should work exactly as is.Comment
-
Use the hotlink prevention example and change the rewrite rule like this:Originally posted by Battuss
Cant i redirect those hotlink requests to a popup hell? Or a goatse or something?
RewriteRule \.(gif|jpg|jpeg|bmp)$ http://www.mydomain.com/nasty.gif [R,L]Last edited by fusionx; 12-04-2004, 01:24 PM.Comment
-
You confuse me. Could you please just post the code i need to use....sorry.Originally posted by fusionx
Use the hotlink prevention example and change the rewrite rule like this:
RewriteRule \.(gif|jpg|jpeg|bmp)$ http://www.mydomain.com/nasty.gif [R,L]Comment
-
Here's how I do it:
Options +SymLinksIfOwnerMatch
RewriteEngine on
RewriteCond %{HTTP_REFERER} .*.fusker* [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.yourdomain.com/images/hotlink.gif [R,NC]
Works like a charm for me.
P.S. And like another post in this thread %haha123; = the opposite of }Last edited by 49thParallel; 12-04-2004, 01:32 PM.Comment
-
I added 49thParallel's to mine to show a full example. In this one, if it's from any fusker site, deny it any return hotlink.gif. Otherwise, just drop the request.
RewriteEngine On
RewriteCond {HTTP_REFERER} .*.fusker* [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$
http://www.yourdomain.com/images/hotlink.gif [R,NC]
RewriteCond {HTTP_REFERER} !^$
RewriteCond {HTTP_REFERER} !^http://(www\.)?18pluspics.com(/)?.*$ [NC]
RewriteCond {HTTP_REFERER} !^http://216.130.168.161(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ - [F,NC]
The Options part in his post is dependent on the server config. It will NOT hurt anything to have it there. You just may not need it.Comment
-
Couple of possibilities:Originally posted by Battuss
Actually it is, it just wont replace it with my pic of choice.
a) Did you put the image in a "image" directory or just in the root html directory. (Sorry for asking..but it's a common mistake)
b) Try adding back in the Options code from my example. fusionx made a good call when he said that you might not need it. But, your server configuration may require it.
c) Make sure you follow the same order as shown by fusionx. If you switch the code that "denies all" before the fusker code, then it will take priority and no image will be shown.
d) Oh yah, and make sure that you replace "yourdomain" with the actual name of your domain.
Hope that helps.Last edited by 49thParallel; 12-04-2004, 01:54 PM.Comment
-
Not sure if the board is doing this, or if it's the way you have it in your .htaccess...
make sure this is all on one line
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.yourdomain.com/images/hotlink.gif [R,NC]
Plus, does the image you are now substituting have a "jpeg" or "jpg" extension? I noticed in your example, it shows "jpeg".
If you normally use this file extension, then you will also want to be sure to add "jpeg" into the code, as shown by my example. Otherwise, these files will be free to be hotlinked at will.Last edited by 49thParallel; 12-04-2004, 02:09 PM.Comment
-
Hey guys, I'm no expert on this myself but I see You're not noticing one thing:
The board rewrites the opening bracket with this "haha"-shit as we all have noticed...
What You seem to miss is that the "%" sign ISN'T a board rewrite! It's supposed to be in the code!
Line quoted from Battuss' post:
"RewriteCond haha123;HTTP_REFERER} .*.fusker* [NC]"
I'm gonna replace the correct brackets with "[" and "]" here to bypass the boards rewrites, check this out:
"RewriteCond %[HTTP_REFERER] .*.fusker* [NC]"
See what I mean now? The percent-sign SHOULD be there, it's not part of the board rewrite.
Simplier put, the opening equivalent of "}" is rewritten by the board as "haha123;" and not "%haha123;"...
so don't strip out the "%" in Your code!
Do a quote on someone's post with code in it & look carefully...
Cheers!
Edit: for even more simplicity:
all "RewriteCond"-lines should look like this BEFORE the first bracket:
"RewriteCond %"Last edited by Diligent; 12-04-2004, 02:34 PM.
~¤~ MORE MONEY ~¤~ VOD? XoD! ~¤~ 
~¤~ ICQ# 9828 2461 ~¤~
Comment
-
Good catch! I totally missed that..Originally posted by Just-Anotha-Mack
The board rewrites the opening bracket with this "haha"-shit as we all have noticed...
What You seem to miss is that the "%" sign ISN'T a board rewrite! It's supposed to be in the code!
Cheers!
Comment
-
-
Beautiful!!!Originally posted by Battuss
http://fusker.lewww.com/index.php?li...pecial=preview
They won't bother you again..Comment


Comment