!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/local/ei2/   drwxr-xr-x
Free 6182.07 GB of 6263.28 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     wphook.php (1.61 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* Wordpress Post-Installation Anti-Spam Hook Script */
/* Lite Version */

/* Include the required files to use the WP API and functions such as install() and activate_plugin() */
chdir(__DIR__);
$path getcwd();
require_once(
"wp-load.php");
require_once(
"wp-admin/includes/plugin.php");
require_once(
"wp-admin/includes/plugin-install.php");
require_once(
"wp-admin/includes/class-wp-upgrader.php");
require_once(
"wp-admin/includes/file.php");
require_once(
"wp-admin/includes/misc.php");
require_once(
"wp-admin/includes/plugin.php");

/* Check if plugin is already activated */
if (is_plugin_active("anti-spam/anti-spam.php")) {
    echo 
"Anti-Spam plugin is active in $path\n";
    exit(
0);
} else {
    
/* Try activating plugin if it is installed, but disabled */
    
echo "Plugin not activated/installed.. trying to activate..\n";
}
activate_plugin("$path/wp-content/plugins/anti-spam/anti-spam.php");
if (
is_plugin_active("anti-spam/anti-spam.php")) {
    echo 
"Plugin has been activated successfully in $path!\n";
    exit(
0);
} else {
    
/* Plugin is not installed/present, so we're proceeding with Install */
    
echo "Plugin not found in $path. Proceeding with installation..\n";
    
$api    plugins_api("plugin_information", array( "slug" => "Anti-spam"));
    
/* Retreive information about the Anti-Spam plugin from the WP API */
    
$object = new Plugin_Upgrader();
    
$object->install($api->download_link);
    
/* Install the plugin */
    
$result activate_plugin("$path/wp-content/plugins/anti-spam/anti-spam.php");
    
/* Activate the plugin */
    
echo "Plugin installed and activated successfully.\n";
    exit(
0);
}
?>

:: 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 KaizenLouie | C99Shell Github | Generation time: 0.0138 ]--