Questions tagged [ntlm-authentication]

In a Windows network, NT LAN Manager (NTLM) is a suite of Microsoft security protocols that provides authentication, integrity, and confidentiality to users. NTLM is the successor to the authentication protocol in Microsoft LAN Manager (LANMAN), an older Microsoft product.

For more info: https://en.wikipedia.org/wiki/NT_LAN_Manager

150 questions
0
votes
0 answers

Trying to handle windows auth with NTLM and Cypress - ‘Username contains invalid characters or is too long’ error

I’m trying to use NTLM plugin with cypress in order to handle windows authentication. On navigating to my test url the test fails, returning the following error in the cypress test runner ui ‘Username contains invalid characters or is too long’ I’ve…
bobe_b
  • 187
  • 1
  • 2
  • 21
0
votes
0 answers

Can I enable non-interactive NLTM authentication on API calls for an endpoint on a different server?

I have a website hosted in IIS that uses NTLM authentication. I can access the site without explicitly providing my credentials. The site itself has functionality that makes ajax calls to API endpoints hosted in an HTTP.sys Windows Service. The ajax…
ilitirit
  • 16,016
  • 18
  • 72
  • 111
0
votes
0 answers

Error connecting to cypress dashboard using ntlm

I have a project running fine in my local env. When I try to connect to cypress dashboard I am getting an error. Without using the cypress dashboard, I can execute it successfully. I am using cypress-nltm. Here is the following command: > npx…
kishor sharma
  • 179
  • 2
  • 17
0
votes
1 answer

RestSharp version > 107: How to implement NtlmAuthenticator?

I got a source code from a colleague in which using RestSharp (version 106.15.0) in VB.NET retrieves data from a web api. I updated the RestSharp version to 108.0.1 and the code no longer works. I found out that some things have changed with…
Mec-Eng
  • 199
  • 10
0
votes
1 answer

Why is CDOSYS sending me a type 3 message with a 56 byte response?

I have some really old code that I'd like to get working with the CDO.Message object. Many years ago, I think this code did work (Windows 98?), but then it didn't work starting with Windows XP (now I'm on Windows 10). My code first checks…
David
  • 76
  • 7
0
votes
0 answers

login automatically to NTLM Authentication site in Webbrowser WPF_C#

I try to open a site but first must fill username and password. I have username and password and I want to fill username and password in my code and users not see Authentication. this is a sample, when click on button load page in WebBrowser…
0
votes
1 answer

Java HttpClient with NTLM - how to use default network credentials

In .NET we can create HttpClient that would use credentials of the current process/user: var uri = new Uri("http://service-endpoint"); var credentialsCache = new CredentialCache { { uri, "NTLM", CredentialCache.DefaultNetworkCredentials } }; var…
Pawel
  • 891
  • 1
  • 9
  • 31
0
votes
0 answers

Run impersonate in iisnode

I have a nodejs server s1 running on IIS (using iisnode). I'm using http-proxy-middleware to forward an http request to another server s2 (can't access that server from client because of cors). s2 needs windows credentials. Someone told me that…
IsraGab
  • 4,819
  • 3
  • 27
  • 46
0
votes
0 answers

C# ASP redirects to ~/Account/Login for some reason - when the user is authenticated

I recently updated my C# asp project from framework v4.5 to v4.8, and also updated the referenced nuget packages. It is a webdav project to let the users browse our sql DB using the webdav style. Before the update it all was ok and worked like a…
0
votes
1 answer

How to create NTLM Authentication Using spring

I am using NTLM authentication for my service. How to create the NTLM authentication in my API service call can anyone help with that? I need the complete coding for NTLM authentication
0
votes
0 answers

Is there a way to include "@" in the user when establishing a smb connection with NtlmPasswordAuth using Java?

I have a username which has an @ in it and I want to establish a smb share connection (host OS: MacOS). Lets say I have: user: blabla@bla pass: passw0rd String url = distribution_path; NtlmPasswordAuthentication auth = new…
0
votes
0 answers

Laravel http request with NTLM Auth

Is there any package/documentation/sample code available to call a http request using NTLM authentication in Laravel. I tried to the below was to first authenticate and then send the NTLM token from response header and call the request…
0
votes
0 answers

Need to connect shred drive from java which having user name and password but throwing SMBApiException

I have tried Ntlm but it dint work so I tried smb SMBClient client1 = new SMBClient(SmbConfig.createDefaultConfig()); Connection c = client1.connect("myhost"); Session s = c.authenticate(new AuthenticationContext("myuser", …
Arvind Reddy
  • 31
  • 1
  • 8
0
votes
0 answers

Windows Authentication in Chrome/Edge got issue HTTP request is unauthorized...the authentication header received from the server was Nogotitate, NTLM

I have an issue with a web client calls to WCF service. The HTTP request is unauthorized with client authentication scheme "Negotiate". The authentication header received from the server was "Negotiate, NTLM"... I can say that all of the staff in…
0
votes
0 answers

Apache NiFi NTLM Authentication 401

I'm having troubles authenticating NiFi to a SOAP WebService, using a NTLM Authentication. I've using this custom processor: https://github.com/peetkes/nifi-http-processor I've created a simple flow, with a FlowFile that contains the XML request,…
Marco
  • 31
  • 6