GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   .htaccess help (https://gfy.com/showthread.php?t=411985)

StuBradley 01-03-2005 04:26 PM

.htaccess help
 
I noticed that in the member's area of Amateur-Facials.com you cannot download their video clips (when you right-click and "Save as" you get a generic .html page) I looked at their source code and couldn't find anything different about their links and didn't see any java scripts. I'm thinking that it must be something in the .htaccess file that prevents the saving of certain file types (kind of like hotlink protection). Any ideas how this is done?

:pimp

BackToMine 01-03-2005 05:40 PM

probably yes.

you've been checking out the competition's members area havn't you? :winkwink:

Anyway when i want to beat .htaccess when leeching from members area in GetRight:

Configuration -> Advanced -> Protocols -> Check "Send Referer in HTTP requests" -> Check "Random from the download URL"

xxxdesign-net 01-03-2005 05:53 PM

when clicking "save traget as" .. did it do something like vid1.mpg.html ...?

StuBradley 01-03-2005 06:14 PM

Quote:

Originally Posted by xxxdesign-net
when clicking "save traget as" .. did it do something like vid1.mpg.html ...?

Actually, it was going to "main.html". However, when I went to double check it just now it let me download the movie...very odd.

:321GFY

TheMob 01-03-2005 06:18 PM

hmm, interesting thread. i want to know too.

Centurion 01-03-2005 08:24 PM

Quote:

Originally Posted by xxxdesign-net
when clicking "save traget as" .. did it do something like vid1.mpg.html ...?

I get something like this from a picture site when I try and save a jpeg.
Is this a java script blocking this or something else? Any way of getting around it so you can actually save the jpegs to your own hard drive?

Workshop_Willy 01-03-2005 10:37 PM

Quote:

Originally Posted by StuBradley
I noticed that in the member's area of Amateur-Facials.com you cannot download their video clips (when you right-click and "Save as" you get a generic .html page) I looked at their source code and couldn't find anything different about their links and didn't see any java scripts. I'm thinking that it must be something in the .htaccess file that prevents the saving of certain file types (kind of like hotlink protection). Any ideas how this is done?

:pimp

Well I don't know how this is being done by those guys, but here's one of the tools I've always used to stop hotlinkers:

RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://www.mydomain.com/ [NC] [OR]
RewriteCond %{HTTP_REFERER} !^http://mydomain.com/ [NC] [OR]
RewriteCond %{HTTP_REFERER} !^http://www.anotherOKdomain.com/ [NC] [OR]
RewriteCond %{HTTP_REFERER} !^http://anotherOKdomain.com/ [NC] [AND]
RewriteCond %{REQUEST_FILENAME} ^.+jpg [NC]
RewriteRule /* URL.gif

Translation:
"If the referring URL does not contain "http://blah.blah.blah" [OR]
"http://blah.blah" (etc etc) [AND]
The requested filename ends in ".jpg"
Give them this instead (in this case, a handy little cute GIF file advertising your paysite).

Pretty part: The URL window of the browser or any requesting client reports that it's giving you the ".jpg" that you asked for.


You can add conditionals to this, for instance, by adding:
RewriteCond %{REQUEST_FILENAME} ^.+jpg [OR]
RewriteCond %{REQUEST_FILENAME} ^.+mpg [NC]

You get the point. This snippet is intended to keep people from hotlinking (for instance, from those DAMNABLE Chinese BBS's. It doesn't prevent your legitimate members from using an automatic download tool, although you can make some tweaks combined with some php or dhtml code to prevent that as well.

This htaccess code (you can simply add it to anything you already have in htaccess or use it by itself) goes into the directory you want to protect, along with whatever replacement file you want to send the hotlinker. This is just a basic framework. Once you understand the logic of the code, you can use proper syntax to make it pretty elaborate.

d00t 01-03-2005 11:20 PM

search google for htaccess protection... there is HEAPS of tutorials around for this kind of thing..

klinton 01-04-2005 01:06 AM

Quote:

Originally Posted by StuBradley
I noticed that in the member's area of Amateur-Facials.com you cannot download their video clips (when you right-click and "Save as" you get a generic .html page)

you can :)

TheMob 01-04-2005 01:32 AM

hmm, I will ahve yo try that


All times are GMT -7. The time now is 05:07 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123