| Method | Payload |
|---|---|
| Normal | CONNECT [host_port] [protocol][crlf]Host: domain.com[crlf][crlf] |
| Front Inject | GET You do not have permission to view the full content of this post. Log in or register now. HTTP/1.1[crlf]Host: domain.com[crlf][crlf]CONNECT [host_port] [protocol][crlf][crlf] |
| Back Inject | CONNECT [host_port] HTTP/1.1[crlf][crlf]GET You do not have permission to view the full content of this post. Log in or register now. [protocol][crlf]Host: domain.com[crlf][crlf] |
| Front Query | CONNECT domain.com@[host_port][crlf]GET You do not have permission to view the full content of this post. Log in or register now. [protocol][crlf]Host: domain.com[crlf][crlf] |
| Back Query | CONNECT [host_port]@domain.com[crlf]GET You do not have permission to view the full content of this post. Log in or register now. [protocol][crlf]Host: domain.com[crlf][crlf] |
| Keyword | Auto Replaced | Meaning |
|---|---|---|
| [host] | 188.100.100.123 | Destination host |
| [port] | 22 | Destination port |
| [host_port] | 188.100.100.123:22 | Destination host and port, seperated by colon : |
| [ssh] | 188.100.100.123:22 | SSH server ip and port that you set at settings |
| [protocol] | HTTP\1.0 or HTTP\1.1 | HTTP protocol version |
| [netData] | CONNECT [host_port] [protocol] | Short form of three keywords |
| [cr] | \r | Carriage Return, U+000D |
| [lf] | \n | Line Feed, U+000A |
| [crlf] | \r\n | CR (U+000D) followed by LF (U+000A) |
| [lfcr] | \n\r | LF (U+000A) followed by CR (U+000D) |
| [crlf][crlf] | \r\n\r\n | To indicate the end of HTTP header |
