!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/3ros/simplesamlphp/lib/Auth/OpenID/   drwxrwxr-x
Free 13.84 GB of 61.93 GB (22.34%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     CryptUtil.php (3.5 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * CryptUtil: A suite of wrapper utility functions for the OpenID
 * library.
 *
 * PHP versions 4 and 5
 *
 * LICENSE: See the COPYING file included in this distribution.
 *
 * @access private
 * @package OpenID
 * @author JanRain, Inc. <openid@janrain.com>
 * @copyright 2005-2008 Janrain, Inc.
 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
 */

if (!defined('Auth_OpenID_RAND_SOURCE')) {
    
/**
     * The filename for a source of random bytes. Define this yourself
     * if you have a different source of randomness.
     */
    
define('Auth_OpenID_RAND_SOURCE''/dev/urandom');
}

class 
Auth_OpenID_CryptUtil {
    
/**
     * Get the specified number of random bytes.
     *
     * Attempts to use a cryptographically secure (not predictable)
     * source of randomness if available. If there is no high-entropy
     * randomness source available, it will fail. As a last resort,
     * for non-critical systems, define
     * <code>Auth_OpenID_RAND_SOURCE</code> as <code>null</code>, and
     * the code will fall back on a pseudo-random number generator.
     *
     * @param int $num_bytes The length of the return value
     * @return string $bytes random bytes
     */
    
static function getBytes($num_bytes)
    {
        static 
$f null;
        
$bytes '';
        if (
$f === null) {
            if (
Auth_OpenID_RAND_SOURCE === null) {
                
$f false;
            } else {
                
$f = @fopen(Auth_OpenID_RAND_SOURCE"r");
                if (
$f === false) {
                    
$msg 'Define Auth_OpenID_RAND_SOURCE as null to ' .
                        
' continue with an insecure random number generator.';
                    
trigger_error($msgE_USER_ERROR);
                }
            }
        }
        if (
$f === false) {
            
// pseudorandom used
            
$bytes '';
            for (
$i 0$i $num_bytes$i += 4) {
                
$bytes .= pack('L'mt_rand());
            }
            
$bytes substr($bytes0$num_bytes);
        } else {
            
$bytes fread($f$num_bytes);
        }
        return 
$bytes;
    }

    
/**
     * Produce a string of length random bytes, chosen from chrs.  If
     * $chrs is null, the resulting string may contain any characters.
     *
     * @param integer $length The length of the resulting
     * randomly-generated string
     * @param string $chrs A string of characters from which to choose
     * to build the new string
     * @return string $result A string of randomly-chosen characters
     * from $chrs
     */
    
static function randomString($length$population null)
    {
        if (
$population === null) {
            return 
Auth_OpenID_CryptUtil::getBytes($length);
        }

        
$popsize strlen($population);

        if (
$popsize 256) {
            
$msg 'More than 256 characters supplied to ' __FUNCTION__;
            
trigger_error($msgE_USER_ERROR);
        }

        
$duplicate 256 $popsize;

        
$str "";
        for (
$i 0$i $length$i++) {
            do {
                
$n ord(Auth_OpenID_CryptUtil::getBytes(1));
            } while (
$n $duplicate);

            
$n %= $popsize;
            
$str .= $population[$n];
        }

        return 
$str;
    }

    static function 
constEq($s1$s2)
    {
        if (
strlen($s1) != strlen($s2)) {
            return 
false;
        }

        
$result true;
        
$length strlen($s1);
        for (
$i 0$i $length$i++) {
            
$result &= ($s1[$i] == $s2[$i]);
        }
        return 
$result;
    }
}


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9579 ]--