This repository has been archived by the owner on Aug 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
proxy.php
190 lines (166 loc) · 5.94 KB
/
proxy.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/*--------------------------------------------------------------/
| PROXY.PHP |
| Created By: Évelyne Lachance |
| Contact: [email protected] |
| Source: http://github.com/eslachance/php-transparent-proxy |
| Description: This proxy does a POST or GET request from any |
| page on the authorized domain to the defined URL |
/--------------------------------------------------------------*/
// Destination URL: Where this proxy leads to.
$destinationURL = 'http://www.otherdomain.com/backend.php';
// The only domain from which requests are authorized.
$RequestDomain = 'example.com';
// That's it for configuration!
// Credits to Chris Hope (http://www.electrictoolbox.com/chris-hope/) for this function.
// http://www.electrictoolbox.com/php-get-headers-sent-from-browser/
if(!function_exists('apache_request_headers')) {
function apache_request_headers() {
$headers = array();
foreach($_SERVER as $key => $value) {
if(substr($key, 0, 5) == 'HTTP_') {
$headers[str_replace(' ', '-', ucwords(str_replace('_', ' ', strtolower(substr($key, 5)))))] = $value;
}
}
return $headers;
}
}
// Figure out requester's IP to ship it to X-Forwarded-For
$ip = '';
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
//echo "HTTP_CLIENT_IP: ".$ip;
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
//echo "HTTP_X_FORWARDED_FOR: ".$ip;
} else {
$ip = $_SERVER['REMOTE_ADDR'];
//echo "REMOTE_ADDR: ".$ip;
}
$req_parts = parse_url($_SERVER['HTTP_REFERER']);
// IF domain name matches the authorized domain, proceed with request.
if($req_parts["host"] == $RequestDomain) {
$method = $_SERVER['REQUEST_METHOD'];
if ($method == "GET") {
$data=$_GET;
} elseif ($method=="POST" && count($_POST)>0) {
$data=$_POST;
} else {
$data = $HTTP_RAW_POST_DATA;
}
$response = proxy_request($destinationURL, ($method == "GET" ? $_GET : $_POST), $method);
$headerArray = explode("\r\n", $response['header']);
$is_gzip = false;
$is_chunked = false;
foreach($headerArray as $headerLine) {
// Toggle gzip decompression when appropriate.
if($headerLine == "Content-Encoding: gzip") {
global $is_gzip;
$is_gzip = true;
// Toggle chunk merging when appropriate
} elseif($headerLine == "Transfer-Encoding: chunked") {
global $is_chunked;
$is_chunked = true;
} else {
// todo: Find out why this doesn't work (removes all contents!)
// header($headerLine, FALSE);
}
}
$contents = $response['content'];
if($is_chunked) {
$contents = decode_chunked($contents);
}
if($is_gzip) {
$contents = gzdecode($contents);
}
echo $contents;
} else {
echo $domainName." is not an authorized domain.";
}
function proxy_request($url, $data, $method) {
// Based on post_request from http://www.jonasjohn.de/snippets/php/post-request.htm
$req_dump = print_r($data, TRUE);
global $ip;
// Convert the data array into URL Parameters like a=b&foo=bar etc.
if ($method == "GET") {
$data = http_build_query($data);
// Add GET params from destination URL
$data = $data . parse_url($url)["query"];
} elseif ($method=="POST" && count($_POST)>0) {
$data = http_build_query($data);
// Add GET params from destination URL
$data = $data . parse_url($url)["query"];
} else {
$data = $data;
}
$datalength = strlen($data);
// parse the given URL
$url = parse_url($url);
if ($url['scheme'] != 'http') {
die('Error: Only HTTP request are supported !');
}
// extract host and path:
$host = $url['host'];
$path = $url['path'];
if ($url['scheme'] == 'http') {
$fp = fsockopen($host, 80, $errno, $errstr, 30);
} elseif ($url['scheme'] == 'https') {
$fp = fsockopen($host, 443, $errno, $errstr, 30);
}
if ($fp){
// send the request headers:
if($method == "POST") {
fputs($fp, "POST $path HTTP/1.1\r\n");
} else {
fputs($fp, "GET $path?$data HTTP/1.1\r\n");
}
fputs($fp, "Host: $host\r\n");
fputs($fp, "X-Forwarded-For: $ip\r\n");
fputs($fp, "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n");
$requestHeaders = apache_request_headers();
while ((list($header, $value) = each($requestHeaders))) {
if($header == "Content-Length") {
fputs($fp, "Content-Length: $datalength\r\n");
} else if($header !== "Connection" && $header !== "Host" && $header !== "Content-length") {
fputs($fp, "$header: $value\r\n");
}
}
fputs($fp, "Connection: close\r\n\r\n");
fputs($fp, $data);
$result = '';
while(!feof($fp)) {
// receive the results of the request
$result .= fgets($fp, 128);
}
}
else {
return array(
'status' => 'err',
'error' => "$errstr ($errno)"
);
}
// close the socket connection:
fclose($fp);
// split the result header from the content
$result = explode("\r\n\r\n", $result, 2);
$header = isset($result[0]) ? $result[0] : '';
$content = isset($result[1]) ? $result[1] : '';
// return as structured array:
return array(
'status' => 'ok',
'header' => $header,
'content' => $content
);
}
// Credits to @flowfree (http://stackoverflow.com/users/1396314/flowfree) for this function.
// http://stackoverflow.com/questions/10793017/how-to-easily-decode-http-chunked-encoded-string-when-making-raw-http-request
function decode_chunked($str) {
for ($res = ''; !empty($str); $str = trim($str)) {
$pos = strpos($str, "\r\n");
$len = hexdec(substr($str, 0, $pos));
$res.= substr($str, $pos + 2, $len);
$str = substr($str, $pos + 2 + $len);
}
return $res;
}
?>