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
1
vote
0 answers

How to use NTLM authentication from RHEL 8 to RDS for query

I am attempting to connect to a RDS instance that is joined to the AD. The authentication mechanism it is using is NTLM. Hence, on my instance where my python web app is hosted, it has to connect to the RDS and authenticate via NTLM with the domain…
1
vote
1 answer

WebView can't showing login js pupup "basic auth" in react-native

I am trying to open this page to test NTLM login in my react-native app: link: https://authenticationtest.com/HTTPAuth/ the code: return (
1
vote
2 answers

Cypress: Is it possible to navigate to a web page and leave it opened for the next tests?

I am planning to update the Cypress version of an existing project from 6.9.1 to 12.6.0. Currently we are navigating to a web page and logging in with ntlm-auth in a before() hook. After that the web page remains opened and can be used in all tests…
Petar
  • 13
  • 5
1
vote
1 answer

When the UseDefaultCredentials property of an HttpClientHandler is set to true, how do credentials actually get resolved for a request?

When creating an instance of an HttpClient, you can pass an instance of an HttpClientHandler to configure how you want the client to behave. One of these options is the UseDefaultCredentials property, it's purpose being to control "whether default…
Inirit
  • 61
  • 1
  • 6
1
vote
2 answers

Spring WebClient Windows NTLM Authentication

I can't find any good sample or doc that explains this clearly. I can successfully authenticate with the (older) RestTemplate: HttpClientBuilder httpClient = HttpClients.custom(); BasicCredentialsProvider provider = new…
1
vote
2 answers

Second NTLM Authorization Header

When performing a curl with --ntlm, what is happening between the WWW-Authenticate header being sent back, and then then the second NTLM Authorization header being sent to finally return a 200? Authorization: NTLM xxxxxxxx < HTTP/1.1 401…
1
vote
0 answers

AWS glue NTLM authentication

I'm trying to connect a on-prem sqlserver from AWS Glue using NTLM authentication, To do that I need to add following arguments to the connection url integratedSecurity=true;authenticationScheme=NTLM But when I add them, glue thows error saying the…
1
vote
0 answers

express-ntlm: how to get additional attribute value in req.ntlm?

In express-ntlm package i have added password attribute but i'm not able to get its value while i provide in private window of chrome. I always getting empty value. My code is: /* jshint node:true */ // node.js modules var url = require('url'); //…
KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133
1
vote
1 answer

How to pass NTLM credentials using angular http post call?

I am working on localhost where angular and web api using 2 different ports that's causing issue now. I am trying to call web api c# from angular like…
1
vote
0 answers

HTTP request with NTLM authentication in Julia

Is there a way the execute an HTTP request that requires an NTLM authentication with Julia. As far as I know, HTTP.jl does not support it natively. For reference, in my case, the python equivalent is import requests import json from requests_ntlm…
wueli
  • 951
  • 11
  • 19
1
vote
0 answers

Lambda Function and NTLM

I'm investigating to generate a Lambda Function (Java) with SOAP WSDL transfer protocol and NTLM as authentication protocol. Could somebody tell me if is it possible? I've read that maybe it's no possible 'cause NTLM is not supported on Lambdas and…
TryalBA
  • 31
  • 1
1
vote
2 answers

NTLM in Cypress

I want to access a link that is protected with username and password through a windows authentication popup. I read that this requires an NTLM plugin for Cypress. I want to access a form link https://etc.domain.com/dirlisting/notifications and here…
1
vote
0 answers

Sending Request using NTLM Authentication in VBScript

I am trying to send a get request using below VBScript: dim user, pass,url,Req url = "url" user = "DOMAIN\USER" pass = "mypassword" Set Req = CreateObject("Msxml2.ServerXMLHTTP.6.0") Req.Open "GET", url, False …
GG1919
  • 19
  • 1
1
vote
0 answers

How can I use NTLM authentication with node using domain, user, and password?

I want to authenticate against a board game website called yucata.de using nodejs. Via Python Looking at the headers with Chrome devtools, it looks like it uses a ASP.NET_SessionId, a .Stackify.Run, and a 168 hex value for Yucata inside of its…
Ross Jacobs
  • 2,962
  • 1
  • 17
  • 27
1
vote
0 answers

How to use NTLM Authentication using ghql in R

Hi I'm trying to connect to my Graphql controller that authenticates through ntlm using an R script and the ghql library. The trouble I'm having is the only authorization examples I've found use tokens like so. token <-…
1 2
3
9 10