Difference between revisions of "Browser"

From Hackepedia
Jump to navigationJump to search
 
m
Line 13: Line 13:
 
  GET / HTTP/1.0
 
  GET / HTTP/1.0
  
and watch the text scroll by, this is the information ([[HTML]]) that is sent to your web browser. You may also be interested in the extra information transfered when using [[SSL]]
+
hit [ENTER] twice, and watch the text scroll by. This is the information ([[HTML]]) that is sent to your web browser. You may also be interested in the extra information transfered when using [[SSL]].
 +
You can verify this by running a [[sniffer]] and then browsing a webpage.

Revision as of 21:17, 16 March 2006

Have you ever wondered what happens when you are surfing the www? How does the text show up so pretty in your web browser?

$ telnet yashy.com 80

and once you see

Trying 206.248.137.44...
Connected to yashy.com.
Escape character is '^]'.

then type

GET / HTTP/1.0

hit [ENTER] twice, and watch the text scroll by. This is the information (HTML) that is sent to your web browser. You may also be interested in the extra information transfered when using SSL. You can verify this by running a sniffer and then browsing a webpage.