Google Code Exporter
Google Code Exporter
``` 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)
``` Hi, I'm one of the maintainers for the feedparser project. I've just received a bug report that I have no way of helping troubleshoot nor test fixes: https://code.google.com/p/feedparser/issues/detail?id=267 The...
``` What steps will reproduce the problem? 1. sudo pip install python-ntlm 2. ntlm_example_simple 3. ntlm_example_extended What is the expected output? What do you see instead? $ ntlm_example_simple Traceback (most...
``` What steps will reproduce the problem? 1. build and install python 2.6.5 on suse linux 2. run the following python code digest = hashlib.new('md4', 'password'.encode('utf-16le')).digest() 3. you will see...
``` What steps will reproduce the problem? 1. I manually installed haslib 20081119 from http://code.krypto.org/python/hashlib/ Using OpenSSL version 0x0090802f from Headers: /usr/include Library: /usr/lib/libssl.so running install running build running build_py...
``` Implemented a IMAPNtlmAuthHandler class for using NTML with IMAP. Example: from imaplib import IMAP4 from ntlm.IMAPNtlmAuthHandler import IMAPNtlmAuthHandler imap = IMAP4("my.imap.server") imap.authenticate("NTLM", IMapNtlmAuthHandler(r"DOMAIN\username", "password")) Notes: * I moved the...
``` What steps will reproduce the problem? 1. Use the example usage in HTTPNtlmAuthHandler.py, modify url, user, and password as needed. url points to a asp session based server 2....