Ask a Question related to ASP.NET Security, Design and Development.
-
Microsoft #1
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
-
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... -
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? -
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... -
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... -
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. ... -
Eric Newton #2
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...site> 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 webbut> 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,> 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



Reply With Quote

