!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/fakerphp/faker/src/Faker/Provider/   drwxrwxr-x
Free 13.24 GB of 57.97 GB (22.84%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Faker\Provider;

class 
Uuid extends Base
{
    
/**
     * Generate name based md5 UUID (version 3).
     *
     * @example '7e57d004-2b97-0e7a-b45f-5387367791cd'
     *
     * @return string
     */
    
public static function uuid()
    {
        
// fix for compatibility with 32bit architecture; each mt_rand call is restricted to 32bit
        // two such calls will cause 64bits of randomness regardless of architecture
        
$seed self::numberBetween(02147483647) . '#' self::numberBetween(02147483647);

        
// Hash the seed and convert to a byte array
        
$val md5($seedtrue);
        
$byte array_values(unpack('C16'$val));

        
// extract fields from byte array
        
$tLo = ($byte[0] << 24) | ($byte[1] << 16) | ($byte[2] << 8) | $byte[3];
        
$tMi = ($byte[4] << 8) | $byte[5];
        
$tHi = ($byte[6] << 8) | $byte[7];
        
$csLo $byte[9];
        
$csHi $byte[8] & 0x3f | (<< 7);

        
// correct byte order for big edian architecture
        
if (pack('L'0x6162797A) == pack('N'0x6162797A)) {
            
$tLo = (($tLo 0x000000ff) << 24) | (($tLo 0x0000ff00) << 8)
                | ((
$tLo 0x00ff0000) >> 8) | (($tLo 0xff000000) >> 24);
            
$tMi = (($tMi 0x00ff) << 8) | (($tMi 0xff00) >> 8);
            
$tHi = (($tHi 0x00ff) << 8) | (($tHi 0xff00) >> 8);
        }

        
// apply version number
        
$tHi &= 0x0fff;
        
$tHi |= (<< 12);

        
// cast to string
        
return sprintf(
            
'%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x',
            
$tLo,
            
$tMi,
            
$tHi,
            
$csHi,
            
$csLo,
            
$byte[10],
            
$byte[11],
            
$byte[12],
            
$byte[13],
            
$byte[14],
            
$byte[15]
        );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0105 ]--