The ntlmv2 tag has no wiki summary.
3
votes
3answers
596 views
NTLM V2 SSO Java Servlet Filter
I need to use NTLM V2 SSO for a web application deployed on Tomcat 6 (Redhat Linux).
I know of the JCifs library but it's NTLM filter supports only NTLM V1 and not V2.
They recommend JESPA as an ...
2
votes
0answers
675 views
Is JCIFS incompatible with windows 2008 R2 domain controllers?
We are using JCIFS(1.3.15) to authenticate from a Windows 7 client which sends only NTLM v2 responses.
We are getting the following error when we use a Windows 2008 R2 domain controller
...
2
votes
1answer
452 views
Custom NTLM authentication with HttpWebRequest
I need to authenticate to a server which exposes a custom NTLM-based authentication scheme, using the standard HttpWebRequest object.
It's pretty much basic NTLM except that during the NTLM handshake ...
1
vote
1answer
97 views
MonoTouch support for accessing Mono.Security.Protocol.Ntlm.NtlmFlags
We use NTLM auth to access an ASP.net web services from our MonoTouch app and everything works fine.
One of our customers uses the same app and the NTLM auth fails from our app but works from the ...
1
vote
0answers
131 views
NTLM logins with clojure
I want to unit test a web application from Clojure. The web application tested is hidden behind NTLM-login. Is there any simple way to use existing clojure http-clients to login with credentials?
...
1
vote
0answers
156 views
NTLM logon format
Is there any way to figure out from NTLM server response the desired logon format. I mean
domain\user
user@domain
user
If there is no way to discover format, then where can I learn about possible ...
1
vote
1answer
114 views
Collision Rate With NTLMv2 Hashing Technique In Windows
Im doing a research assignment at Uni where i am investigating hash functions.
With SHA1 and (from what i can understand) all hash techniques there is (incredibly rarely) hash collisions.
See here
...
0
votes
0answers
54 views
Accessing Exchange mailbox configured with NTLMV2 authentication using Java
I am able to access Microsoft Exchange mailbox using basic authentication but when mailbox configuration changes to NTLMv2 authentication code doesn't work and it throws exception .
Connectivity ...
0
votes
0answers
43 views
NTLMv2. programmatically pass ntlmv2
tell me how to programmatically pass ntlmv2, knowing the official name and password. The need for automation.
Language is not important. may have a component in. net?
0
votes
0answers
27 views
NTLM with long usernames [closed]
I've got ntlm working with apache.
But when I use usernames longer than 16 chars, the usernames doens't get accepted.
Is there a way to change this?
Thanks
0
votes
1answer
81 views
Java 6 with NTLM2
I have a component that is written in C# to overcome NTLM2 authentication protocol (or at least that what I was told)
I'd like to convert this component to Java 6 - will java support the NTLM2 ?
0
votes
1answer
376 views
Single Sign On using NTLMv1 or NTLMv2 or kerberos to a Spring webapp on tomcat on linux
We make an appliance with a spring web interface running on Tomcat on Centos Linux.
I'm investigating how we users can connect with out entering a username/password, but instead use windows ...
0
votes
0answers
235 views
How to get the username from NTLMv2 auth header
I have a Java application that uses the username from the NTLM auth header for SSO (not too secure, but hey, it's an intranet app) - see here.
However, it will not work with NTLMv2, as it MD5's the ...
0
votes
1answer
506 views
NTLMv2 HTTP Authentication Java
I'm very confused on how this is supposed to work. I've tried using something like this:
con = (HttpURLConnection) url2.openConnection();
con.setReadTimeout(10000);
...