NTLM (NT LAN Manager) is a suite of Microsoft security protocols that provides authentication, integrity, and confidentiality to users.
1
vote
0answers
7 views
NTLM proxy Authentication in Android
i am trying to use Httppost operation by using NTLM proxy authentication. I have used JCIFSEngine. But still i am getting an error.
Here is my code:
BasicHttpParams params = new BasicHttpParams();
...
0
votes
1answer
32 views
Automate download of a dynamically generated file after NTLM Authentication using vbscript/java
I am trying to automate to download a dynamically generated file on a server, so here are the steps what I have to carry out manually -
Login to the site using my credentials - It uses NTLM to ...
2
votes
1answer
44 views
Best way to store multiple passwords into Database
In my database I've a field for the user password (User.UserPassword), I'm using SHA1 algorithm to hash the user input and then I hash it with a salt. Ok, that's fine.
But now I'm authenticating CIFS ...
0
votes
1answer
11 views
CORS with Windows Authentication (NTML)
I've run into the CORS issue when doing an xhr request to a different domain (in my case, localhost to another server).
This blog describes the various issues I've run into : ...
0
votes
0answers
17 views
cURL NTLM Proxy Authorization
I have been using curl for some time now and its working fine but with a proxy which uses users 'domain\username' to authenticate curl fails asking for Authorization. Authorization method is NTLM. ...
0
votes
0answers
27 views
Binding Image ImageSource to URL breaks HttpClient NTLM Handshake
I have a .NET 4.5 WPF application which displays a number of icons in a grid - those icons are loaded through setting the ImageSource of an Image control to a specific URL (no authentication ...
0
votes
0answers
12 views
NTLM authentication with BackgroundDownloader in metro app
I want to use BackgroundDownloader class to download files from some external repository which uses NTLM authentication, So i need to pass NTLM authentication header in request from my ...
0
votes
2answers
49 views
MVC 4 / IIS 7.5 - Prompting for windows authentication credentials
I have a MVC4 application which is using Windows Authentication. Both my computer (developing) and the host server are running IIS 7.5 and are on the same domain. The application has it's own app pool ...
0
votes
0answers
16 views
sending html with python and outlook
I am trying to test sending an html table in the body of an outlook email, using ntlm, urllib2 and some other stuff. I can send email text successfully, but not html. Please have a look at my code ...
0
votes
0answers
22 views
Speed of response with python-ntlm
Python noob here so thank you for your patience.
I have been trying to write a script that will query the API of our server (running a reservation system) to query availability.
Currently we have a ...
0
votes
0answers
15 views
Win32 API to provide both challenge and challenge response up front for user authentication
Normally in the context of something like lsaLogonUser for a NTLM/MSCHAP exchange you get a flow like the following:
server provides a client challenge
client provides response to server challenge
...
0
votes
0answers
44 views
Consuming a JAX RS in Tomcat with Windows Authentication (via WAFFLE)
I have written a Web Service using JAX-RS in Netbeans. This was deployed to a local Tomcat 7.0 server on my machine which used basic authentication for users to login and retrieve some XML.
I ...
3
votes
0answers
47 views
Symfony2: automatically logging in users from their Windows session
In Symfony2 I have built an intranet. It currently uses the FOSUserBundle and an LDAP bundle to log users in, and I would like to add the functionality to log in user from their session in Windows.
I ...
0
votes
0answers
31 views
Does windows phone 7 support ntlm authentication?
i search for a way to connect my WP7 app to a https server using NTLM but the app crash with error remote server not found. and it's working fine with other platform.
Some forum says that WP7 does ...
0
votes
2answers
120 views
Authentication NTLM to Sharepoint Services failed on List.asmx but works for copy.asm
I have a simple .NET WPF application. I added service reference. to
//server:port/sites/site_collection_name/_vti_bin/lists.asmx
and call it ListServ. I typed followed code
ListsSoapClient ...