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


Viewing file:     HIR_unparser.cpp (1.34 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * phc -- the open source PHP compiler
 * See doc/license/README.license for licensing information
 *
 * Unparse the HIR back to PHP syntax. Makes an effort to adhere to the Zend
 * coding style guidelines at
 *
 *   http://framework.zend.com/manual/en/coding-standard.coding-style.html
 */

#include "HIR_unparser.h" 
#include "HIR_to_AST.h" 

using namespace std;
using namespace HIR;

HIR_unparser::HIR_unparser (ostream& os, bool in_php)
: PHP_unparser (os, in_php)
, ast_unparser (ups)
{
}

HIR_unparser::HIR_unparser (Unparser_state* ups)
: PHP_unparser (ups)
, ast_unparser (ups)
{
}

void HIR_unparser::unparse (IR::Node* in)
{
    // Folding a VARIABLE_NAME doesnt return an AST::VARIABLE_NAME
    if (isa<VARIABLE_NAME> (in))
    {
        VARIABLE_NAME* var_name = dyc<VARIABLE_NAME> (in);
        ast_unparser.unparse (
            new AST::VARIABLE_NAME (
                var_name->value));
    }
    else if (isa<Variable_variable> (in))
    {
        Variable_variable* var_var = dyc<Variable_variable> (in);
        ast_unparser.unparse (
            new AST::Reflection (
                new AST::Variable (
                    new AST::VARIABLE_NAME (
                        var_var->variable_name->value))));
    }
    else
    {
        Node* hir = dyc<Node> (in);
        AST::Node* ast = (new HIR_to_AST ())->fold_node (hir);
        if (ast)
            ast_unparser.unparse (ast);
        else
            dyc<HIR::Node> (in)->visit (this);
    }
}

void HIR_unparser::pre_foreign (FOREIGN* in)
{
    in->unparse (ups);
}

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