HTTP Tunneling

HTTP is a text-based protocol to retreive Web pages through a Web browser. Mostly if you are on a LAN connection, you are behind a proxy serverHTTP Tunneling (HTTP Proxy Socket Client); this proxy server has one HTTP proxy running on some defined port. In your Internet Explorer's Connection option, you specify LAN settings as required. This proxy server is definitely running on a text-based protocol and you can only get HTTP-related data from the outside network, right!! Well, there is a small loophole from which you can go through HTTP and connect to the outside world and get any data you want in binary protocol, or even your own protocol. It's through HTTPS.

HTTPS Explanation

In HTTPS, dataHTTP Tunneling (HTTP Proxy Socket Client) is transferred from browser to server and server to browser in a secure manner. It's a binary protocol; when it goes through a proxy, the proxy doesn't understand anything. The proxy just allows a binary stream to open and let both server and client exchange the data. Now, we can fool the proxy server and connect to any server and exchange data. The proxy server will think that we doing some secure HTTP session.

For HTTPS, your browser connects to a proxyserver and sends a command.

  1. CONNECT neurospeech.com:443HTTP/1.0<CR><LF>
  2. HOST neurospeech.com:443<CR><LF>
  3. [... other HTTP header lines ending with<CR><LF>if required]>
  4. <CR><LF>// Last Empty Line

Then, the proxy server treats this as some HTTP Secure Session, and opens a binary stream to the required server and port as defined. If a connection established, the proxy server returns the following response:

  1. HTTP/1.0200ConnectionEstablished<CR><LF>
  2. [.... other HTTP header lines ending with<CR><LF>..
  3. ignore all of them]
  4. <CR><LF>// Last Empty Line

Now, the browser is connected to the end server and can exchange data in both a binary and secure form.

How to Do This

Now, it's your program's turn to fool the proxy server and behave as Internet Explorer behaves for Secure HTTP.

  1. Connect to Proxy Server first.
  2. Issue CONNECT Host:Port HTTP/1.1<CR><LF>.
  3. Issue <CR><LF>.
  4. Wait for a line of response. If it contains HTTP/1.X 200 , the connection is successful.
  5. Read further lines of response until you receive an empty line.
  6. Now, you are connected to outside world through a proxy. Do any data exchange you want.

Sample Source Code

  1. // You need to connect to mail.yahoo.com on port 25
  2. // Through a proxy on 192.0.1.1, on HTTP Proxy 4480
  3. // CSocketClient is Socket wrapping class
  4. // When you apply operator << on CString, it writes CString
  5. // To Socket ending with CRLF
  6. // When you apply operator >> on CString, it receives
  7. // a Line of response from socket until CRLF
  8. try
  9. {
  10. CStringRequest,Response;
  11. CSocketClientClient;
  12. Client.ConnectTo("192.0.1.1",4480);
  13. // Issue CONNECT Command
  14. Request="CONNECT mail.yahoo.com:25 HTTP/1.0";
  15. Client<<Request;
  16. // Issue empty line
  17. Request="";
  18. Client<<Request;
  19. // Receive Response From Server
  20. Client>>Response;
  21. // Ignore HTTP Version
  22. int n =Response.Find(' ');
  23. Response=Response.Mid(n+1);
  24. // Http Response Must be 200 only
  25. if(Response.Left(3)!="200")
  26. {
  27. // Connection refused from HTTP Proxy Server
  28. AfxMessageBox(Response);
  29. }
  30. // Read Response Lines until you receive an empty line.
  31. do
  32. {
  33. Client>>Response;
  34. if(Response.IsEmpty())
  35. break;
  36. }while(true);
  37. // Coooooooool.... Now connected to mail.yahoo.com:25
  38. // Do further SMTP Protocol here..
  39. }
  40. catch(CSocketException* pE)
  41. {
  42. pE->ReportError();
  43. }

Library Source Code

The Dns.h file contains all DNS-related source code. It uses other libraries, as SocketEx.h, SocketClient.h, and NeuroBuffer.h.

CSocketEx

Socket functions as a wrapper class. (CSocket is very heavy and unreliable if you don't have the exact idea of how it works.) All the functions are of same name as CSocket. You can use this class directly.

CSocketClient

Derived from CSocketEx and throws proper exceptions with details of Winsock errors. It defines two operators, >> and <<, for easy sending and receiving; it also changes network to host and host to network order of bytes if required.

CHttpProxySocketClient

Derived from CSocketClient, you can call the SetProxySettings(ProxyServer,Port) method and set proxy settings. Then, you can connect to the desired host and port as you need. The ConnectTo method is overridden and it automatically implements an HTTP proxy protocol and gives you a connection without any hassle.

How to Use CHttpProxySocketClient

  1. // e.g. You need to connect to mail.yahoo.com on port 25
  2. // Through a proxy on 192.0.1.1, on HTTP Proxy 4480
  3. // CSocketClient is Socket wrapping class
  4. // When you apply operator << on CString, it writes CString
  5. // To Socket ending with CRLF
  6. // When you apply operator >> on CString, it receives
  7. // Line of response from socket until CRLF
  8. try
  9. {
  10. CHttpProxySocketClientClient;
  11. Client.SetProxySettings("192.0.1.1",1979);
  12. // Connect to server mail.yahoo.com on port 25
  13. Client.ConnectTo("mail.yahoo.com",25);
  14. // You now have access to mail.yahoo.com on port 25
  15. // If you do not call SetProxySettings, then
  16. // you are connected to mail.yahoo.com directly if
  17. // you have direct access, so always use
  18. // CHttpProxySocketClient and no need to do any
  19. // extra coding.
  20. }
  21. catch(CSocketException* pE){
  22. pE->ReportError();
  23. }

Note: I usually don't program in the form of .h and .cpp different files, because using them the next time somewhere else is a big problem because you must move both files here and there. So, I put all the code in my .h file only; I don't write to the .cpp file unless it's required. You need to copy only the SocketEx.h, SocketClient.h, and HttpProxySocket.h files into your project's directory, and add line

  1. #include"HttpProxySocket.h"

after your

  1. #if !defined(.....

and so forth code of your Visual Studio-generated file. If you put anything above this, you will get n number of errors.

Downloads

Download source - 17 Kb

Note: I usually don't program in the form of .h and .cpp different files, because using them the next time somewhere else is a big problem because you must move both files here and there. So, I put all the code in my .h file only; I don't write to the .cpp file unless it's required. You need to copy only the SocketEx.h, SocketClient.h, and HttpProxySocket.h files into your project's directory, and add line

  1. #include"HttpProxySocket.h"

after your

  1. #if !defined(.....

and so forth code of your Visual Studio-generated file. If you put anything above this, you will get n number of errors.

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。