Ask a Question related to ASP.NET Security, Design and Development.
-
Juri Zenkevitch #1
q: asp.net: changing logon time to get LOGON32_LOGON_NETWORK_CLEARTEXT ?
Hi All !
I get into the problem... My web application, which uses authentication
mode="Windows", so the app will impersonate under the user, which access
it's pages. In the application, I do use
"Microsoft.Win32.RegistryKey.OpenRemoteBaseKey ", which fails, because the
app identity was (probably) logged on w/out the NETWORK_CLEARTEXT flag
(LogonUser).
So, the question is: can I change that flag somehow for current application
identity ? I can not do the LogonUser, because my server-side code do not
have the password for user, only it's identity (token) in Principal
object...
Any ideas ?
Thank you,
Yury.
Juri Zenkevitch Guest
-
Design time doesn't update when changing collection
I have a custom control with a ListItemCollection. If I add items by hand in the aspx and switch to design time view, everything works fine.... -
changing text properties at run time doesn't work
when I try to increment the text itself like myText._x ++; it will only move one pixel! it wont keep moving like a movie clip. I know that this... -
Time/Date format and changing time to GMT
Hi All, Sorry if this is the wrong newsgroup to post into, on this topic, if so, please point me in the right direction..... Currently working... -
Changing a sprite member for a period of time
Dear Forum I have developed a childs numeracy and spelling game. I have managed to build the back-end of the system i.e the creation of random... -
Changing MyDataGrid.PageSize casues run time error
As in the C# samples : ms-help://MS.VSCC.2003/MS.MSDNQTR.2003APR.1033/cpref/html/frlrfsystemwebuiwe... -
Juri Zenkevitch #2
Re: asp.net: changing logon time to get LOGON32_LOGON_NETWORK_CLEARTEXT ?
Err, I meant to say "logon type" in subject :)
"Juri Zenkevitch" <yury@altiris.ee> wrote in message
news:#D7jIsBtDHA.3744@TK2MSFTNGP11.phx.gbl...application> Hi All !
>
> I get into the problem... My web application, which uses authentication
> mode="Windows", so the app will impersonate under the user, which access
> it's pages. In the application, I do use
> "Microsoft.Win32.RegistryKey.OpenRemoteBaseKey ", which fails, because the
> app identity was (probably) logged on w/out the NETWORK_CLEARTEXT flag
> (LogonUser).
>
> So, the question is: can I change that flag somehow for current> identity ? I can not do the LogonUser, because my server-side code do not
> have the password for user, only it's identity (token) in Principal
> object...
>
> Any ideas ?
>
> Thank you,
>
> Yury.
>
>
Juri Zenkevitch Guest
-
Brian C #3
Re: asp.net: changing logon time to get LOGON32_LOGON_NETWORK_CLEARTEXT ?
Yury,
mode="Windows" will not insure that the the app will
impersonate under the user. However, this will:
<identity impersonate="true" />
It is likely that the users are using the local ASPNET
user.
Brian
uses authentication>-----Original Message-----
>Err, I meant to say "logon type" in subject :)
>
>"Juri Zenkevitch" <yury@altiris.ee> wrote in message
>news:#D7jIsBtDHA.3744@TK2MSFTNGP11.phx.gbl...>> Hi All !
>>
>> I get into the problem... My web application, whichuser, which access>> mode="Windows", so the app will impersonate under thefails, because the>> it's pages. In the application, I do use
>> "Microsoft.Win32.RegistryKey.OpenRemoteBaseKey ", whichNETWORK_CLEARTEXT flag>> app identity was (probably) logged on w/out thecurrent>> (LogonUser).
>>
>> So, the question is: can I change that flag somehow forserver-side code do not>application>> identity ? I can not do the LogonUser, because myin Principal>> have the password for user, only it's identity (token)>>> object...
>>
>> Any ideas ?
>>
>> Thank you,
>>
>> Yury.
>>
>>
>
>.
>Brian C Guest



Reply With Quote

