python-ntlm
python-ntlm copied to clipboard
Automatically exported from code.google.com/p/python-ntlm
Since python 3.1 `base64.decodestring` is a deprecated alias of `base64.decodebytes(s)`. In python 3.9, the function is no longer available and must be replaced. Official documentation: - https://docs.python.org/3.8/library/base64.html#base64.decodestring - https://docs.python.org/3.9/library/base64.html
`create_NTLM_AUTHENTICATE_MESSAGE` and `create_NTLM_NEGOTIATE_MESSAGE` return already "decoded" `str` value, while this same double-`decode()` attempt results with `AttributeError: 'str' object has no attribute 'decode'` in Python3
``` I would like to be able to write code like this. Note that I don't specify username and password. I want to make a request using NTLM authentication with...
Can you add a license to this project?
I'm trying to do a simple get request but I get the TypeError below: ``` import urllib2 from ntlm import HTTPNtlmAuthHandler pm = urllib2.HTTPPasswordMgrWithDefaultRealm() pm.add_password(None, url, 'DOMAIN\\user', 'pw') auth =...
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...
I removed the python 2 version and kept what was in the python3 package. If you still need the python2 folder you should create a branch for it instead of...
``` 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...