python-ntlm icon indicating copy to clipboard operation
python-ntlm copied to clipboard

Automatically exported from code.google.com/p/python-ntlm

Results 28 python-ntlm issues
Sort by recently updated
recently updated
newest added

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...

Priority-Medium
auto-migrated
Type-Defect
Usability
OpSys-Windows
Security

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 =...

``` Please include SMTP NTLM support ``` Original issue reported on code.google.com by `[email protected]` on 12 Nov 2009 at 2:04

Priority-Medium
auto-migrated
Type-Defect

``` 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...

Priority-Medium
auto-migrated
Type-Defect

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...

Priority-Medium
auto-migrated
Type-Defect

``` 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...

Priority-Medium
Type-Enhancement
auto-migrated