Experiment No 8
Experiment No 8
What Is HTTPS?
HTTPS shields from security threats and malicious attacks by encrypting all
exchanges between a web browser and a server. It’s important to clarify that HTTPS
isn’t separate from HTTP. Rather, it’s an HTTP variant that uses specific encryption
like Secure Socket Layer (SSL) and Transport Layer Security (TLS) to secure
communication. When a web browser and a web server communicate through
HTTPS, they engage in an SSL/TLS handshake, i.e., an exchange of security
certificates.
How can you tell if your communication to a website is secured with HTTPS? Simply
look at the address bar. If you see “https” at the beginning of the URL, your
connection is secure.
Observation Process:
Wireshark How to Read HTTP Traffic:
As we know that there are main two methods used for submitting form data
from web pages like login forms to the server. the methods are-
GET
POST
Step 8: Now after checking the GET method if we didn’t find the
form data, then we will try the POST method for that we will apply
the filter on Wireshark as we can see.
http.request.method == "POST"
As we can see we have a packet with form data click on the packet with user info and
the application URL encoded. and click on the down-
HTML form URL Encoded where the login credential is found. login credential as it
is the same that we filed on the website in step 2.