HEX
Server: LiteSpeed
System: Linux melbournecleaninggroup 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: www-data (33)
PHP: 7.3.33-1+focal
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: /var/www/html/wp-content/plugins/jetpack/modules/verification-tools/verification-tools-utils.php
<?php

/*
 * Helper functions that are called from API even when module is inactive should be added here.
 * This file will be included in module-extras.php.
 */

if ( ! function_exists( 'jetpack_verification_validate' ) ) {
	function jetpack_verification_validate( $verification_services_codes ) {
		foreach ( $verification_services_codes as $key => $code ) {
			// Parse html meta tag if it does not look like a valid code
			if ( ! preg_match( '/^[a-z0-9_-]+$/i', $code ) ) {
				$code = jetpack_verification_get_code( $code );
			}

			$code = esc_attr( trim( $code ) );

			// limit length to 100 chars.
			$code = substr( $code, 0, 100 );

			/**
			 * Fire after each Verification code was validated.
			 *
			 * @module verification-tools
			 *
			 * @since 3.0.0
			 *
			 * @param string $key Verification service name.
			 * @param string $code Verification service code provided in field in the Tools menu.
			 */
			do_action( 'jetpack_site_verification_validate', $key, $code );

			$verification_services_codes[ $key ] = $code;
		}
		return $verification_services_codes;
	}
}

if ( ! function_exists( 'jetpack_verification_get_code' ) ) {
	function jetpack_verification_get_code( $code ) {
		$pattern = '/content=["\']?([^"\' ]*)["\' ]/is';
		preg_match( $pattern, $code, $match );
		if ( $match ) {
			return urldecode( $match[1] );
		} else {
			return false;
		}
	}
}