Last 30 days
Earlier this year
-
-
-
-
-
-
r77
(closes #11 "Missing support for set_http_debuglevel"
Contri...) committed by Matthijs.Mullender
- closes #11 "Missing support for set_http_debuglevel"
Contribution by Jakub Tomany
HTTP debuging enabled by implementing set_http_debuglevel method
Author: Jakub Tomany
Date: 14.10.2009
Keyword: set_http_debuglevel
closes #11 "Missing support for set_http_debuglevel"
Contribution by Jakub Tomany
HTTP debuging enabled by implementing set_http_debuglevel method
Author: Jakub Tomany
Date: 14.10.2009
Keyword: set_http_debuglevel
-
-
-
issue 11
(Missing support for set_http_debuglevel) Owner changed by Matthijs.Mullender
-
Owner:
Matthijs.Mullender
Owner:
Matthijs.Mullender
-
-
-
-
-
r76
(closes issue 9:
New issue 9 by j.nick.terry: handler doesn't...) committed by Matthijs.Mullender
- closes issue 9 :
New issue 9 by j.nick.terry: handler doesn't verify www-authenticate exists
http://code.google.com/p/python-ntlm/issues/detail?id=9
I'm at trying to authenticate with a server that uses NTLM. However it
doesn't set the www-authenticate header. The handler assumes this value
exists and tries set it to lower. Since the server doesn't return that
header, python throws an exception about None not having a lower method.
Traceback (most recent call last):
File "nyquist_scrape.py", line 24, in <module>
response = urllib2.urlopen(url)
File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
return _opener.open(url, data)
File "/usr/lib/python2.5/urllib2.py", line 387, in open
response = meth(req, response)
File "/usr/lib/python2.5/urllib2.py", line 498, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib/python2.5/urllib2.py", line 419, in error
result = self._call_chain(*args)
File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
result = func(*args)
File "/home/nickte/test/moderation/ntlm/HTTPNtlmAuthHandler.py", line 92,
in http_error_401
return self.http_error_authentication_required('www-authenticate', req,
fp, headers)
File "/home/nickte/test/moderation/ntlm/HTTPNtlmAuthHandler.py", line 30,
in http_error_authentication_required
if 'ntlm' in auth_header_value.lower():
AttributeError: 'NoneType' object has no attribute 'lower'
closes issue 9 :
New issue 9 by j.nick.terry: handler doesn't verify www-authenticate exists
http://code.google.com/p/python-ntlm/issues/detail?id=9
I'm at trying to authenticate with a server that uses NTLM. However it
doesn't set the www-authenticate header. The handler assumes this value
exists and tries set it to lower. Since the server doesn't return that
header, python throws an exception about None not having a lower method.
Traceback (most recent call last):
File "nyquist_scrape.py", line 24, in <module>
response = urllib2.urlopen(url)
File "/usr/lib/python2.5/urllib2.py", line 124, in urlopen
return _opener.open(url, data)
File "/usr/lib/python2.5/urllib2.py", line 387, in open
response = meth(req, response)
File "/usr/lib/python2.5/urllib2.py", line 498, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib/python2.5/urllib2.py", line 419, in error
result = self._call_chain(*args)
File "/usr/lib/python2.5/urllib2.py", line 360, in _call_chain
result = func(*args)
File "/home/nickte/test/moderation/ntlm/HTTPNtlmAuthHandler.py", line 92,
in http_error_401
return self.http_error_authentication_required('www-authenticate', req,
fp, headers)
File "/home/nickte/test/moderation/ntlm/HTTPNtlmAuthHandler.py", line 30,
in http_error_authentication_required
if 'ntlm' in auth_header_value.lower():
AttributeError: 'NoneType' object has no attribute 'lower'
-
r75
(moving example and setup files to better location) committed by Matthijs.Mullender
- moving example and setup files to better location
moving example and setup files to better location
-
-
r74
(Patch provided by Salim Fadhley
modifications to the project...) committed by Matthijs.Mullender
- Patch provided by Salim Fadhley
modifications to the project:
* It can be built as an egg file (with setuptools)
* It now works on Python 2.4 (if you can get Hashlib with MD4 support)
* Examples are now done as entry points without passwords saved, so people can test the library as
soon as they install it.
Patch provided by Salim Fadhley
modifications to the project:
* It can be built as an egg file (with setuptools)
* It now works on Python 2.4 (if you can get Hashlib with MD4 support)
* Examples are now done as entry points without passwords saved, so people can test the library as
soon as they install it.
-
-
-
-
-
-
-
-
r73
(When create_session_keys is implemented,
the server will ne...) committed by duncancbennett
- When create_session_keys is implemented,
the server will need to keep track of keys by user and domain
When create_session_keys is implemented,
the server will need to keep track of keys by user and domain
-
r72
(Changes needed to handle new NTLMClientServer behaviour) committed by duncancbennett
- Changes needed to handle new NTLMClientServer behaviour
-
r71
(Reorganise NTLMClientServer classes
return user details afte...) committed by duncancbennett
- Reorganise NTLMClientServer classes
return user details after authentication
Reorganise NTLMClientServer classes
return user details after authentication
-
-
-
-
-
-
r68
(Set TestPage to display ntlm username and domain) committed by dav...@sjsoft.com
- Set TestPage to display ntlm username and domain
Set TestPage to display ntlm username and domain
-
r67
(Use sessions to track NTLM authentication, rather than IP ad...) committed by dav...@sjsoft.com
- Use sessions to track NTLM authentication, rather than IP address etc (fix to r59)
Use sessions to track NTLM authentication, rather than IP address etc (fix to r59)
-
r66
(Cleaning up to use alphabetical order, removing extraneous c...) committed by dav...@sjsoft.com
- Cleaning up to use alphabetical order, removing extraneous commented code
Cleaning up to use alphabetical order, removing extraneous commented code
-
r65
(Added option to set hostname to listen on) committed by dav...@sjsoft.com
- Added option to set hostname to listen on
Added option to set hostname to listen on
-
r64
(Added options for requiring NTLM version 1 or 2) committed by dav...@sjsoft.com
- Added options for requiring NTLM version 1 or 2
Added options for requiring NTLM version 1 or 2
-
r63
(Replaced `--debug` with proper option parser and loglevel sw...) committed by dav...@sjsoft.com
- Replaced `--debug` with proper option parser and loglevel switch
Replaced `--debug` with proper option parser and loglevel switch
-
-
r61
(Removed logging level set as discussed in review of r59 - th...) committed by dav...@sjsoft.com
- Removed logging level set as discussed in review of r59 - this is doable
with `--debug` switch from commandline
Removed logging level set as discussed in review of r59 - this is doable
with `--debug` switch from commandline
-
-
r59
(Add a list of logged in users to sample server) committed by duncancbennett
- Add a list of logged in users to sample server
Add a list of logged in users to sample server
-
|