.htaccess help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • StuBradley
    Confirmed User
    • Jul 2002
    • 2625

    #1

    .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?


    51-566-514
  • BackToMine
    Confirmed User
    • Nov 2004
    • 541

    #2
    probably yes.

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

    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"

    Comment

    • xxxdesign-net
      My hips don't lie
      • Nov 2002
      • 10129

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

      Comment

      • StuBradley
        Confirmed User
        • Jul 2002
        • 2625

        #4
        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.


        51-566-514

        Comment

        • TheMob
          Confirmed User
          • Jan 2003
          • 8584

          #5
          hmm, interesting thread. i want to know too.

          Comment

          • Centurion
            Confirmed User
            • Dec 2002
            • 6033

            #6
            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?

            Comment

            • Workshop_Willy
              Confirmed User
              • Oct 2004
              • 452

              #7
              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?

              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.
              FREE Retouch - get a gratis from the best there is!


              Do the Mess-Around...

              Comment

              • d00t
                Confirmed User
                • Sep 2002
                • 3766

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

                Comment

                • klinton
                  So Fucking Banned
                  • Apr 2003
                  • 8766

                  #9
                  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

                  Comment

                  • TheMob
                    Confirmed User
                    • Jan 2003
                    • 8584

                    #10
                    hmm, I will ahve yo try that

                    Comment

                    Working...