Let's say we have the following piece of python code
response = requests.get('https://webserver:8000', verify='server.pem', timeout=10,proxies=dict(https='socks5h://test:test@proxyserver:1080'))
Is it possible to modify the web packages created by this request and send them to their destination?
I tried to use scapy, but it didn't help