Security :: Intranet Site Authentication Against Active Directory?

Oct 2, 2010

I am trying to build a web app for an intranet site that for security reasons needs to make the user type in their Windows or Active Directory username pwd manually. I have previously worked with Integrated Windows Auth but in this case, we do want them to use type in their AD credentials.

I have been trying to look up how to do this and frankly I am a bit lost. It should be a fairly straightforward task and am hoping you can point me in the right direction, with some tutorials or examples. We will be using SSL so, dont have to worry about passing pwd in cleartext over the wire.

My environment is visual studio 2008 in C#, .net 3.5 if that matters.

View 1 Replies


Similar Messages:

Active Directory/LDAP :: To Provide Authentication Based On A Active Directory Security Group for A Webpage

Apr 21, 2010

How to provide authentication based on a Active directory security group for a ASP.net webpage. I am using c# laungauge and .Net framework2.

View 3 Replies

Security :: 3.5 - Set Up An Intranet Site With Windows Authentication

Jul 26, 2010

i m trying to set up an Intranet site with Windows Authentication. I have configured the web.config as shown below.

<authentication mode="Windows">
<roleManager enabled="true" />

I wanted to do authorization by roles so

<authorization>
<deny users ="?"/>
<allow roles="D820MySite_Developers, D820MySite_Admins"/>
</authorization>

I'm in the D820MySite_Developers group. When I attempt to login, it wants my password. I thought that with Windows Authentication it should not prompt for the password. If is use <allow user="*"/> it does not.

1. Is this the correct behavior?

2. My aspnetdb does not appear in the App_Data folder. Should it and is this causing the problem. If it should be there, how do I get it there?

3. I was under the impression that by using Windows Authentication, I can prevent users from accessing pages by folder. Is this provided by IIS or is this provided by Windows (using Windows Explorer)?

View 3 Replies

Security :: Use AD Authentication With Our Intranet Site To Control?

Feb 24, 2011

We would like to use AD authentication with our Intranet site to control what pages different users can access. I'm very new to ASP.net and would be interested in links to a how to description. We are using Visual Studio 2008.

View 1 Replies

Security :: Windows Authentication On An Intranet Site

Mar 23, 2010

I'm trying to set up Windows authentication on an intranet site. I have this code in the web.config:

<system.web>
<authentication mode="Windows"/>
<authorization>
<allow users="domainuser, domainuser2" />
<deny users="*" />
</authorization>
</system.web>

I can log in with my own credentials, but I have virtually all the rights in AD. User2 can not log in. The website is set to use Windows authentication in IIS manager. And I've tried setting permissions in IIS manager and NTFS permissions for the folde

View 3 Replies

Security :: Forms Authentication With Active Directory?

Aug 6, 2010

I am trying to set up an intranet application with Forms Authentication configured for AD. (Don't ask why, it's for the boss). Anyways, I got it configured to where everybody on the domain can log in but I need to restrict it to a security group that IT has set up for me.

The problem I am having is that users in the SG can not log in to the site. I tried just adding

[Code]....

without a role manager but it didn't work. Then I tried adding the role manager below (among others...).

Here is my web.config

[URL]

Also, how should the user defined in connectionUsername and connectionPassword be set up? Must it be the same as the user I am running the application as?

View 4 Replies

Security :: Forms Authentication With Active Directory

Jan 18, 2010

I want to authenticate against the Active Directory by using Forms authentication and Visual Studio ASP.NET/C#.Do you know any great tutorials/howto:s for implementing this?

View 7 Replies

Security :: Authentication With Active Directory AD Getting Properties

Aug 19, 2010

Authentication With Active Directory AD Getting propertie

[Code]....

View 1 Replies

Security :: MVC Forms Authentication With Active Directory

Sep 1, 2010

I am just getting started with MVC and I was wondering if someone could point me in the right direction for help with forms authentication using active directory? I have the sample site up but the results I have found on google have not been very helpful in answering this question. This site is going to be an intranet page that we want users to be able to access without logging in when they access it from our network while they must login when trying to access it from home.

View 7 Replies

Security :: Login Using Authentication Against Windows Active Directory?

Jul 30, 2010

I am using Visual web Developer 2010 Express.

I want to create a small intranet web site with a login page that will authenticate against groiups of users in Active Directory. So for example if someone in Group A logs in they can get to web page X and if someone from Group B logs on they can get to web page Y. Is it possible to do this with the login controls without writing code? I thought it would be a fairly standard thing to do.

View 7 Replies

C# - Setting Up IIS / Active Directory For Forms Authentication Security?

Mar 10, 2011

What's the easiest way to make Forms Authentication functional? Do I need to setup IIS/Active Directory? If so, how would you code that?

I was looking at this tutorial but it is a bit long, hard, and confusing: [URL]

Here's my web.config info:

[Code]....

View 1 Replies

Active Directory/LDAP :: Authentication Using A AD Security Group

May 5, 2010

I am trying to restrict access to the webpage using a security group. find the code in the web.config file:

<authentication mode="Windows"/>
<roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider" />
<authorization>
<allow roles="enterprisenet.orgNMR Helpdesk Supt" />
</authorization>

Code in the code behind file of the aspx file i am trying to access:

if (User.IsInRole(@"enterprisenet.orgNMR Helpdesk Supt"))
{}
else
{
Server.Transfer("noaccess.aspx");
}

Group is located in enterprisenet.org/Groups/NMR Helpdesk Supt . Its not working as expected.

View 2 Replies

Security :: How To Make Authentication Using Active Directory Groups

Mar 8, 2010

I've built a asp.net 3.5 web application and want to be able to restrict access to particular pages. I have pages which should be able to be accessed by a user and then an adminshould be able to access all pages. I have created 2 Active Directory groups, one for normal users and one for admins so any users in the user group can see some pages then admins should have no restrictio

View 1 Replies

Security :: Active Directory Can Work Together With Forms Authentication

Jun 3, 2010

I currently have a web application deployed on our intranet and it uses Active Directory to authenticate the user.It all works fine. But now im asked to somehow grant access to the application for outside vendors that are not part of AD, but they still need to keep the functionality of the AD as they dont want to manage all the users that currently use the application.Is this possible in some way?Currently users dont need to enter a password or username as they are part of AD, but users who are not get the " You are not authorized to view this page..."message. Is there any way to avoid that message and allow them to login using their own password?

View 1 Replies

Security :: Forms Authentication Using Active Directory Group

Jan 15, 2010

[Code]....

Forms authentication using Active Directory Group

View 5 Replies

Security :: Active Directory Authentication With Login Control 3.5 Or 4?

May 7, 2010

I am trying to follow instructions on how to create a login page that tests against active directory. My issue is all of the tutorials seem to be written for ASP.NET 2.0. When I try to follow them I cannot get them to work. Does anyone have any tutorial or information for .NET 3.5 or 4.0?

View 11 Replies

Security :: Login Users With Active Directory Authentication VB.NET?

Nov 5, 2010

I want to know how to do Active Directory Authentication in my intranet web application,

So far I created a simple login page and I am using the login control. my questions are how do I configure the application, how do I interface the login control so it will take the user to next page once they input their usual active directory username and password.

View 5 Replies

Security :: Site On The Same Domain As The Active Directory Server?

May 26, 2010

a asp.net site located at a hosting center(UK)and i want users from our office to login to that site using their active directory account.is this possible to do over the network ? or i need the site on the same domain as the active directory server?

View 3 Replies

Security :: Active Directory User Impersonation With Forms Authentication

Aug 31, 2010

I've written a small ASP.NET 3.5 application to allow users to update selected account attributes on their own. Everything works fine when I use Basic Authentication, but because the dialog that is presented is less than ideal, I'd like to use forms authentication to give the users more instruction on how to log in. My problem is that in order for the user to update their account information, I have to have the application impersonate them for the update actions. I've scoured the internet trying to find a solution to my issue, but nothing fits or works. I have tried setting the web.config:

[Code]....

I also tried using the LogonUser method to create a user token and backend the authentication that way, and it doesn't work either.

[Code]....

View 2 Replies

Security :: Active Directory Authentication With Client Certificate Mapping?

Jun 24, 2010

I am trying to authenticate the users on a web application through their Active Directory credentials. What should I use? Client Certificate Mapping? or Forms? I am currently using a Form Authentication, but it is not working. It keep telling me my credentials are not correct. Should I switch over to something more recent? Client Certificate Mapping is installed, I just don't know how to set it up. Isn't there something about purchasing a certificate for the website? Is there anything else I can use that is secure and uses Active Directory credentials?

View 10 Replies

Security :: Authenticate Against The Active Directory When The Site Is Hosted Remotely?

Mar 25, 2011

I am trying to develop a internal corporate portal that will be hosted external either on company leased decicated server or by hosting service like godaddy. The company portal is going to have links internal and external resources like Outlook Web Access and Sharepoint, Great Plains, our CRM software, etc, etc. I am basically creating intranet site for the company but the intranet is going to be hosted externally.

How do I authenticate user against the Active Directory, when the intranet site is hosted remotely?

View 1 Replies

Security :: LoginView And Windows Authentication - Setting - User's Account And Password Checked By Active Directory?

Sep 19, 2010

i have a problem with the users authentication on my site. I made <authentication mode="Windows"> in my web.config. The LoginView shows "mycomputermyusername" if i request the page. So far as well. Now i want to login with a different username. Users are stored in an Active Directory. My questions: wich setting i have to do, that user's account and password checked by Active Directory? how can i force the system to make a new login? Logout doesn't work, i always see my on account.

View 1 Replies

Active Directory Intranet / Get A Windows Prompt To Enter Username And Password

Nov 2, 2010

I have an intranet that gets the current logged in user through active directory. When a user is locked out they get a windows prompt to enter their username and password. Is there a way for me to catch this and redirect them to a page where they are asked to enter their credentials again or tell them that their account might be locked out and to contact the help desk?

View 1 Replies

Active Directory/LDAP :: Connecting Intranet Application To Global Catalog

Jan 12, 2010

I am developing an intranet application that needs to authenticate against a global catalog server (containing about 14 domains). What would I use for the connection string?

GC://DC=mb,DC=rellish,DC=com

View 2 Replies

Use Active Directory Authentication When Windows Authentication Fails?

Mar 29, 2011

I have a web application (intranet based) which uses Windows Authentication. Unfortunately there are public computers that have public logins at some company locations. My web app doesn't support these public logins because I need to know the user workingSo, even though these public users are windows authentication users, my app will fail because I have no user account setup for that particular account. I want to then try Active Directory Authentication.In my Default.aspx.cs I'd have something like this

protected void Page_Load(object sender, EventArgs e)
{try
userContext = new UserContext(); // If the authenticated user isn't a user in my system then throw an exception
}
[code]...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved