-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Empire run error: No module named iptools #1380
Comments
The error I was initially seeing was exactly the same as yours. I was able to make it work by specifying which python I wanted to use pip on (python -m pip install) Each time I ran ./empire I got a new module error and then installed one be one until I got a NoneType error and then switched to running ./setup/reset.sh . I continued this way until Empire start running properly. All in all, here are the commands I had to run in order to load the dependencies. python -m pip install iptools python -m pip install netifaces python -m pip install pydispatch python -m pip install pydispatcher python -m pip install zlib_wrapper python -m pip install macholib python -m pip install xlrd python -m pip install xlutils python -m pip install pyminifier python -m pip install dropbox Let me know if you get yours to work. Mt. |
I moved forward by installing pip for python3.7 |
Now I am getting the following error: |
right, same deal when I did mine--Thats the Nonetype error- now you'll need to load the dependencies for the DB - run ./setup/reset.sh and load the dependencies like you have been doing. |
@pawp81 @MthwBrwn This is the original Empire project repo. We are supporting the fork here: https://github.com/BC-SECURITY/Empire we released a bug fix update last week that addresses this issue if you reclone the project |
Thanks - I'll take a look. |
pip install --upgrade -r requirements.txt this will do the trick |
Empire Version
3.0
OS Information (Linux flavor, Python version)
Kali Linux
Python 3.7.5 & 2.7.17
Expected behavior and description of the error, including any actions taken immediately prior to the error. The more detail the better.
Successfully launching Empire by running ./empire
Screenshot of error, embedded text output, or Pastebin link to the error
./empire Traceback (most recent call last):
File "./empire", line 14, in
from lib.common import empire, helpers
File "/opt/Empire/lib/common/init.py", line 10, in
import helpers File "/opt/Empire/lib/common/helpers.py", line 58, in
import iptools
ModuleNotFoundError: No module named 'iptools'
Any additional information
All requirements seem to be satisfied: https://pastebin.com/hi6MtGnj
The text was updated successfully, but these errors were encountered: