Tagged Questions
-1
votes
0answers
24 views
Setting up NTLM v2 in Windows Server 2003 [closed]
I am setting up a VM with Active Directory and NTLM for my personal use/development stuff. I set up Active Directory and the DNS relatively easily. In the process I set up my domain which, since it is ...
1
vote
0answers
32 views
Is it possible to retrieve custom property from AD using ADVAPI
I am doing NTLM/Kerberos SSO using com.sun.jna.platform.win32.Sspi, com.sun.jna.platform.win32.Secur32 and com.sun.jna.platform.win32.AdvapiUtils to actually authenticate the user against the AD and ...
0
votes
1answer
275 views
PHP NTLM session with cURL
So a little trivia first..
There is written in ASP.NET website, which uses NTLM protocol to authenticate users that want to log in. It's perfectly ok when they normally use it, they type in website ...
0
votes
1answer
344 views
PHP NTLM Authentication to Active Directory + keeping session
I've got NTLM (Active Directory) based service, and I need to write a PHP application. Normally, users are logging in to website with Activre Directory credentials, and it's ok.
But what I want to ...
1
vote
1answer
184 views
Connecting to LDAP (Active Directory) with NTLM security protocol
Currently, I'm using user and password as the connection credentials to ldap (in order to authenticate user of AD).
For authentication here I had created an initial context (for Active Directory) by ...
0
votes
1answer
319 views
Delegation in WCF not working - First hop is NTLM?
I'm working on a project which requires delegation in a double-hop scenario. We have a desktop client, connecting to a WCF service using a net.tcp binding, connecting to a SQL database on another ...
0
votes
2answers
223 views
Asp.Net MVC 3: intranet application with user in a special AD group?
I saw I can create an intranet authentication which uses NTLM auth. It's almost what I need. In addition I'm required too check that the user is in a specified group in the AD.
Is there a simple way ...
2
votes
2answers
615 views
JAX-WS IBM client consuming .Net WS with Active Directory authentication (NTLM)
I want to consume .Net WS from IBM WebSphere.
I created a WS-client with JAX-WS IBM implementation that consumes a .Net WS on IIS. The client is on SUSE and the authentication is by NTLM with Windows ...
0
votes
1answer
485 views
Connecting to LDAP (Active Directory) with NTLM
Currently, I'm using user and password as the connection credentials to ldap (in order to search on this AD).
My code looks like:
env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, ...
1
vote
1answer
257 views
ldap_sasl_bind - GSSAPI for NTLM authentication
Does ldap_sasl_bind_s support NTLM authentication via GSSAPI? It seems that this is variable to the underlying implementation (GSSAPI for NTLM authentication). I am trying to use NTLM authentication ...
1
vote
1answer
2k views
IIS Windows Authentication Rejecting Some Users
We have a very basic SOAP web service setup using Windows Authentication, open for all users:
<authentication mode="Windows" />
<authorization>
<allow users="*" />
...
3
votes
1answer
616 views
Jespa ntlm authentication with multiple active directories or windows domains
I'm using Jespa to do transparent ntlm sign on. I want to be able to authenticate the users in multiple windows domains. I have it working with one domain. How do I add another?
Thanks
0
votes
1answer
96 views
Off Site AD Authentication
I have a web application (not production) for which I want to enable AD authentication. The problem is that the DC is not mine, it is the client's. The site will be hosted remotely (amazon, rackspace ...
1
vote
2answers
1k views
Which Sharepoint authentication method do you use and why?
Kerberos, NTLM, forms, claims based, use of active directory?
Going through the difficult process of analyzing which authentication method to use for a Sharepoint build-out, and I must be honest in ...
8
votes
4answers
3k views
Single Sign-On Server Authentication in Ruby/Rack
I write and host web applications on Windows servers for intranet usage. My server stack uses Sinatra (which uses Rack), Thin, and (in some cases) Apache for reverse-proxying only.
I want to support ...
3
votes
1answer
1k views
Enable SSO on a Silverlight/.NET Web application: NTLM?
I use Silverlight, .NET 4 (with VB), RIA Services, and I develop under VS 2010.
I'm trying to develop an application that allows SSO (Single Sign-On, i.e. automatic authentification on the application ...
1
vote
0answers
258 views
using active directory, NTLM and then accessing the users exchange unread emails
I am building an intranet site and i want to display the users email(not the complete email), but the subject, from, date and time.
However, the first step would be connecting to the exchange server ...
2
votes
2answers
3k views
.NET calling SharePoint Web Service gets an HTTP 401 Unauthorized exception
I am trying to call a SharePoint Lists service to get list definition and data. The SharePoint site is my companies but I have no control over it. Here is all I know about the server's security:
...
1
vote
0answers
75 views
Calling DsWriteAccountSpn to delete SPNs not on account
I'm calling DsWriteAccountSpn to delete SPNs that belong to a master account that also exist on child accounts. I'm being a bit lazy and getting all the accounts that have SPNs that match the master ...
2
votes
2answers
559 views
Tomcat NTLM Username lookup in Win7 AD environment - samba or waffle?
I'm writing a Java Tomcat intranet app that uses NTLM to lookup a user's name. This is in a Win7 Active Directory environment.
Is it better to use Waffle or Spnego for this? (Or something better?)
2
votes
1answer
142 views
Username according to ASP.NET Windows auth doesn't match logon name in Active Directory
My colleague changed his user logon name in Active Directory today in order to match a new company policy for logon names.
On his machine, the %username% environment variable now shows the new logon ...
0
votes
1answer
615 views
Django to do its own NTLM Authentication (HTTP Headers & all)
I'm considering moving from Apache to Lighttpd for an internal web application, written with python. The problem is that I'm relying on libapache2-mod-auth-ntlm-winbind ... which doesn't actually ...
0
votes
1answer
513 views
Active Directory and NTLM Authentication
I'm writing an IIS Application, which manages AD users. For this purpose I've configured site to use Negotiate AuthenticationProvider, and everything works.
I wonder, is NTLM suitable for operations ...
6
votes
7answers
3k views
Retrieve NTLM Active Directory user data to Rails w/o IIS
I believe that we can allow Firefox to sent NTLM data to SharePoint sites to do automatic authentication, and I think that this is doable with IIS.
I'd like to do the same thing with an internal ...
4
votes
6answers
22k views
How do I use NTLM authentication with Active Directory
I am trying to implement NTLM authentication on one of our internal sites and everything is working. The one piece of the puzzle I do not have is how to take the information from NTLM and authenticate ...