- Hybrid Cloud for Architects
- Alok Shrivastwa
- 198字
- 2021-06-24 19:27:38
Case 2 – with a proxy
When we make the request with a proxy, the browser only connects to the proxy and not the actual website. So, the difference in the commands is as follows:
telnet <Proxy IP> <Proxy Port>
GET http://www.google.com/ HTTP/1.1
Host: www.google.com
Connection: Close
As we can see, instead of sending only the / as a parameter to the GET, we send the full URL, so that the proxy server can make the request on our behalf.
This will work for HTTP (unencrypted), however for HTTPS the telnet utility shouldn't be used for testing, the openssl command should be used.
A sample of the HTTPS connection is shown as follows (provided openssl is installed on your terminal).
We will use the s_client or the secure client in the OpenSSL library. The command is shown as follows (used instead of telnet <ip> <port> shown in the preceding example):
openssl s_client -connect www.google.com:443.
A sample of the HTTPS connection is shown as follows (provided openssl is installed on your terminal).
We will use the s_client or the secure client in the OpenSSL library. The command is shown as follows (used instead of telnet <ip> <port> shown in the preceding example):
openssl s_client -connect www.google.com:443.
This will then establish a secure channel to the server (by agreeing on the cipher, verifying the certificate, and changing the cipher spec). Once it is done, you can continue to use the HTTP commands as before (GET, Host, Connection, and so on).
推薦閱讀
- 課課通計算機原理
- Getting Started with Clickteam Fusion
- 手把手教你學(xué)AutoCAD 2010
- TestStand工業(yè)自動化測試管理(典藏版)
- 計算機原理
- Dreamweaver CS3網(wǎng)頁設(shè)計與網(wǎng)站建設(shè)詳解
- Windows XP中文版應(yīng)用基礎(chǔ)
- Mastering D3.js
- AWS Administration Cookbook
- Maya極速引擎:材質(zhì)篇
- 計算機網(wǎng)絡(luò)原理與技術(shù)
- 電腦主板現(xiàn)場維修實錄
- Ruby on Rails敏捷開發(fā)最佳實踐
- HTML5 Canvas Cookbook
- Statistics for Data Science