forked from zounar/php-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.php
350 lines (289 loc) · 8.5 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<?php
/*
* Author:
* Robin Zon <https://github.com/ZonRobin>
*
* Credits to:
* https://github.com/cowboy/php-simple-proxy/
* https://gist.github.com/iovar
*
* Usage:
* To call this script two headers must be sent
* HTTP_PROXY_AUTH Access key for the proxy (should be changed)
* HTTP_PROXY_TARGET_URL URL to be called by this script
*
* Debug:
* To debug, send HTTP_PROXY_DEBUG header with any non-zero value
*
* Compatibility:
* PHP 5.4
* libcurl
* PHP safe_mode disabled
*/
//----------------------------------------------------------------------------------
// Your private auth key
define('AUTH_KEY', 'Bj5pnZEX6DkcG6Nz6AjDUT1bvcGRVhRaXDuKDX9CjsEs2');
// Name of the proxy auth key header
define('HTTP_PROXY_AUTH', 'HTTP_PROXY_AUTH');
// Name of the target url header
define('HTTP_PROXY_TARGET_URL', 'HTTP_PROXY_TARGET_URL');
// Name of remote debug header
define('HTTP_PROXY_DEBUG', 'HTTP_PROXY_DEBUG');
// Uncomment this to simulate target header
// $_SERVER[HTTP_PROXY_TARGET_URL] = 'https://github.com/';
// Uncomment this to simulate auth key (or to disable the need of passing the key with each request)
// $_SERVER[HTTP_PROXY_AUTH] = AUTH_KEY;
// Uncomment this to enable debug mode
// $_SERVER[HTTP_PROXY_DEBUG] = '1';
// If true, PHP safe mode compatibility will not be checked (you may not need it if no POST files are sent over proxy)
define('IGNORE_SAFE_MODE', false);
// Line break for debug purposes
define('HR', PHP_EOL . PHP_EOL . '----------------------------------------------' . PHP_EOL . PHP_EOL);
//----------------------------------------------------------------------------------
/**
* @param mixed $variable
* @param mixed $default
* @return mixed
*/
function ri(&$variable, $default = null)
{
if (isset($variable))
{
return $variable;
}
else
{
return $default;
}
}
/**
* @param string $message
*/
function exitWithError($message = 'unknown')
{
echo 'PROXY ERROR: ' . $message;
http_response_code(500);
exit(500);
}
/**
* @return array
*/
function getSkippedHeaders()
{
return array(HTTP_PROXY_TARGET_URL, HTTP_PROXY_AUTH, HTTP_PROXY_DEBUG, 'HTTP_HOST', 'HTTP_ACCEPT_ENCODING');
}
if (!function_exists('errorHandler'))
{
/**
* @param int $code
* @param string $message
* @param string $file
* @param string $line
*/
function errorHandler($code, $message, $file, $line)
{
exitWithError($message . ' in ' . $file . ' at line ' . $line);
}
}
if (!function_exists('exceptionHandler'))
{
/**
* @param Exception $ex
*/
function exceptionHandler(Exception $ex)
{
exitWithError($ex->getMessage() . ' in '. $ex->getFile() . ' at line ' . $ex->getLine());
}
}
//----------------------------------------------------------------------------------
// Compatibility checks
if (!IGNORE_SAFE_MODE && function_exists('ini_get') && ini_get('safe_mode'))
{
exitWithError('Safe mode is enabled, this may cause problems with uploading files');
}
if (!function_exists('curl_init'))
{
exitWithError('libcurl is not installed on this server');
}
if (class_exists('CURLFile'))
{
define('CURLFILE', true);
}
else
{
define('CURLFILE', false);
}
//----------------------------------------------------------------------------------
set_error_handler('errorHandler', E_ALL);
set_exception_handler('exceptionHandler');
//----------------------------------------------------------------------------------
// Check for auth token
if (ri($_SERVER[HTTP_PROXY_AUTH]) !== AUTH_KEY)
{
exitWithError(HTTP_PROXY_AUTH . ' header is invalid');
}
// Check for debug token
if (!empty($_SERVER[HTTP_PROXY_DEBUG]))
{
$debug = true;
}
else
{
$debug = false;
}
// Get target URL
$targetURL = ri($_SERVER[HTTP_PROXY_TARGET_URL]);
if (empty($targetURL))
{
exitWithError(HTTP_PROXY_TARGET_URL .' header is empty');
}
if (filter_var($targetURL, FILTER_VALIDATE_URL) === FALSE)
{
exitWithError(HTTP_PROXY_TARGET_URL .' "'.$targetURL.'" is invalid');
}
//--------------------------------
// Add GET params to target URL
if (!empty($_SERVER['QUERY_STRING']))
{
$targetURLParts = parse_url($targetURL);
if (!empty($targetURLParts['query']))
{
$targetURL = $targetURL . '&' . $_SERVER['QUERY_STRING'];
}
else
{
$targetURL = trim($targetURL, '\?');
$targetURL = $targetURL . '?' . $_SERVER['QUERY_STRING'];
}
}
//-------------------------------
// Create CURL request
$request = curl_init($targetURL);
//-------------------------------
// Set input data
$requestMethod = strtoupper(ri($_SERVER['REQUEST_METHOD']));
if ($requestMethod === "PUT" || $requestMethod === "PATCH")
{
curl_setopt($request, CURLOPT_POSTFIELDS, file_get_contents('php://input'));
}
elseif ($requestMethod === "POST")
{
$data = array();
if (!empty($_FILES))
{
if (!CURLFILE)
{
curl_setopt($request, CURLOPT_SAFE_UPLOAD, false);
}
foreach ($_FILES as $fileName => $file)
{
$filePath = realpath($file['tmp_name']);
if (CURLFILE)
{
$data[$fileName] = new CURLFile($filePath);
}
else
{
$data[$fileName] = '@'.$filePath;
}
}
}
curl_setopt($request, CURLOPT_POSTFIELDS, $data + $_POST);
}
//--------------------------------
// Parse request headers
$httpHeaders = array();
$httpHeadersAll = array();
foreach ($_SERVER as $key => $value)
{
if (strpos($key, 'HTTP_') === 0)
{
$header = str_replace('_', '-', ucwords(strtolower(str_replace('HTTP_', '', $key)), '_')) . ': '. $value;
if (!in_array($key, getSkippedHeaders()))
{
$httpHeaders[] = $header;
}
$httpHeadersAll[] = $header;
}
}
curl_setopt_array($request, [
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HEADER => true,
CURLOPT_RETURNTRANSFER => true,
CURLINFO_HEADER_OUT => true,
CURLOPT_HTTPHEADER => $httpHeaders
]);
//----------------------------------
// Get response
$response = curl_exec($request);
$headerSize = curl_getinfo($request, CURLINFO_HEADER_SIZE);
$responseHeader = substr($response, 0, $headerSize);
$responseBody = substr($response, $headerSize);
$responseInfo = curl_getinfo($request);
$responseCode = ri($responseInfo['http_code'], 500);
$requestHeaders = preg_split( '/[\r\n]+/', ri($responseInfo['request_header'], ''));
if ($responseCode == 0)
{
$responseCode = 404;
}
// Get real target URL after all redirects
$finalRequestURL = curl_getinfo($request, CURLINFO_EFFECTIVE_URL);
if (!empty($finalRequestURL))
{
$finalRequestURLParts = parse_url($finalRequestURL);
$finalURL = ri($finalRequestURLParts['scheme'], 'http') . '//' . ri($finalRequestURLParts['host']) . ri($finalRequestURLParts['path'], '');
}
curl_close($request);
//----------------------------------
// Split header text into an array.
$responseHeaders = preg_split('/[\r\n]+/', $responseHeader);
// Pass headers to output
foreach ($responseHeaders as $header)
{
// Pass following headers to response
if (preg_match('/^(?:Content-Type|Content-Language|Content-Security|X)/i', $header))
{
header($header);
}
// Replace cookie domain and path
elseif (strpos($header, 'Set-Cookie') !== false)
{
$header = preg_replace('/((?>domain)\s*=\s*)[^;\s]+/', '\1.' . $_SERVER['HTTP_HOST'], $header);
$header = preg_replace('/\s*;?\s*path\s*=\s*[^;\s]+/', '', $header);
header($header, false);
}
// Decode response body if gzip encoding is used
elseif ($header === 'Content-Encoding: gzip')
{
$responseBody = gzdecode($responseBody);
}
}
//----------------------------------
if ($debug)
{
echo 'Headers sent to proxy' . PHP_EOL . PHP_EOL;
echo implode($httpHeadersAll, PHP_EOL);
echo HR;
echo '$_GET sent to proxy' . PHP_EOL . PHP_EOL;
print_r($_GET);
echo HR;
echo '$_POST sent to proxy' . PHP_EOL . PHP_EOL;
print_r($_POST);
echo HR;
echo 'Headers sent to target' . PHP_EOL . PHP_EOL;
echo implode($requestHeaders, PHP_EOL);
echo HR;
echo 'Headers received from target' . PHP_EOL . PHP_EOL;
echo implode($responseHeaders, PHP_EOL);
echo HR;
echo 'Headers sent from proxy to client' . PHP_EOL . PHP_EOL;
echo implode(headers_list(), PHP_EOL);
echo HR;
echo 'Body sent from proxy to client' . PHP_EOL . PHP_EOL;
echo $responseBody;
}
else
{
http_response_code($responseCode);
exit($responseBody);
}