You are on page 1of 5

Week 4 - Wire shark assginment

1. HTTP CONNECT REQUEST:

Connect request was sent when I tried to access google through the IIST proxy server. Even my username and password were captured above. Request type, the host and the user are shown in the header. Filter used : http.request.method==CONNECT

2. HTTP GET REQUEST:

GET request obtained when I tried to connect to the IIST website. GET operation is used to call the objects, html files present on a webpage which belong to some other server. Filter used : http.request.method==GET

3. HTTP POST REQUEST:

POST http request was sent when I tried to upload an image to a website posterizeyourself.com. In this case the header has lot more information than the previous cases. Filter used : http.request.method==POST

4. TCP handshake between my browser and IIST website

Three way handshake signal sent between my ip(172.20.103.190) and iist website (172.20.0.212). Filter used : ip.dst==172.20.0.212 || ip.src==172.20.0.212

5. TCP Handshake Between my Browser and Course Website:

Three way handshake signal sent between my ip(172.20.103.190) and iist website (172.20.14.51). There was no protocol named http here though the https request was sent with TCP protocol as seen in the info. Different protocol TLSv1 was used for the course website. Filter used : ip.dst==172.20.14.51 || ip.src==172.20.14.51

You might also like