File: /home/ohirex/web/ohirex.com/public_html/join/js/detection.php
<?php
require_once 'obfuscator.php';
require_once '../settings.php';
require_once '../requestfunc.php';
header('Content-Type: text/javascript');
$detector= file_get_contents(__DIR__.'/detector.js');
if ($js_obfuscate) {
$hunter = new HunterObfuscator($detector);
echo $hunter->Obfuscate();
echo ';';
} else {
echo $detector;
}
$port = get_port();
$jsCode = file_get_contents(__DIR__.'/detect.js');
$jsCode = str_replace('{DOMAIN}', $_SERVER['SERVER_NAME'].":".$port, $jsCode);
$js_checks_str= implode('", "', $js_checks);
$jsCode = str_replace('{JSCHECKS}', $js_checks_str, $jsCode);
$jsCode = str_replace('{JSTIMEOUT}', $js_timeout, $jsCode);
$jsCode = str_replace('{JSTZSTART}', $js_tzstart, $jsCode);
$jsCode = str_replace('{JSTZEND}', $js_tzend, $jsCode);
if ($js_obfuscate) {
$hunter = new HunterObfuscator($jsCode);
echo $hunter->Obfuscate();
} else {
echo $jsCode;
}