You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 19, 2022. It is now read-only.
I've cloned the master branch, I've installed the requirements via a venv, and I get this error when running the exploit.
python2 cve_2017_7494.py -t 192.168.1.84
Traceback (most recent call last):
File "cve_2017_7494.py", line 20, in <module>
from impacket.dcerpc.v5 import transport, srvs
File "/mnt/VulnHub/EVM/CVE-2017-7494/impacket/dcerpc/v5/transport.py", line 18, in <module>
from impacket.smbconnection import smb, SMBConnection
File "/mnt/VulnHub/EVM/CVE-2017-7494/impacket/smbconnection.py", line 20, in <module>
from impacket import smb, smb3, nmb, nt_errors, LOG
File "/mnt/VulnHub/EVM/CVE-2017-7494/impacket/smb.py", line 53, in <module>
from impacket.krb5.gssapi import KRB5_AP_REQ
File "/mnt/VulnHub/EVM/CVE-2017-7494/impacket/krb5/gssapi.py", line 17, in <module>
from Crypto.Hash import HMAC, MD5
File "/mnt/VulnHub/EVM/CVE-2017-7494/impacket/krb5/Crypto.py", line 48, in <module>
from Crypto.Util.number import GCD as gcd
ImportError: No module named Util.number
Hi there, had the same problem, in my case the impacket folder in the project was missing the utils package. If you want to use your own version of impacket that is already installed on your system, move or rename the folder in the project.
If anyone else finds this from Google --> delete git+git://github.com/opsxcq/impacket.git from requirements.txt before you pip install -r requirements.txt. I installed impacket 0.9.24 instead and now the exploit runs, well it gives me the help menu anyway.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I've cloned the master branch, I've installed the requirements via a venv, and I get this error when running the exploit.
I've installed both packages :
What have I done wrong ? Any ideas ? Thanks :)
The text was updated successfully, but these errors were encountered: