Questions tagged [windows-authentication]

Integrated Windows Authentication is a term associated with Microsoft products that refers to the SPNEGO, Kerberos, and NTLM authentication protocols. Use tag with Windows authentication generally; though it might be best to use one of the more protocol-specific tags (such as Kerberos or NTLM) if the protocol being used is known.

Integrated Windows Authentication () is a term associated with Microsoft products that refers to the , , and authentication protocols with respect to functionality introduced with Microsoft Windows 2000 and included with later Windows NT-based operating systems. The term is used more commonly for the automatically authenticated connections between Microsoft Internet Information Services (), , and other aware applications.

IWA is also known by several names like HTTP Negotiate authentication, NT Authentication, NTLM Authentication, Domain authentication, Windows Integrated Authentication, Windows NT Challenge/Response authentication, or simply Windows Authentication.

Source: http://en.wikipedia.org/wiki/Integrated_Windows_Authentication

3028 questions
15
votes
8 answers

Hibernate authentication without passwords stored in plain text

My goal is to authenticate to the database using a JDBC/Hibernate in a secure manner, without storing passwords in plain text. Code examples appreciated. I'm already using waffle to authenticate the user so if there was some way to use the…
KyleM
  • 4,445
  • 9
  • 46
  • 78
15
votes
4 answers

proper implementation of "windows" authentication in web api?

I've created a Web Api 2 app which will only be used on the corporate network. I've read about Windows authentication in Web API so it seems to be possible. But I need to figure out the proper implementation for this. I've included the following xml…
15
votes
2 answers

Windows 10 Home: Windows authentication

I'm on a 64bit machine running Windows 10 Home.IIS Version 10 I'm trying to use windows authentication on IIS Server. I only see 4 options on IIS server: Anonymous Authentication, ASP.NET Impersonation, Basic Authentication and Forms Authentication.…
user5045166
15
votes
3 answers

ASP.NET WindowsAuthentication custom 401 Unauthorized error page

I have an ASP.NET web-site with authentication using ActiveDirectory. Now, when an authenticated user opens a page - he is automatically authenticated. I have faced a problem - when a non-authenticated user (for example, a Mozilla Firefox user…
15
votes
8 answers

How can I run Internet Explorer Selenium tests as a specific domain user?

I have a ASP.NET MVC website that uses Windows Authentication to control access. I would like to have a specflow selenium test that checks the configuration is correct by attempting to visit the site as a non-authorised user. As we're using domain…
15
votes
5 answers

windows authenticated website prompt for firefox but doesn't for internet explorer

i added windows authentication on my website to track user names. For IE it works fine and is seemsless but it prompts for windows login for user using firefox. any ideas?
leora
  • 188,729
  • 360
  • 878
  • 1,366
15
votes
2 answers

Validate Windows Identity Token

I am trying develop a simple web service to authenticate users of a desktop application using the windows identity framework, at present I am passing the token generated by WindowsIdentity.GetCurrent().Token via a post variable (it is encrypted and…
mitchellsg
  • 486
  • 5
  • 13
14
votes
2 answers

windows authentication: negotiate, ntlm and kerberos

First of all are negotiate, ntlm and kerberos three different implementation of windows authentication? IE sends this: Authorization: Negotiate YIIFswYGKwYB ... Firefox sends this: Authorization: NTLM TlRMTVNTUAADAA ... Do they use different…
ren
  • 3,843
  • 9
  • 50
  • 95
14
votes
1 answer

Can't connect to SQL Server in different domain using SSMS and Windows 7 Credential Manager

I need to connect to a SQL Server 2008 instance in another Windows domain to manage it. We only use Windows Authentication. In Windows XP, I could use the "Manage Network Passwords" feature to store on my local machine my username and password for…
BrianFinkel
  • 2,687
  • 3
  • 26
  • 28
14
votes
2 answers

Login to windows domain on Linux container

My company is exclusively using Windows machines and when I login to the windows domain it gives me access to some shared drives and databases. Now I would like to run R in a container, for instance following tutorial…
RockScience
  • 17,932
  • 26
  • 89
  • 125
14
votes
3 answers

Asp.Net core MVC application Windows Authentication in IIS

My Asp.Net Core mvc web application requires Windows Authentication. In developpement, on IIS Express, everything works fine thanks to this setting launchSettings.json "iisSettings": { "windowsAuthentication": true, …
Nicolas Boisvert
  • 1,141
  • 2
  • 10
  • 26
14
votes
3 answers

Ntlm/Kerberos authentication in Django

I'm looking for a guide about adding windows authentication support into a django app, particulary OSQA I'm aware about http://code.google.com/p/python-ntlm/ And also saw this post:…
Shrike
  • 9,218
  • 7
  • 68
  • 105
14
votes
2 answers

Sign in as different user when using Integrated Windows Authentication

I have restricted access to a site by using Integrated Windows Authentication and turning off anonymous access. This way I can then show them their real name (from looking up on Active Directory and using the server variable LOGON_USER) and do other…
SamWM
  • 5,196
  • 12
  • 56
  • 85
14
votes
2 answers

ASP.NET MVC5/AngularJS/Web API app using Windows Authentication and OWIN

I may be over-complicating things, but we have an internal ASP.NET MVC5 SPA with AngularJS using Windows Authentication. This application has a SQL back-end database that has a table of users, containing their account names, and their respective…
mmoreno79
  • 473
  • 2
  • 4
  • 10
14
votes
2 answers

Windows Authentication not working in ASP.NET MVC 5 web app

I have an ASP.NET MVC 5 app and am trying to enable Windows Authentication. The development machine is Windows Server 2008 R2, IIS Express 8.0, Visual Studio 2013 & .NET Framework 4.5. I get a 404 Not Found error when ever I browse the app. The app…