-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
433 lines (392 loc) · 13.9 KB
/
index.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<?php
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Startup Rules
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
error_reporting(0);
ini_set('display_errors', 0);
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Credits
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// Maintained for 1mbsite by Anthony Rossbach
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Future stuff
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//API for resources api.1mb.site/?action=resources&site=dalton
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Functions
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
function has_ssl($domain) {
//Function that when given a domain will validate if it has a SSL certificate
$res = false;
$orignal_parse = $domain;
$stream = @stream_context_create( array( 'ssl' => array( 'capture_peer_cert' => true ) ) );
$socket = @stream_socket_client( 'ssl://' . $orignal_parse . ':443', $errno, $errstr, 30, STREAM_CLIENT_CONNECT, $stream );
// If we got a ssl certificate we check here, if the certificate domain
// matches the website domain.
if ( $socket ){
$cont = stream_context_get_params( $socket );
$cert_ressource = $cont['options']['ssl']['peer_certificate'];
$cert = openssl_x509_parse( $cert_ressource );
$listdomains=explode(',', $cert["extensions"]["subjectAltName"]);
foreach ($listdomains as $v) {
if (strpos($v, $orignal_parse) !== false) {
$res=true;
}
}
}
return $res;
}
function canmakechange(){
if (file_exists("proxy_authtoken.ruleconf")){
$proxcode=file_get_contents("proxy_authtoken.ruleconf");
$oldtoken = !empty($_GET["authtoken"]) ? strtolower($_GET["authtoken"]) : false;
if ($oldtoken==$proxcode){
return true;
}else{
return false;
}
}else{
return true;
}
}
function curlResponseHeaderCallback($ch, $headerLine) {
if (preg_match('/^Set-Cookie:\s*([^;]*)/mi', $headerLine, $cookie) == 1){
if (strpos($cookie[1], 'flarum') !== false) {
$cookiestring=$cookie[1];
$pieces = explode("=", $cookiestring);
setcookie($pieces[0], $pieces[1], time() + (86400 * 7), "/", ".nodehost.ca");
}
}
return strlen($headerLine);
}
function isJson($string) {
json_decode($string);
return (json_last_error() == JSON_ERROR_NONE);
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Convert old files
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if (file_exists("username.txt")){
$usernamemove=file_get_contents("username.txt");
file_put_contents("proxy_username.ruleconf", $usernamemove);
unlink("username.txt");
}
if (file_exists("version.txt")){
$versionmove=file_get_contents("version.txt");
file_put_contents("proxy_version.ruleconf", $versionmove);
unlink("version.txt");
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Custom URL content
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if (isset($_GET["rules"])){
//Custom rules selector for 1mbsite panel
header("Content-Type: text/plain");
if ($_GET["rules"]=="ssl"){
if (has_ssl($_SERVER['HTTP_HOST'])==true){
echo "true";
}else{
echo "false";
}
}
exit();
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Custom API
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if (isset($_GET["api"])){
//Custom rules selector for 1mbsite panel
header("Content-Type: text/plain");
$return="error";
if (canmakechange()==true){
if ($_GET["api"]=="check_active_ssl"){
if (has_ssl($_SERVER['HTTP_HOST'])==true){
$return="true";
}else{
$return="false";
}
}
if ($_GET["api"]=="get_proxy_version"){
if (!file_exists("proxy_version.ruleconf")){
$return="1.0.0";
}else{
$return=file_get_contents("proxy_version.ruleconf");
}
}
if ($_GET["api"]=="get_proxy_username"){
if (!file_exists("proxy_username.ruleconf")){
$return="false";
}else{
$return=file_get_contents("proxy_username.ruleconf");
}
}
if ($_GET["api"]=="get_proxy_rules_wwwredirect"){
if (!file_exists("proxy_rules_wwwredirect.ruleconf")){
$return="false";
}else{
$return=file_get_contents("proxy_rules_wwwredirect.ruleconf");
}
}
if ($_GET["api"]=="get_proxy_rules_cache"){
if (!file_exists("proxy_rules_cache.ruleconf")){
$return="true";
}else{
$return=file_get_contents("proxy_rules_cache.ruleconf");
}
}
if ($_GET["api"]=="get_proxy_authtoken"){
if (!file_exists("proxy_authtoken.ruleconf")){
$return="false";
}else{
$return="true";
}
}
if ($_GET["api"]=="set_proxy_username"){
if (!file_exists("proxy_username.ruleconf")){
$username = !empty($_GET["username"]) ? strtolower($_GET["username"]) : false;
file_put_contents("proxy_username.ruleconf", $username);
$return="set";
}else{
$return="alreay_set";
}
}
if ($_GET["api"]=="set_proxy_authtoken"){
if (!file_exists("proxy_authtoken.ruleconf")){
$token = !empty($_GET["token"]) ? strtolower($_GET["token"]) : false;
file_put_contents("proxy_authtoken.ruleconf", $token);
$return="set";
}else{
$proxcode=file_get_contents("proxy_authtoken.ruleconf");
$oldtoken = !empty($_GET["oldtoken"]) ? strtolower($_GET["oldtoken"]) : false;
if ($oldtoken==$proxcode){
$token = !empty($_GET["token"]) ? strtolower($_GET["token"]) : false;
file_put_contents("proxy_authtoken.ruleconf", $token);
$return="updated";
}else{
$return="authfail";
}
}
}
if ($_GET["api"]=="set_proxy_rules_wwwredirect"){
$rule = !empty($_GET["rule"]) ? strtolower($_GET["rule"]) : false;
file_put_contents("proxy_rules_wwwredirect.ruleconf", $rule);
$return="set";
}
if ($_GET["api"]=="set_proxy_rules_cache"){
$rule = !empty($_GET["rule"]) ? strtolower($_GET["rule"]) : false;
file_put_contents("proxy_rules_cache.ruleconf", $rule);
$return="set";
}
}else{
$return="authfail";
}
echo $return;
exit();
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Check for username file
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if (!file_exists("proxy_username.ruleconf")){
//If the username is not present then give the user a message, else save and redirect to site root
$username = !empty($_GET["username"]) ? strtolower($_GET["username"]) : false;
if ($username === false) {
echo "<html><head></head><body><h1 style='text-align:center;margin-top:150px;'>This custom domain is not setup, click the link on the 1MB dashboard to finish setup.</h1></body></html>";
exit();
} else {
file_put_contents("proxy_username.ruleconf", $username);
echo "<h1>Success! This domain will now proxy traffic for https://$username.1mb.site</h1>";
header("Location: https://".$_SERVER['HTTP_HOST']."");
exit();
}
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Build links and settings
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
$link_request=$_SERVER[REQUEST_URI];
if ($link_request=="/"){
$link_request="";
}
$mydomain=str_replace("www.", "", $_SERVER['HTTP_HOST']);
$username=file_get_contents("proxy_username.ruleconf");
$cachecode=sha1($_SERVER[REQUEST_URI]);
$httpprefix="http://";
$source=''.$username.'.1mb.site';
$usecache=false;
$url = 'https://'.$username.'.1mb.site' . $link_request;
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ HTTPS redirect
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//Auto redirect to HTTPS first if not already using HTTPS
//AKA If the domain we are on now has a valid certificate we should send the user to the HTTPS version of our site...
if(empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == "off"){
if (has_ssl($_SERVER['HTTP_HOST'])==true){
//Only redirect if we have a valid ssl cert first
$redirect = 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
header('HTTP/1.1 301 Moved Permanently');
header('Location: ' . $redirect);
exit();
}
}else{
$httpprefix="https://";
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Redirect away from www
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//if ($mydomain!=$_SERVER['HTTP_HOST']){
// if (file_exists("proxy_rules_wwwredirect.ruleconf")){
// $ruleis=file_get_contents("proxy_rules_wwwredirect.ruleconf");
// if ($ruleis=="true"){
// $redirect = 'https://' . $mydomain . $_SERVER['REQUEST_URI'];
// header('HTTP/1.1 301 Moved Permanently');
// header('Location: ' . $redirect);
// exit();
// }
// }
//}
if (file_exists("proxy_rules_wwwredirect.ruleconf")){
$ruleis=file_get_contents("proxy_rules_wwwredirect.ruleconf");
//If value FALSE ignore
if ($ruleis=="false"){
//Nothing to do....
}
//Redirect to www version
if ($ruleis=="www"){
if ("www.".$mydomain.""!=$_SERVER['HTTP_HOST']){
$redirect = 'http://www.' . $mydomain . $_SERVER['REQUEST_URI'];
header('HTTP/1.1 301 Moved Permanently');
header('Location: ' . $redirect);
exit();
}
}
//Redirect to root
if ($ruleis=="root"){
if ($mydomain!=$_SERVER['HTTP_HOST']){
$redirect = 'http://' . $mydomain . $_SERVER['REQUEST_URI'];
header('HTTP/1.1 301 Moved Permanently');
header('Location: ' . $redirect);
exit();
}
}
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Check for cache version first
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
$allowcache=true;
if (file_exists("proxy_rules_cache.ruleconf")){
$ruleis=file_get_contents("proxy_rules_cache.ruleconf");
if ($ruleis=="false"){
$usecache=false;
$allowcache=false;
header("1mbproxy-cache-time: disabled");
}
}
if (file_exists("cache_static_".$cachecode."_timestamp.txt")){
if ($allowcache==true){
$cachetime=file_get_contents("cache_static_".$cachecode."_timestamp.txt");
$checktime=(time()-(60*5));
if ($checktime<=$cachetime){
//Cache is good to use
$usecache=true;
$timeleft=$cachetime-$checktime;
header("1mbproxy-cache-time: ".$timeleft."");
header("1mbproxy-cache-archive: ".$cachetime."");
header("1mbproxy-cache-now: ".$checktime."");
}else{
//Nope cache expired
$usecache=false;
header("1mbproxy-cache-time: refresh");
}
}
}
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Main script starts
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if ($usecache==false){
//######################################
//###################################### Load fresh version
//######################################
//Send request, with the current visitors useragent
$ch = curl_init();
$headerarry=array();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_HEADERFUNCTION, "curlResponseHeaderCallback");
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 2); //Wait 2 seconds to connect
curl_setopt($ch, CURLOPT_TIMEOUT, 8); //If cant process in 8 seconds its a timeout, our connection is 1GBPS so no problem should happen
//If this reuqest is a post request forward on the POST data
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $_POST);
}
//Check and set AUTHTOKEN
if (file_exists("proxy_authtoken.ruleconf")){
$token=file_get_contents("proxy_authtoken.ruleconf");
array_push($headerarry,"X-AUTHTOKEN: ".$token."");
header("Did-Auth-Token: YES");
}else{
header("Did-Auth-Token: NO");
}
array_push($headerarry,"X-PROXY-REFNH: true");
if (!empty($headerarry)){
curl_setopt($ch, CURLOPT_HTTPHEADER, $headerarry);
}
//Run request and get response
$response = curl_exec($ch);
$type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
//Check type here and change URL to new one for links and source content!
if (strpos($type, 'text/html') !== false || strpos($type, 'text/css') !== false || strpos($type, 'application/javascript') !== false){
$response = str_replace("https://".$source, "//".$_SERVER['HTTP_HOST']."", $response);
$response = str_replace("http://".$source, "//".$_SERVER['HTTP_HOST']."", $response);
}
//Check if response failed, if so give the user a error message
if (curl_error($ch)){
if (!file_exists("cache_realtime_".$cachecode."_content.txt")){
//No cache kill page
header("1mbproxy-Cache: false");
header("Content-Type: text/html");
echo "<html><head></head><body><h1 style='text-align:center;margin-top:150px;'>We are unable to run this requst</h1></body></html>";
exit();
}else{
//We have a cache version load it!
header("1mbproxy-Cache: true");
$content=file_get_contents("cache_realtime_".$cachecode."_content.txt");
$type=file_get_contents("cache_realtime_".$cachecode."_type.txt");
header("Content-type: $type");
echo $content;
exit();
}
}else{
//No error we can save the resource
//Set browser content type for the file and send that along so it renders as it should
header("Content-type: $type");
if (!file_exists("cache_realtime_".$cachecode."_content.txt")){
header("1mbproxy-cache: saved");
}else{
header("1mbproxy-cache: updated");
}
//save realtime version first
file_put_contents("cache_realtime_".$cachecode."_content.txt", $response);
file_put_contents("cache_realtime_".$cachecode."_type.txt", $type);
//save static version
if (strpos($type, 'text/html') === false){
file_put_contents("cache_static_".$cachecode."_content.txt", $response);
file_put_contents("cache_static_".$cachecode."_type.txt", $type);
file_put_contents("cache_static_".$cachecode."_timestamp.txt", time());
}
}
//Close connection and paste response
curl_close($ch);
echo $response;
}else{
//######################################
//###################################### Load cache version
//######################################
header("1mbproxy-cache: true");
$content=file_get_contents("cache_static_".$cachecode."_content.txt");
$type=file_get_contents("cache_static_".$cachecode."_type.txt");
header("Content-type: $type");
echo $content;
}
?>