3
Reply

How windows authentication works in background?

Navratna Pawale

Navratna Pawale

Jan 08, 2016
2k
0

    initially IIS performs the authentication through one of its authentication options (e.g., basic, digest, Integrated Windows, or some combination of them). After successful authentication, IIS passes the credentials of the authenticated user to the ASP.NET thread. Selection of appropriate identity for the ASP.NET worker thread is performed by using the process defined under the ASP.NET Impersonation section. Based on the credentials supplied by IIS, windows identity is created by WindowsAuthenticationModule module in ASP.NET. This identity is set as current user identity (setting the security information for the current HTTP request)for the application. This is the default authentication mode in ASP.NET and it is set in web.config file of the application

    Avikshith Aradhya
    May 30, 2016
    3

    Winlogon Winlogon (%windir%\System32\Winlogon.exe) is the executable file responsible for managing secure user interactions. Winlogon initiates the logon process for Windows Server 2003, Windows 2000, Windows XP, and Windows NT 4.0. Winlogon is responsible for the following tasks. Desktop lockdownStandard SAS recognitionSAS routine dispatchingUser profile loadingScreen saver controlMultiple network provider support

    Praveen Dhatrika
    January 21, 2016
    3

    This authentication method is a preferred solution for small and medium network environments. Users will have to authenticate when accessing web sites. The credentials are verified against an external Server acting as a Domain Controller. This can be a:Windows NT 4.0 Server or Windows 2000/2003/2008 Server (even with Active Directory enabled).Samba 2.x / 3.x Server (running as Domain Controller).Advanced Proxy works with Windows integrated authentication (transparent) or with standard authentication (explicit with username and password).

    Keerthi Venkatesan
    June 08, 2016
    1