-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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 'spnego' has no attribute 'ContextProxy' #1285
Comments
python3.7.4 |
I can't figure out what happened here, but maybe you should try to re-install |
Same issue here |
The error message you provided indicates that there is an issue with the spnego module used by the requests_ntlm module. Here are some steps you can try to solve the problem: 1.Upgrade the spnego module: 2.Reinstall the requests_ntlm module: 3.Check if other modules are causing conflicts: 4.Check your Python version: If none of these steps solve the problem, you may need to seek further assistance from the developers of the spnego or requests_ntlm modules. Ok buddy 😸 try this if you face any problem even after trying this then let me know |
I solved the problem by downgrading requests_ntlm to 1.1.0 |
Traceback (most recent call last):
File "dirsearch.py", line 73, in
main()
File "dirsearch.py", line 66, in main
from lib.controller.controller import Controller
File "C:\Users\xxx\Desktop\dirsearch\lib\controller\controller.py", line 29, in
from lib.connection.requester import Requester
File "C:\Users\xxx\Desktop\dirsearch\lib\connection\requester.py", line 30, in
from requests_ntlm import HttpNtlmAuth
File "C:\python3\lib\site-packages\requests_ntlm_init_.py", line 1, in
from .requests_ntlm import HttpNtlmAuth
File "C:\python3\lib\site-packages\requests_ntlm\requests_ntlm.py", line 14, in
class ShimSessionSecurity:
File "C:\python3\lib\site-packages\requests_ntlm\requests_ntlm.py", line 17, in ShimSessionSecurity
def init(self, context: spnego.ContextProxy) -> None:
AttributeError: module 'spnego' has no attribute 'ContextProxy'
how to solve this problem???
The text was updated successfully, but these errors were encountered: