!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/optimize/   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:     Inlining.cpp (1.22 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
 *
 * Very simple inlining. Probably just removing calls to empty functions.
  */

#include "Inlining.h"
#include "Oracle.h"
#include "process_ir/General.h"

using namespace MIR;

void
Inlining::transform_eval_expr (Statement_block* bb, Eval_expr* in, BB_list* out)
{
    // remove it later
    out->push_back (bb);

    Method_invocation* mi = dynamic_cast<Method_invocation*> (in->expr);
    if (  mi == NULL
        || mi->target
        || isa<Variable_method> (mi->method_name))
        return;

    // Simplest thing possible: remove calls to empty functions
    User_method_info* info = Oracle::get_user_method_info (
        dyc<METHOD_NAME> (mi->method_name)->value);

    if (info == NULL)
        return;

    // TODO: technically, we have ignored the problem that a function call can
    // initialize a parameter which is called by ref. We've also ignored that
    // elsewhere, which really needs to be fixed.
    // TODO: shoudln't this be killed by DCE
    // TODO: use a User_method_info property

    // Empty CFGs have 2 statements only
    if (info->get_cfg ()->get_all_bbs()->size() != 2)
        return;

    DEBUG ("BB " << bb->ID << ": removing call to " << *info->name);

    // Remove it
    out->clear ();
}

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