HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.whfie.com/tttt/api/constants.php
<?php
define('CLIENT_VERSION','1.8.2');
define('API_DOMAIN','api.noipfraud.com');

define('API_VERSION','1.8');
define('API_PATH','/1.8/');

//constants
define('IP_REAL',0);
define('IP_SHARE',1);
define('IP_PROXY',2);

//variables
define('DEF_DYN_VARS','country,city,region,rnd,utc,devicetype,browser,platform,subid');

//memcached
define('APC_EXPIRY', 1800); //number of seconds

//curl
$curl_config = Array(
	CURLOPT_HEADER=>0,
	CURLOPT_RETURNTRANSFER=>1,
	CURLOPT_CONNECTTIMEOUT=>2,
	CURLOPT_TIMEOUT=>10,
	CURLOPT_DNS_CACHE_TIMEOUT=>120, //seconds
	CURLOPT_FORBID_REUSE=>0,
	CURLOPT_FRESH_CONNECT=>0
);

//check for extra.php to define platform specific variable CUSTOM_INCL_PATH
//usage - create extra.php file with this content: <?php define('CUSTOM_INCL_PATH','/var/www/user/');
if (file_exists('extra.php')) {
	include('extra.php');
}