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


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

namespace Faker\Provider;

class 
UserAgent extends Base
{
    protected static 
$userAgents = ['firefox''chrome''internetExplorer''opera''safari'];

    protected static 
$windowsPlatformTokens = [
        
'Windows NT 6.2''Windows NT 6.1''Windows NT 6.0''Windows NT 5.2''Windows NT 5.1',
        
'Windows NT 5.01''Windows NT 5.0''Windows NT 4.0''Windows 98; Win 9x 4.90''Windows 98',
        
'Windows 95''Windows CE',
    ];

    
/**
     * Possible processors on Linux
     */
    
protected static $linuxProcessor = ['i686''x86_64'];

    
/**
     * Mac processors (it also added U;)
     */
    
protected static $macProcessor = ['Intel''PPC''U; Intel''U; PPC'];

    
/**
     * Add as many languages as you like.
     */
    
protected static $lang = ['en-US''sl-SI'];

    
/**
     * Generate mac processor
     *
     * @return string
     */
    
public static function macProcessor()
    {
        return static::
randomElement(static::$macProcessor);
    }

    
/**
     * Generate linux processor
     *
     * @return string
     */
    
public static function linuxProcessor()
    {
        return static::
randomElement(static::$linuxProcessor);
    }

    
/**
     * Generate a random user agent
     *
     * @example 'Mozilla/5.0 (Windows CE) AppleWebKit/5350 (KHTML, like Gecko) Chrome/13.0.888.0 Safari/5350'
     *
     * @return string
     */
    
public static function userAgent()
    {
        
$userAgentName = static::randomElement(static::$userAgents);

        return static::
$userAgentName();
    }

    
/**
     * Generate Chrome user agent
     *
     * @example 'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_5) AppleWebKit/5312 (KHTML, like Gecko) Chrome/14.0.894.0 Safari/5312'
     *
     * @return string
     */
    
public static function chrome()
    {
        
$saf self::numberBetween(531536) . self::numberBetween(02);

        
$platforms = [
            
'(' . static::linuxPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Chrome/" self::numberBetween(3640) . '.0.' self::numberBetween(800899) . ".0 Mobile Safari/$saf",
            
'(' . static::windowsPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Chrome/" self::numberBetween(3640) . '.0.' self::numberBetween(800899) . ".0 Mobile Safari/$saf",
            
'(' . static::macPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Chrome/" self::numberBetween(3640) . '.0.' self::numberBetween(800899) . ".0 Mobile Safari/$saf",
        ];

        return 
'Mozilla/5.0 ' . static::randomElement($platforms);
    }

    
/**
     * Generate Firefox user agent
     *
     * @example 'Mozilla/5.0 (X11; Linuxi686; rv:7.0) Gecko/20101231 Firefox/3.6'
     *
     * @return string
     */
    
public static function firefox()
    {
        
$ver 'Gecko/' date('Ymd'self::numberBetween(strtotime('2010-1-1'), time())) . ' Firefox/' self::numberBetween(3537) . '.0';

        
$platforms = [
            
'(' . static::windowsPlatformToken() . '; ' . static::randomElement(static::$lang) . '; rv:1.9.' self::numberBetween(02) . '.20) ' $ver,
            
'(' . static::linuxPlatformToken() . '; rv:' self::numberBetween(57) . '.0) ' $ver,
            
'(' . static::macPlatformToken() . ' rv:' self::numberBetween(26) . '.0) ' $ver,
        ];

        return 
'Mozilla/5.0 ' . static::randomElement($platforms);
    }

    
/**
     * Generate Safari user agent
     *
     * @example 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_1 rv:3.0; en-US) AppleWebKit/534.11.3 (KHTML, like Gecko) Version/4.0 Safari/534.11.3'
     *
     * @return string
     */
    
public static function safari()
    {
        
$saf self::numberBetween(531535) . '.' self::numberBetween(150) . '.' self::numberBetween(17);

        if (
Miscellaneous::boolean()) {
            
$ver self::numberBetween(45) . '.' self::numberBetween(01);
        } else {
            
$ver self::numberBetween(45) . '.0.' self::numberBetween(15);
        }

        
$mobileDevices = [
            
'iPhone; CPU iPhone OS',
            
'iPad; CPU OS',
        ];

        
$platforms = [
            
'(Windows; U; ' . static::windowsPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Version/$ver Safari/$saf",
            
'(' . static::macPlatformToken() . ' rv:' self::numberBetween(26) . '.0; ' . static::randomElement(static::$lang) . ") AppleWebKit/$saf (KHTML, like Gecko) Version/$ver Safari/$saf",
            
'(' . static::randomElement($mobileDevices) . ' ' self::numberBetween(78) . '_' self::numberBetween(02) . '_' self::numberBetween(12) . ' like Mac OS X; ' . static::randomElement(static::$lang) . ") AppleWebKit/$saf (KHTML, like Gecko) Version/" self::numberBetween(34) . '.0.5 Mobile/8B' self::numberBetween(111119) . " Safari/6$saf",
        ];

        return 
'Mozilla/5.0 ' . static::randomElement($platforms);
    }

    
/**
     * Generate Opera user agent
     *
     * @example 'Opera/8.25 (Windows NT 5.1; en-US) Presto/2.9.188 Version/10.00'
     *
     * @return string
     */
    
public static function opera()
    {
        
$platforms = [
            
'(' . static::linuxPlatformToken() . '; ' . static::randomElement(static::$lang) . ') Presto/2.' self::numberBetween(812) . '.' self::numberBetween(160355) . ' Version/' self::numberBetween(1012) . '.00',
            
'(' . static::windowsPlatformToken() . '; ' . static::randomElement(static::$lang) . ') Presto/2.' self::numberBetween(812) . '.' self::numberBetween(160355) . ' Version/' self::numberBetween(1012) . '.00',
        ];

        return 
'Opera/' self::numberBetween(89) . '.' self::numberBetween(1099) . ' ' . static::randomElement($platforms);
    }

    
/**
     * Generate Internet Explorer user agent
     *
     * @example 'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/3.0)'
     *
     * @return string
     */
    
public static function internetExplorer()
    {
        return 
'Mozilla/5.0 (compatible; MSIE ' self::numberBetween(511) . '.0; ' . static::windowsPlatformToken() . '; Trident/' self::numberBetween(35) . '.' self::numberBetween(01) . ')';
    }

    
/**
     * @return string
     */
    
public static function windowsPlatformToken()
    {
        return static::
randomElement(static::$windowsPlatformTokens);
    }

    
/**
     * @return string
     */
    
public static function macPlatformToken()
    {
        return 
'Macintosh; ' . static::randomElement(static::$macProcessor) . ' Mac OS X 10_' self::numberBetween(58) . '_' self::numberBetween(09);
    }

    
/**
     * @return string
     */
    
public static function linuxPlatformToken()
    {
        return 
'X11; Linux ' . static::randomElement(static::$linuxProcessor);
    }
}

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