Dineshk77

Results 5 comments of Dineshk77

Hi @masterzen I tried with one of the ruby project -https://github.com/WinRb/WinRM I couldn't make a successful connection using the user account which requires password rest. However I was able to...

@cackharot I am having the same issue. Below is my code and logs code: ``` from suds.client import Client from suds.transport.https import WindowsHttpAuthenticated ntlm = WindowsHttpAuthenticated(username="domain\\"+username,password=password) client = Client(url,transport=ntlm) ```...

@cackharot seems the issue is with https://github.com/trustrachel/python-ntlm3. where the `auth_header_value` supposed to be a list. The fixes are here in https://github.com/mullender/python-ntlm/blob/master/python30/ntlm/HTTPNtlmAuthHandler.py.

@cackharot . nope python-ntlm3 is archived and I can't create issues there.

@joesafe I just forked the python-ntlm3 repo and replaced the HTTPNtlmAuthHandler.py using https://github.com/mullender/python-ntlm/blob/master/python30/ntlm/HTTPNtlmAuthHandler.py. and downloading my forked repo using pip for my scripts ``` git+git://github.com/Dineshk77/python-ntlm3@master#egg=python-ntlm3; python_version >= '3.0' ``` Kind...