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


Viewing file:     comments.php (1.99 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    $a 
/* nested */ /* comment */ 2;

    echo 
1;        // (1) Single line comment not at the start of the line
    
echo 2;        # (2) Alternative style
    
    /*
     * Statements
     */

    // (3) Single line comment at the start of the line
    
echo 3;

    
// (4) Alternative style line comment at the start of the line
    
echo 4;

    echo 
41/* comment 41 */ echo 42/* echo 42 */
    
echo /* 43 */ 43/* 44 */ 44;

    echo 
5;

    
// Some assignment
    
$a $b;

    
// Non-expression statement
    
echo "break 5"// moved to comments2.php

    /*
     * (6) Other constructs 
     */
    
    // (7) Some function definition
    
function f7()
    {
        echo 
"In f7 (without comment)";
    }

    
// (8) Some class definition
    
class C8
    
{
        
// (9) Some class attribute
        
var $x9;
        
        var 
$y10// (10) Same line class attribute comment
    
        // (11) Method definition
        
function c11()
        {
            echo 
"In c11 (without comment)";
        }
    }

    
// (12) if-statement
    
if(12)
    {
        echo 
13;
    }
    
// Comment for the else part
    
else
    {
        
// And another comment
        
echo 14;
    }

    
// (15) while-statement
    
while(15)
    {
        echo 
16;
        break;
    }

    
// (17) do-while statement
    
do
    {
        echo 
18;
        break;
    }
    while(
17);

    
// 19 for loop
    
for(19;0;17)
    {
        echo 
20;
    }

    
// 21 foreach
    
foreach(array () as $x)
    {
        echo 
22;
    }

    
// 23 switch
    
switch(23)
    {
        
// Case 1
        
case 1:
            break;
        
// Case 2
        
case 2:
            break;
        
// Default case
        
default:
            break;
    }

    
// 25 Try statement
    
try
    {
        
25;
    }
    
// First catch
    
catch(FirstException $e1)
    {
//        break;
    
}
    
// Second catch
    
catch(SecondException $e2)
    {
//        break;
    
}

    
// 26 Preceding if-comment
    
if(26// 26 Same-line if comment
    
{
        echo 
"break 26";
    }

    
// 27 This function has 
    // 28 more than one comment 
    
function f()
    {
        return 
27 28;
    }

    
/* Multiline comment */
    
echo "break 29";

    
/* Semi Nested /* multiline comment */ 
    
echo "break 30";

    
// More than one in-line comment
    
echo "break 31"/* comment 1 */ /* comment 2 */

    
echo "break 32";

    
// This no longer breaks
    
$x /* one */ 33 /* two */ 34;

    
/*
     * So does this
     */
    
echo "break 35";
?>

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