We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
PwnXSS/pwnxss.py
Line 44 in 4f75e6a
When I try to run this from CLI in kali the proxy is getting handled as a string by the required requests module and throws an error
/lib/python3.7/site-packages/requests/sessions.py", line 290, in rebuild_proxies new_proxies = proxies.copy()
This appears to be because when it receives the parameter it is a string, even when passed as --proxy={'https':'https://localhost:8080'}
https://stackoverflow.com/questions/18006161/how-to-pass-dictionary-as-command-line-argument-to-python-script/18006814
Maybe a separate parameter for https, http, noproxy gets around this? Am I missing something simple?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PwnXSS/pwnxss.py
Line 44 in 4f75e6a
When I try to run this from CLI in kali the proxy is getting handled as a string by the required requests module and throws an error
/lib/python3.7/site-packages/requests/sessions.py", line 290, in rebuild_proxies
new_proxies = proxies.copy()
This appears to be because when it receives the parameter it is a string, even when passed as --proxy={'https':'https://localhost:8080'}
https://stackoverflow.com/questions/18006161/how-to-pass-dictionary-as-command-line-argument-to-python-script/18006814
Maybe a separate parameter for https, http, noproxy gets around this? Am I missing something simple?
The text was updated successfully, but these errors were encountered: