Bypassing authentication

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

  1. #1

    Default Bypassing authentication

    I'm running a web site and implementing both folder(web.config) and class
    level authorization. A new requirement came in to allow an external web site
    to access some secure web pages directly, without going through the logon
    page.

    The users are valid users, and I will build the principle object anyway, but
    I need to do this before they are being re-directed to the logon page.

    Would removing the folder\file reference from the web.config file help?

    Thanks
    Alex
    [email]alex_dinu@adp.com[/email]


    Microsoft Guest

  2. Similar Questions and Discussions

    1. Bypassing a session ID?
      Hi All, Example: A webpage exists that allows you to fill out a form and click submit. The page next page displays the information found from...
    2. bypassing XP logon
      Is there any way to bypass the domain logon screen in XP Pro if you want to use a domain workstation in desktop mode ? Like you could in 2000?
    3. Bypassing the hard disc
      Several threads in this forum deal with storing pictures on CD-roms. What I understand from computers is, that the data then first is stored on the...
    4. bypassing XP password
      John; Reboot to Safe Mode, select Administrator, leave password blank. Then go to User Accounts in Control Panel. Select the user and change the...
    5. bypassing log on box
      I have the same problem that Howie*, who posted the problem of suddenly getting a log on screen instead of smoothly going straight to the desktop. ...
  3. #2

    Default Re: Bypassing authentication

    You could do something in the global Application_Authenticate event, whereas
    if the HTTP-REFERER field has this "other" website, that it would create a
    GenericPrinicipal like:
    if( HttpContext.Current.Request.ServerVariables["HTTP_REFERER"] == "external
    website" )
    Context.User = new GenericPrincipal("extWebsite", ...);

    else
    /* you other code */

    maybe try that... and this would be a good single place to see where the
    overrides are, instead of scattering them in separate pages, making
    manageability a little harder.

    HTH


    --
    Eric Newton
    [email]eric@ensoft-software.com[/email]
    C#/ASP.net Solutions developer


    "Microsoft" <alexdinu1@hotmail.com> wrote in message
    news:e4SEtwQXDHA.2632@TK2MSFTNGP09.phx.gbl...
    > I'm running a web site and implementing both folder(web.config) and class
    > level authorization. A new requirement came in to allow an external web
    site
    > to access some secure web pages directly, without going through the logon
    > page.
    >
    > The users are valid users, and I will build the principle object anyway,
    but
    > I need to do this before they are being re-directed to the logon page.
    >
    > Would removing the folder\file reference from the web.config file help?
    >
    > Thanks
    > Alex
    > [email]alex_dinu@adp.com[/email]
    >
    >

    Eric Newton 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