Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 10-01-2002, 11:43 AM   #51
^R3K^
Confirmed User
 
Join Date: Sep 2001
Location: North Carolina
Posts: 2,815
jorgie99,
Next week we start Beta testing a new product that will eliminate these problems for you. Of course we are looking for some beta testers that are already in the movie side of the industry and if you are interested please contact me. Of course any BW used in the course of this test is covered by us.
Any further info can be conveyed through private conversation.
I look forward to hearing from you.

you can E-mail me at
[email protected]


Quote:
Originally posted by jorgie99
Hey everyone...

How do you deal/prevent with hotlinkers that either make links to your mpegs so surfers can right-click and "save as" or have the text ready to cut and paste for the srufers?

Is there a technological solution other than renaming the files and altering the gallery HTML? (Don't want to get blacklisted for changing HTML)

Damn asian sites are killing me...

HELP!

__________________
no business like ho business

Http://www.natnet.com
No Hype, Just Results
^R3K^ is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2002, 02:20 PM   #52
fiveyes
Confirmed User
 
Join Date: Aug 2001
Location: New Orleans
Posts: 1,680
The solution is really quite easy on Linux/Apache.

First, check out http://httpd.apache.org/docs/mod/mod....html#setenvif and the following entry for SetEnvIfNoCase to follow this solution.

You'll need the SetEnvIf module installed, which is usually the case. If you're running Apache 1.3.13 and later, you can add this to a ".htaccess" file at the top of the directory tree you wish to protect. Otherwise, you have to add it to the apache configuration file within a virtual host and/or directory directive.

The code is simply (replace "YourDomain.com" and "###.###.###.###" appropriately):
Code:
SetEnvIfNoCase Referer "^http://(YourDomain.com|www.YourDomain.com|###.###.###.###)" local_req=1 
<FilesMatch "\.(gif|jpe?g|mpe?g\avi\wmv)$"> 
Order Allow,Deny 
Allow from env=local_req 
</FilesMatch>
__________________
<CENTER><A HREF="http://www.hot-off-bourbon.com/" target="_blank"><IMG SRC="http://www.hot-off-bourbon.com/images/hob-logosmall.jpg" border="0"></A>

<FONT face="Comic Sans MS" SIZE="-1"><I>Mardi Gras, Spring Break, Wet-T, Night Club Action, UpSkirt, Oil Wrestling, Voyeur</I></FONT></CENTER>

Last edited by fiveyes; 10-01-2002 at 02:22 PM..
fiveyes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2002, 02:35 PM   #53
BR Guy
Confirmed User
 
Join Date: May 2002
Location: Novo Hamburgo, RS, Brasil
Posts: 129
Quote:
Originally posted by freeones I haven't looked any further yet, but I think that the only solution will be to use a cgi script. And then one in such a way that nobody can detect the place of your movie files. Or you can rename your mpg files to wmv that will still work for the time being, but then visitors need to rename the files which is not very handy.

Long story and all because those hotlinking monkeys !
Let me know if you already have found a good solution.
i've a php script to protect hotlink, it worked fine in my tests.
It's free but it needs optimizations.
link: http://www.brguy.com/ahls/
__________________
Do I need to fill this?
BR Guy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2002, 04:06 PM   #54
Backov
Confirmed User
 
Join Date: Mar 2001
Location: Cat Detector Van
Posts: 1,600
Quote:
Originally posted by fiveyes
The solution is really quite easy on Linux/Apache.

First, check out http://httpd.apache.org/docs/mod/mod....html#setenvif and the following entry for SetEnvIfNoCase to follow this solution.

You'll need the SetEnvIf module installed, which is usually the case. If you're running Apache 1.3.13 and later, you can add this to a ".htaccess" file at the top of the directory tree you wish to protect. Otherwise, you have to add it to the apache configuration file within a virtual host and/or directory directive.

The code is simply (replace "YourDomain.com" and "###.###.###.###" appropriately):
Code:
SetEnvIfNoCase Referer "^http://(YourDomain.com|www.YourDomain.com|###.###.###.###)" local_req=1 
&lt;FilesMatch "\.(gif|jpe?g|mpe?g\avi\wmv)$"> 
Order Allow,Deny 
Allow from env=local_req 
&lt;/FilesMatch>
That's essentially exactly the same as using mod_rewrite.. Since the player doesn't pass a referrer, this won't help you.

Cheers,
Backov
__________________
<embed src="http://banners.spotbrokers.com/button.swf" FlashVars="clickURL=http://banners.spotbrokers.com" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="120" height="60"></embed>
Backov is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2002, 04:27 PM   #55
Jizar II
Confirmed User
 
Industry Role:
Join Date: May 2001
Location: LLL©
Posts: 1,425
very interesting thread, i´m also sitting here waiting for the perfect solution!
Jizar II is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2002, 04:40 PM   #56
fiveyes
Confirmed User
 
Join Date: Aug 2001
Location: New Orleans
Posts: 1,680
Quote:
Originally posted by fiveyes
Code:
SetEnvIfNoCase Referer "^http://(YourDomain.com|www.YourDomain.com|###.###.###.###)" local_req=1 
&lt;FilesMatch "\.(gif|jpe?g|mpe?g\avi\wmv)$"> 
Order Allow,Deny 
Allow from env=local_req 
&lt;/FilesMatch>
Nope, my bad! Windows Media Player doesn't send the referer for WMV files, ever. It does follow the htaccess authorization requirements, so "*.wmv" files need to be within a members prorected directory to prevent hotlinking.

Make "\.(gif|jpe?g|mpe?g\avi\wmv)$" to read "\.(gif|jpe?g|mpe?g|avi)$". This prevents hotlinking of MPEG's and images at least.
__________________
<CENTER><A HREF="http://www.hot-off-bourbon.com/" target="_blank"><IMG SRC="http://www.hot-off-bourbon.com/images/hob-logosmall.jpg" border="0"></A>

<FONT face="Comic Sans MS" SIZE="-1"><I>Mardi Gras, Spring Break, Wet-T, Night Club Action, UpSkirt, Oil Wrestling, Voyeur</I></FONT></CENTER>
fiveyes is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 10-01-2002, 05:14 PM   #57
SR
Confirmed User
 
Join Date: Jul 2001
Location: The Netherlands
Posts: 2,239
hotlinkers are one big pain in the ass
If I ever get my hands on one of them they won't touch a keyboard again.
One day I had about 50mbit of hotlinking a whole day long.
One thing that took this down alot is something simple but it helped me alot....
For every series of galleries I had it like...
www.domain.com/movies001/movies/
www.domain.com/movies002/movies/
www.domain.com/movies003/movies/
www.domain.com/movies004/movies/

What the fuckers did was just put up gallery 001 up to lets say gallery 100
so they had like 500 movies hotlinked at once......
so from now on I name the /movies/ part different per gallery serrie so it's not that easy for them to roll em up

A friend of me is working with something that will set session ID's.
We'll test it soon and if it works out I'll post it
I tested the cookie script and it works but like lane said they can just iframe your site plus alot of tgp webmasters don't like it since quite some ppl have cookies disabled with IE6
SR is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-03-2002, 03:19 PM   #58
<IMX>
Confirmed User
 
Join Date: Jun 2002
Posts: 2,728

Anyone testing a solution for this problem?
<IMX> is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-03-2002, 03:32 PM   #59
m0rph3us
Confirmed User
 
Join Date: Mar 2001
Location: Principality of Sealand
Posts: 2,033
Yes there are solutions out there.. just gotta know where to looks and yes, it does work with .htaccess.
__________________
<font size="2" face="Tahoma"><a href="http://www.18blowjobs.com/webmasters/?640" target="_blank">Get paid $25 per signup</a> listing over <a href="http://galleries.18blowjobs.com/hosted.html" target="_blank">100 free hosted video galleries</a> - <a href="http://www.18blowjobs.com/webmasters/?640" target="_blank">Check it</a> » </font>
m0rph3us is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2002, 05:48 AM   #60
x3m
Confirmed User
 
Join Date: May 2001
Posts: 256
So, has anyone found the solution other than renaming files?
x3m is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2002, 06:30 AM   #61
LBBV
Confirmed User
 
LBBV's Avatar
 
Join Date: Aug 2002
Location: Atlanta
Posts: 936
http://gofuckyourself.com/showthread...61#post1010461
__________________
National Net Hosting. Handled.
See our new line of inexpensive Dedicated Servers | Cabinets starting at $795 | CDN
[email protected] | 888-4-NATNET | www.nationalnet.com
LBBV is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2002, 07:32 AM   #62
MichaelH
Confirmed User
 
Join Date: Oct 2002
Location: Ever heard of Grunnn???
Posts: 130
There's actually a complex solution against hotlinking. But it's bound to the hosting solution i'm using as a customer for more than 4 months now, since they custom programmed it for me and only use it on their own hosting facility.

Contact me on icq : 146920758 for more info.

Michael
MichaelH is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 11-04-2002, 09:19 AM   #63
asmdude2001
Registered User
 
Join Date: Oct 2001
Posts: 23
I heard Like Whoa has the same policy, they have a very advanced movie protection script that works 2 different ways depending on your surfers. There is protection enabled via Cookies, and there is another variation of that script. It securely serves movies in all ways. Left Click, Right Click, and Save Target As. From what I know they only offer it to their hosting customers but get in touch with them to find out more.

http://hosting.likewhoa.com

Quote:
Originally posted by MichaelH
There's actually a complex solution against hotlinking. But it's bound to the hosting solution
Michael
__________________
Hi?
asmdude2001 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.