How to get a web page's content using Telnet?
For example, the content of https://stackoverflow.com/questions
.
You could do
telnet stackoverflow.com 80
And then paste
GET /questions HTTP/1.0 Host: stackoverflow.com # add the 2 empty lines above but not this one
Here is a transcript
$ telnet stackoverflow.com 80 Trying 151.101.65.69... Connected to stackoverflow.com. Escape character is '^]'. GET /questions HTTP/1.0 Host: stackoverflow.com HTTP/1.1 200 OK Content-Type: text/html; charset=utf-8 ...
telnet ServerName 80
GET /index.html↵ ↵
↵ means 'return', you need to hit return twice
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With