POST method and HTTP-REFER

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default POST method and HTTP-REFER

    We have a application which allows other authorized sites to send users to
    our site...when the user is sent to us, user info is sent to us as a hidden
    Form variable and we use the HTTP-REFER variable to make sure the user is
    coming from an approved site. Now I understand the user of HTTP-REFER is not
    a good idea, is there any other ways to validate where a user is coming
    from.

    Jay


    Jay Janarthanan Guest

  2. Similar Questions and Discussions

    1. How to call a web method using http get/post?
      Hi folks, Is there anyway to call a web method over an HTTP protocol using the GET/POST methods (without using the SOAP protocol)??? Any help...
    2. Post method
      Hi there Someone know how to capture the vars and values from the POST method, such like a Matts' FormMail, i want to do somethink like that, and...
    3. using post method
      Hello All, I am trying to use the post method in perl to fill a form. The form is actually for sending an instant message to a cell phone, i would...
    4. ASP, FORMS, POST METHOD And Post with out form(???)
      Lets see if I can decribe, this... I have a form on an html page, that will call a remote site with a post method. Prior to running off to the...
    5. "The system cannot find the file specified." when invoking method ~HTTP Get/Post
      Developed and successfully tested my web service on a development server with .asmx mapped to v1.0.3705 \aspnet_isapi.dll, but when I migrated it...
  3. #2

    Default POST method and HTTP-REFER

    You can use the REMOTE_ADDR server variable to get the
    users IP adress and use it instead of HTTP_REFER.
    But the only way to get the page a user came from is with
    the HTTP_REFER..

    /Fredrik Normén NSQUARED2
    [url]http://www.nsquared2.net[/url]

    >-----Original Message-----
    >We have a application which allows other authorized sites
    to send users to
    >our site...when the user is sent to us, user info is sent
    to us as a hidden
    >Form variable and we use the HTTP-REFER variable to make
    sure the user is
    >coming from an approved site. Now I understand the user
    of HTTP-REFER is not
    >a good idea, is there any other ways to validate where a
    user is coming
    >from.
    >
    >Jay
    >
    >
    >.
    >
    Fredrik Normén www.NSQUARED2.net Guest

  4. #3

    Default Re: POST method and HTTP-REFER

    Thanks...but we need to know where the user came from. HTTP_REFER is good,
    but some time older browsers don't support it. We found the support around
    96%., but for me the biggest worry is the security and since HTTP_REFER is
    at Layer7, it can be spoofed a lot easily.

    Jay



    "Fredrik Normén www.NSQUARED2.net" <fredrik@nospam.com> wrote in message
    news:0e5d01c38b16$6fda8880$a401280a@phx.gbl...
    You can use the REMOTE_ADDR server variable to get the
    users IP adress and use it instead of HTTP_REFER.
    But the only way to get the page a user came from is with
    the HTTP_REFER..

    /Fredrik Normén NSQUARED2
    [url]http://www.nsquared2.net[/url]

    >-----Original Message-----
    >We have a application which allows other authorized sites
    to send users to
    >our site...when the user is sent to us, user info is sent
    to us as a hidden
    >Form variable and we use the HTTP-REFER variable to make
    sure the user is
    >coming from an approved site. Now I understand the user
    of HTTP-REFER is not
    >a good idea, is there any other ways to validate where a
    user is coming
    >from.
    >
    >Jay
    >
    >
    >.
    >

    Jay Janarthanan Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139