403Webshell
Server IP : 130.225.57.55  /  Your IP : 216.73.216.60
Web Server : Apache
System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User : root ( 0)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/Minify_Core.php
<?php
/**
 * File: Minify_ConfigLabels.php
 *
 * @package W3TC
 */

namespace W3TC;

/**
 * Class Minify_Core
 *
 * Component of shared code used by minify
 *
 * phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
 * phpcs:disable WordPress.WP.AlternativeFunctions
 */
class Minify_Core {
	/**
	 * Generates the minified filename for a set of files.
	 *
	 * @param array  $files Array of files to be minified.
	 * @param string $type  The type of the minification (e.g., 'css', 'js').
	 *
	 * @return string|null The minified filename or null if a collision occurs.
	 */
	public static function urls_for_minification_to_minify_filename( $files, $type ) {
		$files_string = wp_json_encode( $files );

		$w3tc_key = self::urls_for_minification_to_minify_key( $files_string, substr( md5( $files_string ), 0, 5 ) );
		if ( is_null( $w3tc_key ) ) {
			// key collision (rare case), try full md5.
			$w3tc_key = self::urls_for_minification_to_minify_key( $files_string, md5( $files_string ) );
			if ( is_null( $w3tc_key ) ) {
				// collision of full md5 - unprobable.
				return null;
			}
		}

		$minify_filename = $w3tc_key . '.' . $type;

		if ( has_filter( 'w3tc_minify_urls_for_minification_to_minify_filename' ) ) {
			$minify_filename = apply_filters(
				'w3tc_minify_urls_for_minification_to_minify_filename',
				$minify_filename,
				$files,
				$type
			);
			update_option( 'w3tc_minify_filter_' . hash( 'crc32b', $minify_filename ), $w3tc_key, false );
		}

		return $minify_filename;
	}

	/**
	 * Retrieves the minification key based on the files string.
	 *
	 * @param string $files_string JSON encoded string of files.
	 * @param string $w3tc_key          The base key to check.
	 *
	 * @return string|null The key if found, or null if not.
	 */
	private static function urls_for_minification_to_minify_key( $files_string, $w3tc_key ) {
		$v                = get_option( 'w3tc_minify_' . $w3tc_key );
		$minify_filenames = @json_decode( $v, true );
		if ( empty( $minify_filenames ) || ! is_array( $minify_filenames ) ) {
			update_option( 'w3tc_minify_' . $w3tc_key, $files_string, false );
			return $w3tc_key;
		}

		if ( $v === $files_string ) {
			return $w3tc_key;
		}

		return null;
	}

	/**
	 * Retrieves the URLs associated with a minified filename.
	 *
	 * @param string $filename The minified filename.
	 * @param string $type     The type of the minified file (e.g., 'css', 'js').
	 *
	 * @return array An array of verified URLs.
	 */
	public static function minify_filename_to_urls_for_minification( $filename, $type ) {
		$hash = has_filter( 'w3tc_minify_urls_for_minification_to_minify_filename' ) ?
			get_option( 'w3tc_minify_filter_' . hash( 'crc32b', $filename . '.' . $type ) ) :
			$filename;
		$v    = get_option( 'w3tc_minify_' . $hash );

		$urls_unverified = @json_decode( $v, true );
		if ( ! is_array( $urls_unverified ) ) {
			return array();
		}

		$urls = array();

		foreach ( $urls_unverified as $w3tc_file ) {
			$verified = false;
			if ( Util_Environment::is_url( $w3tc_file ) ) {
				$w3tc_c          = Dispatcher::config();
				$external        = $w3tc_c->get_array( 'minify.cache.files' );
				$external_regexp = $w3tc_c->get_boolean( 'minify.cache.files_regexp' );

				foreach ( $external as $w3tc_ext ) {
					if ( empty( $w3tc_ext ) ) {
						continue;
					}

					if (
						! $external_regexp &&
						preg_match( '~^' . Util_Environment::get_url_regexp( $w3tc_ext ) . '~', $w3tc_file ) &&
						! $verified
					) {
						$verified = true;
					}

					if (
						$external_regexp &&
						preg_match( '~' . $w3tc_ext . '~', $w3tc_file ) &&
						! $verified
					) {
						$verified = true;
					}
				}

				if ( ! $verified ) {
					self::debug_error( sprintf( 'Remote file not in external files/libraries list: "%s"', $w3tc_file ) );
				}
			} elseif (
				/* no ".." */
				strpos( $w3tc_file, '..' ) !== false ||
				/* no "//" */
				strpos( $w3tc_file, '//' ) !== false ||
				/* no "\" */
				(
					strpos( $w3tc_file, '\\' ) !== false &&
					'WIN' !== strtoupper( substr( PHP_OS, 0, 3 ) )
				) ||
				/* no "./" */
				preg_match( '/(?:^|[^\\.])\\.\\//', $w3tc_file ) ||
				/* no unwanted chars */
				! preg_match( '/^[a-zA-Z0-9_.\\/-]|[\\\\]+$/', $w3tc_file )
			) {
				$verified = false;
				self::debug_error( sprintf( 'File path invalid: "%s"', $w3tc_file ) );
			} else {
				$verified = true;
			}

			if ( $verified ) {
				$urls[] = $w3tc_file;
			}
		}

		return $urls;
	}

	/**
	 * Retrieves the URL for a minified file.
	 *
	 * @param string $minify_filename The filename of the minified file.
	 *
	 * @return string The URL of the minified file.
	 */
	public static function minified_url( $minify_filename ) {
		$path     = Util_Environment::cache_blog_minify_dir();
		$filename = $path . '/' . $minify_filename;

		$w3tc_c = Dispatcher::config();
		if ( Util_Rule::can_check_rules() && $w3tc_c->get_boolean( 'minify.rewrite' ) ) {
			return Util_Environment::filename_to_url( $filename );
		}

		return home_url( '?w3tc_minify=' . $minify_filename );
	}

	/**
	 * Logs an error message for debugging.
	 *
	 * @param string $error The error message to log.
	 *
	 * @return void
	 */
	public static function debug_error( $error ) {
		$w3tc_c = Dispatcher::config();
		$debug  = $w3tc_c->get_boolean( 'minify.debug' );

		if ( $debug ) {
			self::log( $error );
			echo "\r\n/* " . esc_html( $error ) . " */\r\n";
		}
	}

	/**
	 * Logs a message to the minify log file.
	 *
	 * @param string $msg The message to log.
	 *
	 * @return bool True if the message was successfully written, false otherwise.
	 */
	public static function log( $msg ) {
		$w3tc_data = sprintf(
			"[%s] [%s] [%s] %s\n",
			gmdate( 'r' ),
			isset( $_SERVER['REQUEST_URI'] ) ? esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'] ) ) : '',
			! empty( $_SERVER['HTTP_REFERER'] ) ? sanitize_text_field( wp_unslash( $_SERVER['HTTP_REFERER'] ) ) : '-',
			$msg
		);

		$w3tc_data = strtr( $w3tc_data, '<>', '..' );

		$filename = Util_Debug::log_filename( 'minify' );

		return @file_put_contents( $filename, $w3tc_data, FILE_APPEND );
	}

	/**
	 * Retrieves the cache configuration for usage statistics based on the minify engine.
	 *
	 * phpcs:disable WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase
	 *
	 * @return array The cache configuration for the minify engine.
	 */
	public function get_usage_statistics_cache_config() {
		$w3tc_c      = Dispatcher::config();
		$w3tc_engine = $w3tc_c->get_string( 'minify.engine' );

		switch ( $w3tc_engine ) {
			case 'memcached':
				$engineConfig = array(
					'servers'           => $w3tc_c->get_array( 'minify.memcached.servers' ),
					'persistent'        => $w3tc_c->get_boolean( 'minify.memcached.persistent' ),
					'aws_autodiscovery' => $w3tc_c->get_boolean( 'minify.memcached.aws_autodiscovery' ),
					'username'          => $w3tc_c->get_string( 'minify.memcached.username' ),
					'password'          => $w3tc_c->get_string( 'minify.memcached.password' ),
				);
				break;

			case 'redis':
				$engineConfig = array(
					'servers'                 => $w3tc_c->get_array( 'minify.redis.servers' ),
					'verify_tls_certificates' => $w3tc_c->get_boolean( 'minify.redis.verify_tls_certificates' ),
					'persistent'              => $w3tc_c->get_boolean( 'minify.redis.persistent' ),
					'timeout'                 => $w3tc_c->get_integer( 'minify.redis.timeout' ),
					'retry_interval'          => $w3tc_c->get_integer( 'minify.redis.retry_interval' ),
					'read_timeout'            => $w3tc_c->get_integer( 'minify.redis.read_timeout' ),
					'dbid'                    => $w3tc_c->get_integer( 'minify.redis.dbid' ),
					'password'                => $w3tc_c->get_string( 'minify.redis.password' ),
				);
				break;

			default:
				$engineConfig = array();
		}

		$engineConfig['engine'] = $w3tc_engine;

		return $engineConfig;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit