[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.138.122.96: ~ $
<?php

require_once dirname(__FILE__).'/accesscheck.php';

//bth rainhail.com 7.1.2015 added to support proxys passing along the client IP
//https://www.chriswiegman.com/2014/05/getting-correct-ip-address-php/
function getClientIP()
{
    if (function_exists('apache_request_headers')) {
        $headers = apache_request_headers();
        //logEvent("apache_request_headers");
    } else {
        $headers = $_SERVER;
        //logEvent("_SERVER");
    }

    if (array_key_exists('X-Forwarded-For', $headers)) {
        //logEvent("server1=".$headers['X-Forwarded-For']);
    }

    if (array_key_exists('HTTP_X_FORWARDED_FOR', $headers)) {
        //logEvent("server2=".$headers['HTTP_X_FORWARDED_FOR']);
    }

    if (array_key_exists('X-Forwarded-For', $headers)) {
        $forwarded_for = $headers['X-Forwarded-For'];
        $forwarded_list = explode(',', $forwarded_for);
        $forwarded_list = array_map('trim', $forwarded_list);
        $the_ip = array_shift($forwarded_list);

        if (filter_var($the_ip, FILTER_VALIDATE_IP)) {
            //logEvent("X-Forwarded-For ip=".$the_ip);
            return $the_ip;
        }
    }

    if (array_key_exists('HTTP_X_FORWARDED_FOR', $headers)) {
        $forwarded_for = $headers['HTTP_X_FORWARDED_FOR'];
        $forwarded_list = explode(',', $forwarded_for);
        $forwarded_list = array_map('trim', $forwarded_list);
        $the_ip = array_shift($forwarded_list);

        if (filter_var($the_ip, FILTER_VALIDATE_IP)) {
            //logEvent("HTTP_X_FORWARDED_FOR ip=".$the_ip);
            return $the_ip;
        }
    }

    $the_ip = filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP);
    //logEvent("REMOTE_ADDR ip=".$the_ip);

    return $the_ip;
}

Filemanager

Name Type Size Permission Actions
random_compat Folder 0755
.htaccess File 231 B 0644
UUID.old..php File 4.41 KB 0644
UUID.php File 13.05 KB 0644
UUID2.php File 13.05 KB 0644
accesscheck.php File 86 B 0644
importlib.php File 3 KB 0644
interfacelib.php File 43.7 KB 0644
magic_quotes.php File 2.74 KB 0644
maillib.php File 6.25 KB 0644
netlib.php File 1.69 KB 0644
php_compat.php File 3.76 KB 0644
unregister_globals.php File 948 B 0644
userlib.php File 57.9 KB 0644