!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/hir_to_mir/   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:     Lower_control_flow.h (1.5 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
 *
 * Lower any control flow statements into conditional
 * gotos, and add necessary labels.
 */

#ifndef PHC_LOWER_CONTROL_FLOW_H
#define PHC_LOWER_CONTROL_FLOW_H

#include "HIR_lower_expr.h"
#include "MIR.h"
#include "HIR_to_MIR.h"

#include "lib/Vector.h"

class Lower_control_flow : public HIR::Lower_expr
{
private:
    Vector<HIR::Node*> break_levels;
    Vector<HIR::Node*> continue_levels;
    HIR_to_MIR folder;

public:
    MIR::VARIABLE_NAME* fold_var (HIR::VARIABLE_NAME* in);
    template<class T> MIR::Label* get_label (HIR::Node* in);
    template<class T> void add_label (HIR::Node*, HIR::Statement_list*);
    template<class T> MIR::Label* exit_label (HIR::Node*);
    template<class T> void lower_exit (T*, HIR::Statement_list*);
    void lower_foreach (HIR::Foreach*, HIR::Statement_list*);
    void lower_if (HIR::If*, HIR::Statement_list*);
    void lower_loop (HIR::Loop* in, HIR::Statement_list* out);

public:
    void pre_control_flow (HIR::Statement* in, HIR::Statement_list* out);
    void pre_loop(HIR::Loop* in, HIR::Statement_list* out);
    void pre_foreach(HIR::Foreach* in, HIR::Statement_list* out);

    void post_loop(HIR::Loop* in, HIR::Statement_list* out);
    void post_foreach(HIR::Foreach* in, HIR::Statement_list* out);
    void post_if(HIR::If* in, HIR::Statement_list* out);
    void post_break(HIR::Break* in, HIR::Statement_list* out);
    void post_continue(HIR::Continue* in, HIR::Statement_list* out);
};

#endif // PHC_LOWER_CONTROL_FLOW_H

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