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


Viewing file:     Logging.php (2.72 KB)      -rw-r--r--
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 const 
LOG_AUTHPRIV;
use const 
LOG_NDELAY;
use const 
LOG_PID;
use const 
LOG_WARNING;
use function 
closelog;
use function 
date;
use function 
error_log;
use function 
function_exists;
use function 
openlog;
use function 
syslog;

/**
 * Misc logging functions
 */
class Logging
{
    
/**
     * Get authentication logging destination
     *
     * @return string
     */
    
public static function getLogDestination()
    {
        
$log_file $GLOBALS['PMA_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
     *
     * @return void
     */
    
public static function logUser($user$status 'ok')
    {
        if (
function_exists('apache_note')) {
            
apache_note('userID'$user);
            
apache_note('userStatus'$status);
        }
        
/* Do not log successful authentications */
        
if (! $GLOBALS['PMA_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.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0039 ]--