View Full Version : Hot linking blocking in attatchment.php?
krohnathlonman
06-30-2004, 03:12 AM
I've been thinking about looking into this... If anybodies already done it please hook me up with it :) I've been using the VB attatchment system for all of my articles and now the article images are getting hotlinked fairly often.
Zachery
06-30-2004, 03:45 AM
I've been thinking about looking into this... If anybodies already done it please hook me up with it :) I've been using the VB attatchment system for all of my articles and now the article images are getting hotlinked fairly often.
I think the simpilest thing to do is not allow guests to view attachments
alan92rttt
07-06-2004, 03:48 AM
$url=parse_url($HTTP_REFERER);
if(!empty($url["host"])&&strpos($url["host"],'vbulletin.org')==0){
echo "Error 500-invalid server call - ".$url["host"]." - Remote linking Denied";
exit;
}
Just change vbulletin.org to your site.
This only works of the browser is providing referer.
Then echo can be totally removed.
Andreas
07-06-2004, 03:52 AM
@alan92rttt
This will not work, as the user can set the referrer to any value he wants.
Jolten
07-06-2004, 03:56 AM
I think the simpilest thing to do is not allow guests to view attachments
True.. but not always possible. My site is geared towards guests seeing images, letting them hot link is another matter.
.htaccess does a pretty good job though.
dstruct2k
07-06-2004, 06:19 AM
@alan92rttt
This will not work, as the user can set the referrer to any value he wants.
How desperate are people getting if they're altering their referrer just to see one image?
eoc_Jason
07-08-2004, 01:58 AM
Using a .htaccess file to prevent hotlinking works on the same principle as the code posted above. Because of the session-less design of HTTP, there are really only 2 ways you can prevent hotlinking. 1 - referrer url or 2 - user authentication.
JBMoney
09-28-2004, 08:39 PM
.htaccess won't protect attachments though, will it? It won't keep someone from using a img src tag to post an attachment from your Forum to where ever they want to. How can that be done?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.