python-ntlm
python-ntlm copied to clipboard
Automatically exported from code.google.com/p/python-ntlm
``` I get a DeprecatedWarning under Python 3. Changing decodestring() to decodebytes() in python30/ntlm/ntlm.py:223 fixes this for me. ``` Original issue reported on code.google.com by `[email protected]` on 11 Dec 2014...
``` What steps will reproduce the problem? 1. Configure an NTLM PROXY server (I am using BlueCoat) 2. Attempt to authenticate against the proxy 3. I know these are bad...
``` What steps will reproduce the problem? 1. Attempt to login with '[email protected]' (required for hosted exchange) 2. Initiate connection Received Traceback: File "/home/red15/code/pyex/local/lib/python2.7/site-packages/ntlm/HTTPNtlmAuthHandler.py", line 72, in retry_using_http_NTLM_auth UserName =...
``` In ntlm.py create_NTLM_NEGOTIATE_MESSAGE WorkstationBufferOffset = BODY_LENGTH when Workstation is empty (len=0) DomainNameBufferOffset = BODY_LENGTH+WorkstationBufferOffset when DomainName is empty When Workstation or DomainName value is empty, their corresponding BufferOffset values...
``` What steps will reproduce the problem? 1. Install python-ntlm library `python setup.py install` 2. Run script `ntlm_example_simple.exe` What do you see? > ImportError: No module named ntlm_examples.simple ``` Original...
``` In ntlm there is no NTLM_TYPE1_FLAGS and those flags aren't needed in create_NTLM_NEGOTIATE_MESSAGE function. ``` Original issue reported on code.google.com by `[email protected]` on 17 Jan 2013 at 12:19 Attachments:...
``` Committed changes to python26 and python30. Purpose of code changes on this branch: Adding support for pass-the-hash authentication. This allows you to authenticate with users NTLM hash instead of...
``` What steps will reproduce the problem? 1. Client is running on a window 7 machine (Or an xp machine) opening a json url which should return a json string...
``` What steps will reproduce the problem? 1. Attempting to authenticate with a proxy server using NTLM What is the expected output? What do you see instead? Python-ntlm currently supports...
``` The attached file implements ntlm support for httplib. Python 2.5 ``` Original issue reported on code.google.com by `[email protected]` on 20 Oct 2011 at 6:22 Attachments: - [httplib_proxy.py](https://storage.googleapis.com/google-code-attachments/python-ntlm/issue-29/comment-0/httplib_proxy.py)