-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.php
31 lines (28 loc) · 822 Bytes
/
main.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
<?php
$cd = dirname(__FILE__) . '/';
include "{$cd}config.php";
include "{$cd}ResourceManager.php";
include "{$cd}mod.php";
// Generate a user identification independent of IP address
$auth = md5(userIp() . CONFIG_SECRET_SALT);
if (!isset($_COOKIE['id']) || $auth != $_COOKIE['id']) {
setcookie('id', $auth, CONFIG_COOKIE_TIMEOUT + time(), '/');
}
// Process bans
processbans($auth);
function say($s) { print "$s\n"; }
function randomHex($len) {
$chars = 'abcdef01234567890';
for ($i = 0; $i < $len; $i++)
$hex .= $chars[rand(0, strlen($chars) - 1)];
return $hex;
}
function userIp() {
if (!empty($_SERVER['HTTP_X_REAL_IP'])) {
return $_SERVER['HTTP_X_REAL_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
return $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
return $_SERVER['REMOTE_ADDR'];
}
}