We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b1c29f commit 94d9da3Copy full SHA for 94d9da3
main.py
@@ -14,7 +14,8 @@
14
url = 'http://example.com' # Replace with a valid URL
15
req = requests.Request('GET', url)
16
prep = req.prepare()
17
- session.rebuild_proxies(prep, proxies)
+ if not url.startswith('https'):
18
+ session.rebuild_proxies(prep, proxies)
19
20
# Introduce a command injection vulnerability
21
user_input = input("Enter a command to execute: ")
0 commit comments