!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_ir/   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:     PHP_unparser.h (1.28 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
 *
 * Base class for unparsers
 */

#ifndef PHC_PHP_UNPARSER
#define PHC_PHP_UNPARSER

#include <iostream>
#include <iomanip>
#include <sstream>
#include "AST_visitor.h"

class Unparser_state : virtual public GC_obj
{
    public:
        Unparser_state (std::ostream& os, bool in_php);

    public:
        bool at_start_of_line;
        bool in_php;

    public:
        std::ostream& os;
        int indent_level;
        bool delayed_newline;
};

class PHP_unparser : virtual public GC_obj
{
// Constructor; pass in a different std::ostream to write to a file/string instead
// of standard output
public:
    PHP_unparser(std::ostream& os = std::cout, bool in_php = false);
    PHP_unparser(Unparser_state* ups);

    Unparser_state* ups;

    // unparse the node
    virtual void unparse (IR::Node* in) = 0;

// Interface
protected:
    void echo(string str);
    void echo_nl(string s);
    void echo(String* str);
    void echo_nl(String* str);

    void echo_delayed_newline();
    void clear_delayed_newline();

    void echo_html(String* str);
    void output_start_tag();
    void output_end_tag();

    void inc_indent();
    void dec_indent();
    void newline();
    void output_tabs();
    void empty_line();
    void space_or_newline();

    virtual ~PHP_unparser () {}

};

#endif // PHC_PHP_UNPARSER 

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