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


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

namespace Faker\Provider\en_US;

class 
PhoneNumber extends \Faker\Provider\PhoneNumber
{
    
/**
     * @var array<int, string>
     */
    
protected static $areaCodeRegexes = [
        
=> '(0[1-35-9]|1[02-9]|2[03-589]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])',
        
=> '(0[1-57-9]|1[02-9]|2[0135]|3[0-24679]|4[167]|5[12]|6[014]|8[056])',
        
=> '(0[124-9]|1[02-579]|2[3-5]|3[0245]|4[0235]|58|6[39]|7[0589]|8[04])',
        
=> '(0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[19]|6[1-47]|7[013-5]|8[056])',
        
=> '(0[1-35-9]|1[024-9]|2[03689]|[34][016]|5[017]|6[0-279]|78|8[0-29])',
        
=> '(0[1-46-8]|1[2-9]|2[04-7]|3[1247]|4[037]|5[47]|6[02359]|7[02-59]|8[156])',
        
=> '(0[1-68]|1[02-8]|2[08]|3[0-28]|4[3578]|5[046-9]|6[02-5]|7[028])',
        
=> '(0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[0179]|5[12469]|7[0-389]|8[04-69])',
    ];

    
/**
     * @see https://en.wikipedia.org/wiki/National_conventions_for_writing_telephone_numbers#United_States.2C_Canada.2C_and_other_NANP_countries
     */
    
protected static $formats = [
        
// International format
        
'+1-{{areaCode}}-{{exchangeCode}}-####',
        
'+1 ({{areaCode}}) {{exchangeCode}}-####',
        
'+1-{{areaCode}}-{{exchangeCode}}-####',
        
'+1.{{areaCode}}.{{exchangeCode}}.####',
        
'+1{{areaCode}}{{exchangeCode}}####',

        
// Standard formats
        
'{{areaCode}}-{{exchangeCode}}-####',
        
'({{areaCode}}) {{exchangeCode}}-####',
        
'1-{{areaCode}}-{{exchangeCode}}-####',
        
'{{areaCode}}.{{exchangeCode}}.####',

        
'{{areaCode}}-{{exchangeCode}}-####',
        
'({{areaCode}}) {{exchangeCode}}-####',
        
'1-{{areaCode}}-{{exchangeCode}}-####',
        
'{{areaCode}}.{{exchangeCode}}.####',
    ];

    protected static 
$formatsWithExtension = [
        
'{{areaCode}}-{{exchangeCode}}-#### x###',
        
'({{areaCode}}) {{exchangeCode}}-#### x###',
        
'1-{{areaCode}}-{{exchangeCode}}-#### x###',
        
'{{areaCode}}.{{exchangeCode}}.#### x###',

        
'{{areaCode}}-{{exchangeCode}}-#### x####',
        
'({{areaCode}}) {{exchangeCode}}-#### x####',
        
'1-{{areaCode}}-{{exchangeCode}}-#### x####',
        
'{{areaCode}}.{{exchangeCode}}.#### x####',

        
'{{areaCode}}-{{exchangeCode}}-#### x#####',
        
'({{areaCode}}) {{exchangeCode}}-#### x#####',
        
'1-{{areaCode}}-{{exchangeCode}}-#### x#####',
        
'{{areaCode}}.{{exchangeCode}}.#### x#####',
    ];

    protected static 
$e164Formats = [
        
'+1{{areaCode}}{{exchangeCode}}####',
    ];

    
/**
     * @see https://en.wikipedia.org/wiki/Toll-free_telephone_number#United_States
     */
    
protected static $tollFreeAreaCodes = [
        
800844855866877888,
    ];
    protected static 
$tollFreeFormats = [
        
// Standard formats
        
'{{tollFreeAreaCode}}-{{exchangeCode}}-####',
        
'({{tollFreeAreaCode}}) {{exchangeCode}}-####',
        
'1-{{tollFreeAreaCode}}-{{exchangeCode}}-####',
        
'{{tollFreeAreaCode}}.{{exchangeCode}}.####',
    ];

    public function 
tollFreeAreaCode()
    {
        return 
self::randomElement(static::$tollFreeAreaCodes);
    }

    public function 
tollFreePhoneNumber()
    {
        
$format self::randomElement(static::$tollFreeFormats);

        return 
self::numerify($this->generator->parse($format));
    }

    
/**
     * @return string
     *
     * @example '555-123-546 x123'
     */
    
public function phoneNumberWithExtension()
    {
        return static::
numerify($this->generator->parse(static::randomElement(static::$formatsWithExtension)));
    }

    
/**
     * NPA-format area code
     *
     * @see https://en.wikipedia.org/wiki/North_American_Numbering_Plan#Numbering_system
     *
     * @return string
     */
    
public static function areaCode()
    {
        
$firstDigit self::numberBetween(29);

        return 
$firstDigit self::regexify(self::$areaCodeRegexes[$firstDigit]);
    }

    
/**
     * NXX-format central office exchange code
     *
     * @see https://en.wikipedia.org/wiki/North_American_Numbering_Plan#Numbering_system
     *
     * @return string
     */
    
public static function exchangeCode()
    {
        
$digits[] = self::numberBetween(29);
        
$digits[] = self::randomDigit();

        if (
$digits[1] === 1) {
            
$digits[] = self::randomDigitNot(1);
        } else {
            
$digits[] = self::randomDigit();
        }

        return 
implode(''$digits);
    }
}

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