0

How can I perform CONNECT HTTP requests to a Host on specific port?

If there is a tool to achieve this I'd appreciate mentioning it.

Zim3r
  • 580
  • 2
  • 14
  • 36

1 Answers1

1

You can use telnet to send HTTP requests and accomplish connection to hosts.

For example, start with the following cmd through shell:

telnet www.server.com 80

Then, after connection has established you may send HTTP requests.

Read more

hrr
  • 1,676
  • 1
  • 13
  • 15