!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/php/3ros/simpletest/   drwxr-xr-x
Free 14.64 GB of 61.93 GB (23.64%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     selector.php (3.55 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    
/**
     *    Base include file for SimpleTest.
     *    @package    SimpleTest
     *    @subpackage    WebTester
     *    @version    $Id: selector.php,v 1.3 2005/08/25 03:34:24 lastcraft Exp $
     */

    /**#@+
     * include SimpleTest files
     */
    
require_once(dirname(__FILE__) . '/tag.php');
    require_once(
dirname(__FILE__) . '/encoding.php');
    
/**#@-*/

    /**
     *    Used to extract form elements for testing against.
     *    Searches by name attribute.
     *    @package SimpleTest
     *    @subpackage WebTester
     */
    
class SimpleByName {
        var 
$_name;

        
/**
         *    Stashes the name for later comparison.
         *    @param string $name     Name attribute to match.
         */
        
function SimpleByName($name) {
            
$this->_name $name;
        }

        
/**
         *    Compares with name attribute of widget.
         *    @param SimpleWidget $widget    Control to compare.
         *    @access public
         */
        
function isMatch($widget) {
            return (
$widget->getName() == $this->_name);
        }
    }

    
/**
     *    Used to extract form elements for testing against.
     *    Searches by visible label or alt text.
     *    @package SimpleTest
     *    @subpackage WebTester
     */
    
class SimpleByLabel {
        var 
$_label;

        
/**
         *    Stashes the name for later comparison.
         *    @param string $label     Visible text to match.
         */
        
function SimpleByLabel($label) {
            
$this->_label $label;
        }

        
/**
         *    Comparison. Compares visible text of widget or
         *    related label.
         *    @param SimpleWidget $widget    Control to compare.
         *    @access public
         */
        
function isMatch($widget) {
            if (! 
method_exists($widget'isLabel')) {
                return 
false;
            }
            return 
$widget->isLabel($this->_label);
        }
    }

    
/**
     *    Used to extract form elements for testing against.
     *    Searches dy id attribute.
     *    @package SimpleTest
     *    @subpackage WebTester
     */
    
class SimpleById {
        var 
$_id;

        
/**
         *    Stashes the name for later comparison.
         *    @param string $id     ID atribute to match.
         */
        
function SimpleById($id) {
            
$this->_id $id;
        }

        
/**
         *    Comparison. Compares id attribute of widget.
         *    @param SimpleWidget $widget    Control to compare.
         *    @access public
         */
        
function isMatch($widget) {
            return 
$widget->isId($this->_id);
        }
    }

    
/**
     *    Used to extract form elements for testing against.
     *    Searches by visible label, name or alt text.
     *    @package SimpleTest
     *    @subpackage WebTester
     */
    
class SimpleByLabelOrName {
        var 
$_label;

        
/**
         *    Stashes the name/label for later comparison.
         *    @param string $label     Visible text to match.
         */
        
function SimpleByLabelOrName($label) {
            
$this->_label $label;
        }

        
/**
         *    Comparison. Compares visible text of widget or
         *    related label or name.
         *    @param SimpleWidget $widget    Control to compare.
         *    @access public
         */
        
function isMatch($widget) {
            if (
method_exists($widget'isLabel')) {
                if (
$widget->isLabel($this->_label)) {
                    return 
true;
                }
            }
            return (
$widget->getName() == $this->_label);
        }
    }
?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.6066 ]--