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

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/scripts/pba/phc-read-only/test/subjects/codegen/   drwxrwxr-x
Free 83.36 GB of 96.73 GB (86.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

    
/* String which contain just ints are treated as int keys. This enumerates special cases, which are:
     *        leading '-' OK, 
     *        leading '0' not OK,
     *        decimal only,
     *        LONG_INT and LONG_MAX excluded
     */

    
$x = array ("0"// int
                    
"1"// int
                    
"12345"// int
                    
"-012345"// not int (leading 0)
                    
"-12345"// int
                    
"01"// not int (leading 0)
                    
"-0"// not int
                    
"-1"// int
                    
"-"// not int
//                    "", // cb_mir doesnt support this. TODO allow a way of skipping this test for cb_mir, without turning off the CompiledVsInterpreted test
                    
"123x"// not int
                    
"-123x"// not int
                    
"0x"// not int (decimal only)
                    
"00"// not int (leading 0)
                    
"-9223372036854775809"// not int (64 bit LONG_MIN - 1)
                    
"-9223372036854775808"// not int (64 bit LONG_MIN)
                    
"-9223372036854775807"// int (64 bit LONG_MIN + 1)
                    
"9223372036854775808"// not int (64 bit LONG_MAX + 1)
                    
"9223372036854775807"// not int (64 bit LONG_MAX)
                    
"9223372036854775806"// int (64 bit LONG_MAX - 1)
                    
"-2147483649"// not int (32 bit LONG_MIN - 1)
                    
"-2147483648"// int on 64 bit only (32 bit LONG_MIN)
                    
"-2147483647"// int (32 bit LONG_MIN - 1)
                    
"2147483648"// not int (32 bit LONG_MAX + 1)
                    
"2147483647"// int on 64 bit only (32 bit LONG_MAX)
                    
"2147483646"// int (32 bit LONG_MAX - 1)
                    
"0x17"// not int (no hex)
                    
"0xa17"// not int (decimal only)
                    
);

        foreach (
$x as $key)
        {
            
$y[$key] = $key;
        }

        foreach (
$y as $key => $value)
        {
            
var_dump ($key);
            
var_dump ($value);
        }
?>

:: 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 HackingTool | HackingTool | Generation time: 0.0041 ]--