!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/codegen/   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:     Generate_C_annotations.h (1.59 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
 *
 * Annotate MIR for code generation.
 *
 * The phc.codegen.compiled_functions on the PHP script is a list of 
 * all functions in the global scope, but excluding function definitions
 * inside classes; they are stored in a similar attribute on the class def.
 */

#ifndef PHC_GENERATE_C_ANNOTATIONS_H
#define PHC_GENERATE_C_ANNOTATIONS_H

#include "MIR_visitor.h"
#include "lib/Set.h"
#include "lib/Stack.h"

class Generate_C_annotations : public MIR::Visitor, virtual public GC_obj
{
protected:
    Set<string> var_names;
    Set<string> iterators;
    Set<string> cached_functions;
    Stack<MIR::Signature_list*> compiled_functions;
    Stack<String*> class_name;

    // Literal.classid() -> (lit.value -> Literal*)
    Map<int, Map<string, MIR::Literal*> > pool_values;

public:
    // Whole script analysis
    void pre_php_script (MIR::PHP_script* in);
    void post_php_script (MIR::PHP_script* in);
    void post_literal (MIR::Literal* in);
    void post_param_is_ref (MIR::Param_is_ref* in);
    void post_method_invocation (MIR::Method_invocation* in);

    // OO
    void pre_class_def(MIR::Class_def* in);
    void post_class_def(MIR::Class_def* in);

    // Method analysis
    void pre_method (MIR::Method* in);
    void post_method (MIR::Method* in);
    void post_variable_name (MIR::VARIABLE_NAME* in);
    void post_ht_iterator (MIR::HT_ITERATOR* in);
    void post_return (MIR::Return* in);

// Declare Generate_C as a friend so that it can access var_names
// (necessary in compile_static_value)
    friend class Generate_C;
};

#endif // PHC_GENERATE_C_ANNOTATIONS_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.0046 ]--