views:

37

answers:

1

I'm working with Django on Linux and I have an application that integrates with Active Directory. I'm seeking opinions and advice about whether or not it would be feasible or reasonable to access the HTTP headers from within the application to coordinate HTTP authentication.

The end goal would be to perform NTLM authentication without a password, which I accept may be quite a bit of work and research.

Note, this is a more general version of my original question, which received no answers.

+1  A: 

Sure. Just return a HttpResponse with a 401 status code, and tell your web server-Django connector to let the auth headers through.

Ignacio Vazquez-Abrams