I use something like:

<%
my $allowed = 'x.com|y.com';

...

unless (exists $ENV{HTTP_REFERER} && $ENV{HTTP_REFERER} =~
/^http:\/\/($allowed)\//) {
    $Response->{Status} = NOT_FOUND;
    $Response->End;
}

...

%>

This is from memory so *excuse* the syntax and regexp errors ...

Peter


----- Original Message -----
From: "Csongor Fagyal" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 10, 2003 1:37 PM
Subject: Image + Session


> Hi,
>
> I have a site where users can upload pictures. I would not like anyone
> to link to these pictures from other sites. I am thinking about writing
> an ASP script that checks the referrer and not serve the images if the
> referer is not that of the main site. This is OK but probably one of you
> could suggest a better solution... let me know if you have a good idea.
>
> Thanx,
> - Cs.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to