Hi,
I'm new to Python and here is the task I want to execute using python:
I'm trying to monitor the http requests send by a client to a particular server
say xxx.com.
I'm interested in a particular URL which the client sends.
I don't want to make any explicit requests to the server but just want to
watch what all being is sent. so I want to establish a connection to the server
and then monitor/intercept the requests/response to/from the server over a certain amount of time. In a way trying to sniff over the network.
How can I use httplib methods to acheive this? Any help is appreciated.