Cannot download with NTLM authentication if frozen with cx_freeze
dglent opened this issue · 3 comments
Hi
I have a problem when i run my code as frozen script.
No frozen it works
I am in entreprise proxy and the server is inside
requests version 2.21.0
requests_ntml version 1.4.0
session = requests.Session()
session.auth = HttpNtlmAuth(username, password, self.session)
req = session.get('http://nnnnnnn//nnnnn')
<class 'ValueError'>
unsupported hash type md4
File "myscript.py", line 1312, in run
File "myscript.py", line 1322, in download
File "C:\User\mysuer\Python-3.7.2-32bits\lib\site-packages\requests\sessions.py", line 546,
in get
return self.request('GET', url, **kwargs)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\requests\sessions.py", line 533,
in request
resp = self.send(prep, **send_kwargs)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\requests\sessions.py", line 653,
in send
r = dispatch_hook('response', hooks, r, **kwargs)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\requests\hooks.py", line 31, in d
ispatch_hook
_hook_data = hook(hook_data, **kwargs)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\requests_ntlm\requests_ntlm.py",
line 151, in response_hook
kwargs
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\requests_ntlm\requests_ntlm.py",
line 121, in retry_using_http_NTLM_auth
server_certificate_hash=server_certificate_hash
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\ntlm.py", line 214, in
create_authenticate_message
msg = self._context.step(self._challenge_token)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\ntlm.py", line 86, in s
tep
cbt_data=self.cbt_data
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\messages.py", line 347,
in init
compute_response.get_lm_challenge_response()
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\compute_response.py", l
ine 94, in get_lm_challenge_response
self._client_challenge)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\compute_response.py", l
ine 272, in _get_LMv2_response
nt_hash = comphash._ntowfv2(user_name, password, domain_name)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\compute_hash.py", line
87, in _ntowfv2
digest = _ntowfv1(password)
File "C:\User\myuser\Python-3.7.2-32bits\lib\site-packages\ntlm_auth\compute_hash.py", line
66, in _ntowfv1
digest = hashlib.new('md4', password.encode('utf-16-le')).digest()
File "C:\User\myuser\Python-3.7.2-32bits\lib\hashlib.py", line 136, in __py_new
return __get_builtin_constructor(name)(data, **kwargs)
File "C:\User\myuser\Python-3.7.2-32bits\lib\hashlib.py", line 113, in __get_builtin_constru
ctor
raise ValueError('unsupported hash type ' + name)
Do you have any idea to workaround this problem ?
Thanks n advance
Looks like its your environment that has a problem, can you double check by doing this on python shell
>>> import hashlib
>>> hashlib.new('md4')
I have this output (same in python 2.7 installation)
The error occurs only when the script is frozen...
>>> import hashlib
>>> hashlib.new('md4')
<md4 HASH object @ 0x004B08A8>
>>>
Ok, it needs the dll files in the frozen directory
marcelotduarte/cx_Freeze#587