Ask a Question related to ASP.NET Security, Design and Development.
-
Bill Belliveau #1
DirectoryEntry Impersonate or WindowsIdentity Impersonate?
Another security question.
Our project interfaces with the Active Directory. To satisfy the security issues, we have a couple options when we talk to the Directory.
1. Use the WindowsIdentity to impersonate the current user either by impersonating the User.Identity where available or by using UserLogon.
2. Making a DirectoryEntry for each query/edit and send the username and password per request as part of the DE.
My questions are what are the security and performance impact of these methods?
Thanks,
Bill
Bill Belliveau Guest
-
Impersonate + AD
Hi, I've got a difficult situation... Is a website that runs on IIS with Anonymous Authentication, the tag <identity impersonate="false"> on the... -
Asp.net impersonate
I don't think impersonation loads the user profile of the account being impersonated. If you think about it, that would make impersonation very... -
Impersonate a user
Hi guys, I am working for an asp app with the use of sql 2000, COM+ and iis 5.0. In part of the solution, some files (lotus notes related) will... -
cmd.exe should run in impersonate account.
Hi All, I am starting a new process from asp.net(cmd.exe). See the following code, System.Security.Principal.WindowsImpersonationContext... -
impersonate
Hi all, I create a aspnet web app for my company. I set it up on a win2000 server with IIS5 as a intranet app. For security, I want to restrict... -
Joe Kaplan \(MVP - ADSI\) #2
Re: DirectoryEntry Impersonate or WindowsIdentity Impersonate?
This is an interesting question that I think can only be answered with
testing. I'm not sure it makes any difference at all if you are using
AuthenticationTypes.Secure, but it would be interesting to know.
There are a few things to know though:
The underlying ADSI layer will use a cached handle to the directory if an
open object exists in memory with the server, credentials and flags.
Therefore, if you are doing a lot of binds with the same credentials, it
might make sense to try to hang on to a root object for that user until they
are finished. This is detailed somewhat here:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/connection_caching.asp?frame=true[/url]
One the other hand, if you are doing just a few binds for each user, I would
be surprised if it makes an difference.
My instinct is to use the user's credentials if you have them as I have
found it to be much easier to debug problems in that situation because it
eliminates a big variable. That is what I have done in many of my . NET AD
apps.
Joe K.
"Bill Belliveau" <anonymous@discussions.microsoft.com> wrote in message
news:51440923-5DF1-4455-B8D8-64CDEAC46ABA@microsoft.com...issues, we have a couple options when we talk to the Directory.> Another security question.
> Our project interfaces with the Active Directory. To satisfy the securityimpersonating the User.Identity where available or by using UserLogon.>
> 1. Use the WindowsIdentity to impersonate the current user either bypassword per request as part of the DE.> 2. Making a DirectoryEntry for each query/edit and send the username andmethods?>
> My questions are what are the security and performance impact of these>
> Thanks,
> Bill
>
Joe Kaplan \(MVP - ADSI\) Guest
-
Bill Belliveau #3
Re: DirectoryEntry Impersonate or WindowsIdentity Impersonate?
After kicking this around for a few days the only thing I'm wondering about is security. When calling DirectoryEntry(path, username, password) does it access resources in a secure context? I assume it probably does something like LogonUser, get a token and then accesses the directory. Although as I'm finding out with ADAM, when using a userProxy object user credentials are sent plain text
In anycase, I think we've concluded that given the state of the project LogonUser is going to be more viable to impliment at this point
Bil
----- Joe Kaplan (MVP - ADSI) wrote: ----
This is an interesting question that I think can only be answered wit
testing. I'm not sure it makes any difference at all if you are usin
AuthenticationTypes.Secure, but it would be interesting to know
There are a few things to know though
The underlying ADSI layer will use a cached handle to the directory if a
open object exists in memory with the server, credentials and flags
Therefore, if you are doing a lot of binds with the same credentials, i
might make sense to try to hang on to a root object for that user until the
are finished. This is detailed somewhat here
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/connection_caching.asp?frame=tru[/url]
One the other hand, if you are doing just a few binds for each user, I woul
be surprised if it makes an difference
My instinct is to use the user's credentials if you have them as I hav
found it to be much easier to debug problems in that situation because i
eliminates a big variable. That is what I have done in many of my . NET A
apps
Joe K.
Bill Belliveau Guest
-
Joe Kaplan \(MVP - ADSI\) #4
Re: DirectoryEntry Impersonate or WindowsIdentity Impersonate?
It is something like that. If you bind with the LDAP provider and specify
credentials, the method for exchanging credentials with the server is
determined by the AuthenticationTypes flags you pass in. If you use
AuthenticationTypes.Secure, the negotiate protocol is used (Kerberos or
NTLM). Your credentials are not passed in plain text. If you don't specify
Secure, then they are passed in plain text unless you specify
SecureSocketsLayer, in which case SSL/TLS is used for all LDAP traffic
(assuming the server has a valid cert and SSL can be negotiated).
I'd suggest using AuthenticationTypes.Secure always when binding to AD and
passing credentials.
With ADAM, you may wish to configure SSL to make sure that you can protect
credentials. You can still use Secure binding with Windows accounts in ADAM
(through userProxy objects) since those are just passed on to AD. I'm not
yet quite sure how it works with ADAM users.
Joe K.
"Bill Belliveau" <anonymous@discussions.microsoft.com> wrote in message
news:10C8465F-B490-4C90-9834-45CE12F88CAC@microsoft.com...about is security. When calling DirectoryEntry(path, username, password)> After kicking this around for a few days the only thing I'm wondering
does it access resources in a secure context? I assume it probably does
something like LogonUser, get a token and then accesses the directory.
Although as I'm finding out with ADAM, when using a userProxy object user
credentials are sent plain text.LogonUser is going to be more viable to impliment at this point.>
> In anycase, I think we've concluded that given the state of the projectwith>
> Bill
>
> ----- Joe Kaplan (MVP - ADSI) wrote: -----
>
> This is an interesting question that I think can only be answeredusing> testing. I'm not sure it makes any difference at all if you areif an> AuthenticationTypes.Secure, but it would be interesting to know.
>
> There are a few things to know though:
> The underlying ADSI layer will use a cached handle to the directoryit> open object exists in memory with the server, credentials and flags.
> Therefore, if you are doing a lot of binds with the same credentials,until they> might make sense to try to hang on to a root object for that user[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/adsi/adsi/connection_caching.asp?frame=true[/url]> are finished. This is detailed somewhat here:
>
>I would>
> One the other hand, if you are doing just a few binds for each user,have> be surprised if it makes an difference.
>
> My instinct is to use the user's credentials if you have them as Ibecause it> found it to be much easier to debug problems in that situationNET AD> eliminates a big variable. That is what I have done in many of my .> apps.
>
> Joe K.
Joe Kaplan \(MVP - ADSI\) Guest



Reply With Quote

