!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/ms_MY/   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 (5.79 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Faker\Provider\ms_MY;

class 
PhoneNumber extends \Faker\Provider\PhoneNumber
{
    protected static 
$formats = [
        
'{{mobileNumber}}',
        
'{{fixedLineNumber}}',
        
'{{voipNumber}}',
    ];

    protected static 
$plusSymbol = [
        
'+',
    ];

    protected static 
$countryCodePrefix = [
        
'6',
    ];

    
/**
     * @see https://en.wikipedia.org/wiki/Telephone_numbers_in_Malaysia#Mobile_phone_codes_and_IP_telephony
     */
    
protected static $zeroOneOnePrefix = ['10''11''12''13''14''15''16''17''18''19''20''22''23''32'];
    protected static 
$zeroOneFourPrefix = ['2''3''4''5''6''7''8''9'];
    protected static 
$zeroOneFivePrefix = ['1''2''3''4''5''6''9'];

    
/**
     * @see https://en.wikipedia.org/wiki/Telephone_numbers_in_Malaysia#Mobile_phone_codes_and_IP_telephony
     */
    
protected static $mobileNumberFormatsWithFormatting = [
        
'010-### ####',
        
'011-{{zeroOneOnePrefix}}## ####',
        
'012-### ####',
        
'013-### ####',
        
'014-{{zeroOneFourPrefix}}## ####',
        
'016-### ####',
        
'017-### ####',
        
'018-### ####',
        
'019-### ####',
    ];

    protected static 
$mobileNumberFormats = [
        
'010#######',
        
'011{{zeroOneOnePrefix}}######',
        
'012#######',
        
'013#######',
        
'014{{zeroOneFourPrefix}}######',
        
'016#######',
        
'017#######',
        
'018#######',
        
'019#######',
    ];

    
/**
     * @see https://en.wikipedia.org/wiki/Telephone_numbers_in_Malaysia#Geographic_area_codes
     */
    
protected static $fixedLineNumberFormatsWithFormatting = [
        
'03-#### ####',
        
'04-### ####',
        
'05-### ####',
        
'06-### ####',
        
'07-### ####',
        
'08#-## ####',
        
'09-### ####',
    ];

    protected static 
$fixedLineNumberFormats = [
        
'03########',
        
'04#######',
        
'05#######',
        
'06#######',
        
'07#######',
        
'08#######',
        
'09#######',
    ];

    
/**
     * @see https://en.wikipedia.org/wiki/Telephone_numbers_in_Malaysia#Mobile_phone_codes_and_IP_telephony
     */
    
protected static $voipNumberWithFormatting = [
        
'015-{{zeroOneFivePrefix}}## ####',
    ];

    protected static 
$voipNumber = [
        
'015{{zeroOneFivePrefix}}######',
    ];

    
/**
     * Return a Malaysian Mobile Phone Number.
     *
     * @example '+6012-345-6789'
     *
     * @param bool $countryCodePrefix true, false
     * @param bool $formatting        true, false
     *
     * @return string
     */
    
public function mobileNumber($countryCodePrefix true$formatting true)
    {
        if (
$formatting) {
            
$format = static::randomElement(static::$mobileNumberFormatsWithFormatting);
        } else {
            
$format = static::randomElement(static::$mobileNumberFormats);
        }

        if (
$countryCodePrefix) {
            return static::
countryCodePrefix($formatting) . static::numerify($this->generator->parse($format));
        }

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

    
/**
     * Return prefix digits for 011 numbers
     *
     * @example '10'
     *
     * @return string
     */
    
public static function zeroOneOnePrefix()
    {
        return static::
numerify(static::randomElement(static::$zeroOneOnePrefix));
    }

    
/**
     * Return prefix digits for 014 numbers
     *
     * @example '2'
     *
     * @return string
     */
    
public static function zeroOneFourPrefix()
    {
        return static::
numerify(static::randomElement(static::$zeroOneFourPrefix));
    }

    
/**
     * Return prefix digits for 015 numbers
     *
     * @example '1'
     *
     * @return string
     */
    
public static function zeroOneFivePrefix()
    {
        return static::
numerify(static::randomElement(static::$zeroOneFivePrefix));
    }

    
/**
     * Return a Malaysian Fixed Line Phone Number.
     *
     * @example '+603-4567-8912'
     *
     * @param bool $countryCodePrefix true, false
     * @param bool $formatting        true, false
     *
     * @return string
     */
    
public function fixedLineNumber($countryCodePrefix true$formatting true)
    {
        if (
$formatting) {
            
$format = static::randomElement(static::$fixedLineNumberFormatsWithFormatting);
        } else {
            
$format = static::randomElement(static::$fixedLineNumberFormats);
        }

        if (
$countryCodePrefix) {
            return static::
countryCodePrefix($formatting) . static::numerify($this->generator->parse($format));
        }

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

    
/**
     * Return a Malaysian VoIP Phone Number.
     *
     * @example '+6015-678-9234'
     *
     * @param bool $countryCodePrefix true, false
     * @param bool $formatting        true, false
     *
     * @return string
     */
    
public function voipNumber($countryCodePrefix true$formatting true)
    {
        if (
$formatting) {
            
$format = static::randomElement(static::$voipNumberWithFormatting);
        } else {
            
$format = static::randomElement(static::$voipNumber);
        }

        if (
$countryCodePrefix) {
            return static::
countryCodePrefix($formatting) . static::numerify($this->generator->parse($format));
        }

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

    
/**
     * Return a Malaysian Country Code Prefix.
     *
     * @example '+6'
     *
     * @param bool $formatting true, false
     *
     * @return string
     */
    
public static function countryCodePrefix($formatting true)
    {
        if (
$formatting) {
            return static::
randomElement(static::$plusSymbol) . static::randomElement(static::$countryCodePrefix);
        }

        return static::
randomElement(static::$countryCodePrefix);
    }
}

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