send fake referer in fank.mobi

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    send fake referer in fank.mobi

    How to send fake referer whitout curl? I use curl to grab data from the site fank.mobi At the time of downloading files hotlink the system does not let you download the file because the referer sent. I do not want to save the files on my server. Anyone have an idea how to download without sending the referer?

    #2
    could try:
    PHP Code:
    header("Referrer: somesite.con"); 

    Comment


      #3
      not work friend

      Originally posted by something else View Post
      could try:
      PHP Code:
      header("Referrer: somesite.con"); 
      not work friend

      I've tried opening the link using target _blank did not work.

      I've tried to open the link in the header using php eg:
      header ("Referer: http:// site2.com");
      header ("Location: http:// site2.com");

      and did not work.

      I've tried opening the link using javascript document.location.href = "site2.com"; and did not work

      Could anyone help me? Thank you in advance for your help.

      Comment


        #4
        use meta refresh that will not send referer info

        Comment


          #5
          not working friend

          Originally posted by Hammad View Post
          use meta refresh that will not send referer info
          Not worlinkg for me friend, in localhost work fine, in server not working

          Comment


            #6
            you cant send referred with header(); it would never worked
            but you can send it with curl like this:
            PHP Code:
            curl_setopt($chCURLOPT_REFERER'http://www.example.com/1'); 
            but you also have to read the file with curl
            Advertise your mobile site for FREE with AdTwirl

            Comment


              #7
              Originally posted by GumSlone View Post
              you cant send referred with header(); it would never worked
              but you can send it with curl like this:
              PHP Code:
              curl_setopt($chCURLOPT_REFERER'http://www.example.com/1'); 
              but you also have to read the file with curl
              using curl works perfectly. But I do not want to use curl by overloading the server. Is there any solution without using curl? Thanks for responding.

              Comment


                #8
                not

                not ideas?......

                Comment


                  #9
                  not replyies?

                  not replyies? ....

                  Comment


                    #10
                    its not possible, only with curl
                    Advertise your mobile site for FREE with AdTwirl

                    Comment


                      #11
                      its possible

                      Originally posted by GumSlone View Post
                      its not possible, only with curl
                      im resolve this using ssl, its possible not send referrer using ssl conection in site.

                      Comment

                      Working...
                      X