Ask a Question related to ASP.NET Security, Design and Development.
-
Bill Belliveau #1
Directory Authentication ignores domain
I have the following code to authenticate. It works, however I have some question about its robustness
The code snipped
DirectoryEntry entry = new DirectoryEntry("LDAP://" + strPath, strDomainAndUsername, strPassword)
tr
Object obj = entry.NativeObject
catch (Exception Ex
throw Ex
For the most part this work, however I noticed some unusual behavior. For example specifying the strDomainAndUsername with a false domain still validates correctly. For example
strDomainAndUsername = @āFakeDomain\Usernameā
The directory call apparently ignores the domain (assuming it is the same domain as the server aka path?
Aside from that I have to wonder what if this user is from another domain in the same forest and is trying to use a local server. Will the entry object propagate the request to the correct domain
If anyone has some insight or perhaps a more robust directory authentication method, please chime in
Bill
Bill Belliveau Guest
-
SSLVPN & Domain Authentication
We are using SSLVPN. When a user connects to the Corporate Network using SSLVPN, they are "authenticated" by virtue of an RSA token and a username.... -
Forms Authentication Using Domain Controller not Active Directory
I want to authenticate user using its Domain from Combo box and then giving username and password. Please give me some hint or links or code. i m... -
SQL Authentication from outside domain
Hello I've read many articles on this subject, but most seem to be concerned with integrated security. I'm shooting for basic SQL Authentication... -
Local v. Domain/Active Directory Security
I have what I believe is fairly common. I am running XP Pro on a home network. I have 4 computers connected to a LinkSys router/switch. I use... -
single sign-on and domain authentication
Our organization is in the process of deploying 9iAS/WebForms applications and we would like to somehow integrate these applications into the domain...



Reply With Quote

