-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AttributeError: module 'collections' has no attribute 'Callable' #99
Comments
same error here... |
Hello,
|
Modify cloufail.py and add somewhere in imports this:
Better add Callable after the following import.
|
Related to m0rtem#99
python3 cloudfail.py --target target.com
After executing this command I am getting following error.
if (isinstance(value, str) or isinstance(value, collections.Callable) or hasattr(value, 'match')
AttributeError: module 'collections' has no attribute 'Callable'. Although my socks.py is updated.
import socket
import struct
from errno import EOPNOTSUPP, EINVAL, EAGAIN
from io import BytesIO
from os import SEEK_CUR
from collections.abc import Callable
from base64 import b64encode
I am using kali linux 2022.4. Thanks in advance.
The text was updated successfully, but these errors were encountered: