Google Code Exporter
Google Code Exporter
SMTP Auth
``` Please include SMTP NTLM support ``` Original issue reported on code.google.com by `[email protected]` on 12 Nov 2009 at 2:04
``` There is some code (e.g. ComputeResponse) which looks like unfinished NTLMv2 support and which is never called. To get proper NTLMv2 responses ComputeResponse should be fixed to use TargetInfo...
``` Hi. According to the homepage, this library is Python 3 compatible. However if you try to install it from PyPI eg. with the command `pip install python-ntlm` then installation...
``` What steps will reproduce the problem? 1. Try to retrieve a ntlm secured url that redirects to a second url 2. Currently only the first response to the first...
``` 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:...