Brotherline AnonSec • Shell
SRV 162.240.68.55 YOU 216.73.217.22 USER tywatomy (1003) 7.4.33 DOMAINS 6 Domains
MySQL cURL WGET Perl Python Sudo
Disabled: exec,passthru,shell_exec,system  •  OS: Linux server.ariapress.org 3.10.0-1160.119.1.el7.tuxcare.els22.x86_64 #1 SMP Mon Aug 18 06:07:12 UTC 2025 x86_64  •  Webserver: Apache
/home/tywatomy/public_html/wp-content/plugins/bluehost-wordpress-plugin/inc/GoogleSiteKit.php
<?php

namespace Bluehost;

/**
 * Class GoogleSiteKit
 *
 * @package Bluehost
 */
class GoogleSiteKit {

	/**
	 * GoogleSiteKit constructor.
	 */
	public function __construct() {
		add_action( 'pre_set_transient_nfd_site_capabilities', array( $this, 'maybe_enable_google_site_kit' ), 10, 3 );
	}

	/**
	 * Check if Google Site Kit is enabled and set the transient value.
	 *
	 * @param mixed $value The transient value.
	 *
	 * @return mixed
	 */
	public function maybe_enable_google_site_kit( $value ) {
		if ( class_exists( 'WPSEO_Options' ) ) {
			$option_value = \WPSEO_Options::get( 'google_site_kit_feature_enabled', null, array( 'wpseo' ) );
			if (
				! $option_value &&
				is_array( $value ) &&
				array_key_exists( 'google_site_kit_feature_enabled', $value ) &&
				true === $value['google_site_kit_feature_enabled']
			) {
				\WPSEO_Options::set( 'google_site_kit_feature_enabled', true, 'wpseo' );
			}
		}
		return $value;
	}
}

new GoogleSiteKit();
Anon7 — 2022  •  AnonSec Team