!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/Core/   drwxrwxr-x
Free 13.16 GB of 57.97 GB (22.71%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Faker\Core;

use 
Faker\Extension\Helper;
use 
Faker\Extension\VersionExtension;
use 
Faker\Provider\DateTime;

final class 
Version implements VersionExtension
{
    
/**
     * @var string[]
     */
    
private $semverCommonPreReleaseIdentifiers = ['alpha''beta''rc'];

    
/**
     * Represents v2.0.0 of the semantic versioning: https://semver.org/spec/v2.0.0.html
     */
    
public function semver(bool $preRelease falsebool $build false): string
    
{
        return 
sprintf(
            
'%d.%d.%d%s%s',
            
mt_rand(09),
            
mt_rand(099),
            
mt_rand(099),
            
$preRelease && mt_rand(01) ? '-' $this->semverPreReleaseIdentifier() : '',
            
$build && mt_rand(01) ? '+' $this->semverBuildIdentifier() : ''
        
);
    }

    
/**
     * Common pre-release identifier
     */
    
private function semverPreReleaseIdentifier(): string
    
{
        
$ident Helper::randomElement($this->semverCommonPreReleaseIdentifiers);

        if (!
mt_rand(01)) {
            return 
$ident;
        }

        return 
$ident '.' mt_rand(199);
    }

    
/**
     * Common random build identifier
     */
    
private function semverBuildIdentifier(): string
    
{
        if (
mt_rand(01)) {
            
// short git revision syntax: https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection
            
return substr(sha1(Helper::lexify('??????')), 07);
        }

        
// date syntax
        
return DateTime::date('YmdHis');
    }
}

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