BitTheByte / Domainker

BugBounty Tool
40 stars 21 forks source link

Imports for aws aren't working. #1

Closed NeuroWinter closed 5 years ago

NeuroWinter commented 5 years ago

After creating a new virtualenv and installing the requirements using pip, when I run the program I get the following error:

  File "domainker.py", line 14, in <module>
    from lib.modules.aws import chkaws
  File "/home/neuro/projects/bugbounties/tools/Domainker/lib/modules/aws.py", line 1, in <module>
    from cStringIO import StringIO
ModuleNotFoundError: No module named 'cStringIO'

This is because the correct import statement is: from io import StringIO

BitTheByte commented 5 years ago

Hi @NeuroWinter.

cStringIO got removed from python 3, this tool was built using python 2.7.15 python 3 support isn't ready yet.

Thanks for contacting me