cspana.blogg.se

Using wireshark
Using wireshark




using wireshark

This includes phishing pages, websites containing drive-by downloads and so on. Since HTTP is the backbone of the web, any type of malicious website uses HTTP for delivery. As a result, it can be abused in a variety of different ways by a hacker. Since HTTP is used for requesting and serving webpages, it is the most common type of traffic present on most networks and is not blocked at the network perimeter.

using wireshark

The actual data being carried by the HTTP protocol (the requested web page) is encapsulated within the data section of the HTTP packet. It is very similar to that of an HTTP request, except that it substitutes an HTTP response message for the URL and uses a different collection of headers. The image above shows the structure of an HTTP response in Wireshark. These headers are under the control of the user and are intended for use by the server, so they can be modified by an attacker who controls both ends of the connection, making them ideal for passing data during an attack. This includes the requested URL and a variety of different HTTP headers, including the host, user-agent and several others. The image above shows the structure of an HTTP request in Wireshark. Wireshark reassembles all of the actual data packets containing a particular webpage and displays it within the packet labeled as the HTTP response. However, since HTTP runs over TCP and http only shows packets using the HTTP protocol, this can miss many of the packets associated with the session because they are TCP packets (SYN, ACK and so on). HTTP traffic shows up as a light green in Wireshark and can be filtered using http.






Using wireshark