When attempting to run the example code on the README.md with the python file outside the subbrute directory as follows:
-myfolder
----myfile.py
----subbrute directory
I receive the following error:
Traceback (most recent call last):
File "subbruteTest.py", line 3, in
for d in subbrute.run("google.com"):
AttributeError: module 'subbrute' has no attribute 'run'
When I change the import line to the following:
from subbrute import subbrute
I receive the following error:
Traceback (most recent call last):
File "subbruteTest.py", line 1, in
from subbrute import subbrute
File "/mnt/c/users/PlsChgMe2/OneDrive/Documents/hack4life/Bug.Bounty/gunterJournal/pyProbe_working/pyProbe/wildCardShuffler/subbrute/subbrute.py", line 10, in
import dnslib
ModuleNotFoundError: No module named 'dnslib'
And finally, if I place the python file inside the subbrute directory, it functions as it should. Any help would be most appreciated!
When attempting to run the example code on the README.md with the python file outside the subbrute directory as follows:
-myfolder
----myfile.py
----subbrute directory
I receive the following error:
Traceback (most recent call last):
File "subbruteTest.py", line 3, in
for d in subbrute.run("google.com"):
AttributeError: module 'subbrute' has no attribute 'run'
When I change the import line to the following:
from subbrute import subbrute
I receive the following error:
Traceback (most recent call last):
File "subbruteTest.py", line 1, in
from subbrute import subbrute
File "/mnt/c/users/PlsChgMe2/OneDrive/Documents/hack4life/Bug.Bounty/gunterJournal/pyProbe_working/pyProbe/wildCardShuffler/subbrute/subbrute.py", line 10, in
import dnslib
ModuleNotFoundError: No module named 'dnslib'
And finally, if I place the python file inside the subbrute directory, it functions as it should. Any help would be most appreciated!