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.227.228.238
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 /
Key_Metrics /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Key_Metrics.php
2.9
KB
-rw-r--r--
Key_Metrics_Settings.php
2.6
KB
-rw-r--r--
Key_Metrics_Setup_Completed_By...
834
B
-rw-r--r--
Key_Metrics_Setup_New.php
1.94
KB
-rw-r--r--
REST_Key_Metrics_Controller.ph...
5.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Key_Metrics_Setup_New.php
<?php /** * Class Google\Site_Kit\Core\Key_Metrics\Key_Metrics_Setup_New * * @package Google\Site_Kit\Core\Key_Metrics * @copyright 2023 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\Key_Metrics; use Google\Site_Kit\Core\Storage\Transients; use Google\Site_Kit\Core\Util\Method_Proxy_Trait; /** * Class for handling Key_Metrics_Setup_New state. * * @since 1.115.0 * @access private * @ignore */ class Key_Metrics_Setup_New { use Method_Proxy_Trait; const TRANSIENT = 'googlesitekit_key_metrics_setup_new'; /** * Transients instance. * * @var Transients */ private $transients; /** * Constructor. * * @since 1.115.0 * * @param Transients $transients Transients instance. */ public function __construct( Transients $transients ) { $this->transients = $transients; } /** * Registers functionality through WordPress hooks. * * @since 1.115.0 */ public function register() { add_action( 'add_option_' . Key_Metrics_Setup_Completed_By::OPTION, $this->get_method_proxy( 'mark_setup_completed' ), 10, 2 ); add_filter( 'googlesitekit_inline_base_data', $this->get_method_proxy( 'inline_js_base_data' ) ); } /** * Marks Key Metrics setup as just completed for a limited period of time. * * @since 1.115.0 * * @param string $option Key_Metrics_Setup_Completed_By option name. * @param mixed $value Option value added. */ protected function mark_setup_completed( $option, $value ) { if ( $value ) { $this->transients->set( self::TRANSIENT, true, 2 * WEEK_IN_SECONDS ); } } /** * Extends base data with setup new state. * * @since 1.115.0 * * @param array $data Inline base data. * @return array */ protected function inline_js_base_data( $data ) { $data['keyMetricsSetupNew'] = (bool) $this->transients->get( self::TRANSIENT ); return $data; } }
Close