I am trying to write Connect calls via a NTLM authenticating proxy server. I open a socket to the proxy server and send it a “CONNECT x.x.x.49:80 HTTP/1.1\r\n\r\n”. I expect this to fail as it is an authenticating proxy server but it fails and also closes my connection to the proxy server. I am using Wireshark to check packet values. I can see “Proxy-Connection: close\r\n”. If I do a GET it does not close the connection. My question is if it is correct for a failed Connect call to close my socket connection?
HTTP Connect via NTLM authenticating proxy server
1.4k views Asked by cloonacool At
1
There are 1 answers
Related Questions in HTTP
- Handling both JSON and form values in POST request body with unknown values in Golang
- Why can't I use PUT requests?
- nginx set up reverse proxy from subfolder to a port
- Async Web Server RP2040 returning ERR_CONNECTION_REFUSED?
- Getting `FormatException: Missing extension byte (at offset 6)` exception for accessing `response.body` from a server deployed in Vercel
- Retrieving list of values from MYSQL data base based on input value(LARAVEL 10 )(GET HTTP METHOD)
- Unable to add request headers via CHttpFile - C++/MFC
- Why do we call all http services 'Web Api/Web Service'?
- How to correctly read POST REQUEST body on ESP32?
- on linux gitclone issue remote server error showing fatal error with proxy n port
- Elasticsearch - cascading http inputs from Airflow API
- How to clean the html pages opened in a session?
- UTF-8 is not a valid encoding name
- I dont get the Result i expected when i want to get my Telegram Chatbot id
- NextJS 14 SSE with TransformStream() sending messages in a single response
Related Questions in NTLM
- Pyhton ldap3 NTLM unable to return json.loads data
- NTLM authentication was deprecated in HttpClient 5.3.1; can I authenticate using headers? (Java)
- Changing an app's authentication that uses Active Directory from NTLM to Okta, do I need to touch direct calls to AD that aren't authentication?
- QAF: API ERROR code 0x80072530 : Passed entity object cannot be null or empty
- SSRS Not Displaying Pictures from SharePoint On-Premises
- How to connect to LDAP with NTLM in Node.js
- Delphi Indy NTLM on Windows 11 don't use good user
- NetrServerReqChallenge() API is not able to found in WIN32 Header file
- IIS Reverse Proxy with Windows Authentication and user name forwarding
- WCF - MessageSecurityException-Request forbidden with client authentication scheme Ntlm
- Cypress doesnt open application login popup and instead throws 401 unauthorized directly
- Kerberos Authentication : REDIRECT_REMOTE_USER is disappearing
- How to migrate NTLM auth to Apache HttpClient 5 from older version
- Trying to access an onpremise business central server via NTLM Auth, from Android(400 Error)
- SQL Server to connect to a NTLM auth webservice
Related Questions in PROXY-SERVER
- How to write a (media) proxy server in java
- MaxScale - Mask every column in all tables of a DataBase and specify which not
- Is it possible to create a proxy server application in java/android studio which will intercept the internet requests of devices on its a hotspot?
- Headers not sent with the request through a proxy server
- Proxy server not getting hit through API gateway
- Web URL Filter implementation
- Geosurf Proxy server and user authentication in undetected chromedriver
- Problem with Kerberos authentication on a proxy server via Python requests
- How can I set up a proxy server as a Tor hidden service?
- Create Proxy Server in react application
- Geoserver giving error 504 when accessed using NodeJs but not in postman
- trying to get data from hubspot
- How to make VS Code Live Server's auto reload work in Firefox when using a proxied web server
- Using command line to enable proxy
- Create internal proxy server to transfom proxy with credentials into proxy without credentials
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I'm not 100% clear about your question - I would not expect the first CONNECT to fail with an NTLM proxy server, as it should have sent a Proxy-Authenticate: NTLM header back.
In any case, proxy server has the full right to close the client-side connection in a case of failure, so the answer to your question is "yes". It is odd that it does not do the same for GET, however proxies are more limited with what they can do as a response to CONNECT, and this one may decide that it can't support HTTPS for your request.