!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.37 GB of 96.73 GB (86.19%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     assignment3.php (1.16 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * Fairly comprehensive test of assignments, dealing with "ordinary" variables,
 * arrays and variable variables, and testing normal assignment and reference 
 * assignment, and tests copy-on-write and change-on-write.
 * 
 * Does not deal with OO stuff, that should probably be tested separately.
 */

/*
 * Variable variables
 */

    
$Ca "Da";
    
$Cb "Db";
    
$Cc "Dc";
    
$Cd "Dd";
    
$Ce "De";
    
$Cf "Df";
    
$Cg "Dg";
    
$Ch "Dh";
    
$Ci "Di";
    
$Cj "Dj";
    
    
// Normal assignment
    
$$Ca 10;
    $
$Cb = $$Ca;
    $
$Cb = $$Cb 1;
    
var_export($$Ca);
    
var_export($$Cb);
    
var_export($Da);
    
var_export($Db);

    
// Reference assignment
    
$$Cc 20;
    $
$Cd =& $$Cc;
    $
$Cd = $$Cd 1;
    
var_export($$Cc);
    
var_export($$Cd);
    
var_export($Dc);
    
var_export($Dd);

    
// Normal assignment, RHS is_ref
    
$$Ce 30;
    $
$Cf =& $$Ce;
    $
$Cg = $$Cf;
    $
$Cg = $$Cg 1;
    
var_export($$Ce);
    
var_export($$Cf);
    
var_export($$Cg);
    
var_export($De);
    
var_export($Df);
    
var_export($Dg);

    
// Reference assignment, RHS is copy-on-write
    
$$Ch 40;
    $
$Ci = $$Ch;
    $
$Cj =& $$Ci;
    $
$Cj = $$Cj 1;
    
var_export($$Ch);
    
var_export($$Ci);
    
var_export($$Cj);
    
var_export($Dh);
    
var_export($Di);
    
var_export($Dj);
?>

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