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.119.119.252
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 /
Tags /
Guards /
[ HOME SHELL ]
Name
Size
Permission
Action
Tag_Environment_Type_Guard.php
1.13
KB
-rw-r--r--
Tag_Verify_Guard.php
1.13
KB
-rw-r--r--
WP_Query_404_Guard.php
764
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Tag_Verify_Guard.php
<?php /** * Class Google\Site_Kit\Core\Tags\Guards\Tag_Verify_Guard * * @package Google\Site_Kit\Core\Tags\Guards * @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\Tags\Guards; use Google\Site_Kit\Core\Guards\Guard_Interface; use Google\Site_Kit\Core\Util\Input; /** * Guard that verifies if the "tagverify" query arg is used. * * @since 1.24.0 * @access private * @ignore */ class Tag_Verify_Guard implements Guard_Interface { /** * Input access abstraction. * * @since 1.24.0 * @var Input */ private $input; /** * Constructor. * * @since 1.24.0 * * @param Input $input Input instance. */ public function __construct( Input $input ) { $this->input = $input; } /** * Determines whether the guarded tag can be activated or not. * * @since 1.24.0 * * @return bool|WP_Error TRUE if guarded tag can be activated, otherwise FALSE or an error. */ public function can_activate() { return ! $this->input->filter( INPUT_GET, 'tagverify', FILTER_VALIDATE_BOOLEAN ); } }
Close