Is it posible to modify packets that creats by request python module?

40 Views Asked by At

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

0

There are 0 best solutions below