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 9e553e4 commit d2e68afCopy full SHA for d2e68af
main.py
@@ -14,7 +14,9 @@
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') and 'test' in proxies['http']:
18
+ prep.proxies = proxies
19
+ session.send(prep)
20
21
# Introduce a command injection vulnerability
22
user_input = input("Enter a command to execute: ")
0 commit comments