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
After creating a new virtualenv and installing the requirements using pip, when I run the program I get the following error:
This is because the correct import statement is:
from io import StringIO