Uname:Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64

Base Dir : /home/httpd/vhosts/comeonline.ch/httpdocs

User : onlineadmin


403WebShell
403Webshell
Server IP : 80.74.154.100  /  Your IP : 216.73.217.0
Web Server : Apache
System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
User : onlineadmin ( 10487)
PHP Version : 8.5.7
Disable Function : opcache_get_status
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/lib/com/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wpsso/lib/com/plugin.php
<?php
/*
 * License: GPLv3
 * License URI: https://www.gnu.org/licenses/gpl.txt
 * Copyright 2012-2026 Jean-Sebastien Morisset (https://surniaulula.com/)
 */

if ( ! defined( 'ABSPATH' ) ) {

	die( 'These aren\'t the droids you\'re looking for.' );
}

if ( ! class_exists( 'SucomPlugin' ) ) {

	class SucomPlugin {

		public function __construct() {}

		/*
		 * GET PLUGINS METHODS:
		 *
		 *	get_active_plugins()
		 *	get_plugins()
		 *
		 * Returns an associative array of true/false values.
		 */
		public static function get_active_plugins( $read_cache = true ) {

			static $local_cache = null;

			if ( $read_cache ) {

				if ( null !== $local_cache ) {

					return $local_cache;
				}
			}

			$local_cache = array();	// Initialize the cache.

			$active_plugins = get_option( 'active_plugins', array() );

			if ( is_multisite() ) {

				$active_network_plugins = array_keys( get_site_option( 'active_sitewide_plugins', array() ) );

				if ( ! empty( $active_network_plugins ) ) {

					$active_plugins = array_merge( $active_plugins, $active_network_plugins );
				}
			}

			foreach ( $active_plugins as $plugin_base ) {

				$local_cache[ $plugin_base ] = true;
			}

			return $local_cache;
		}

		/*
		 * The WordPress get_plugins() function is very slow, so call it only once and cache its result.
		 *
		 * Used by self::is_plugin_installed().
		 */
		public static function get_plugins( $read_cache = true ) {

			static $local_cache = null;

			if ( $read_cache ) {

				if ( null !== $local_cache ) {

					return $local_cache;
				}
			}

			$local_cache = array();	// Initialize the cache.

			if ( ! function_exists( 'get_plugins' ) ) {	// Load the WordPress library if necessary.

				$plugin_lib = trailingslashit( ABSPATH ) . 'wp-admin/includes/plugin.php';

				if ( file_exists( $plugin_lib ) ) {	// Just in case.

					require_once $plugin_lib;

				} elseif ( method_exists( 'SucomUtil', 'safe_error_log' ) ) {	// Just in case.

					$error_pre = sprintf( '%s error:', __METHOD__ );
					$error_msg = sprintf( 'The WordPress %s library file is missing and required.', $plugin_lib );

					SucomUtil::safe_error_log( $error_pre . ' ' . $error_msg );
				}
			}

			if ( function_exists( 'get_plugins' ) ) {

				$local_cache = get_plugins();

			} elseif ( method_exists( 'SucomUtil', 'safe_error_log' ) ) {	// Just in case.

				$error_pre = sprintf( '%s error:', __METHOD__ );
				$error_msg = sprintf( 'The WordPress %1$s function is missing and required.', '<code>get_plugins()</code>' );

				SucomUtil::safe_error_log( $error_pre . ' ' . $error_msg );
			}

			return $local_cache;
		}

		/*
		 * IS CHECK METHODS:
		 *
		 *	is_plugin_active()
		 *	is_plugin_installed()
		 *
		 * Returns true/false.
		 */
		public static function is_plugin_active( $plugin_base, $read_cache = true ) {

			$active_plugins = self::get_active_plugins( $read_cache );

			if ( isset( $active_plugins[ $plugin_base ] ) ) {	// Associative array of true/false values.

				return $active_plugins[ $plugin_base ];	// Return true/false.
			}

			return false;
		}

		/*
		 * Returns true/false.
		 */
		public static function is_plugin_installed( $plugin_base, $read_cache = true ) {

			static $local_cache = array();	// Associative array of true/false values.

			if ( $read_cache ) {

				if ( isset( $local_cache[ $plugin_base ] ) ) {

					return $local_cache[ $plugin_base ];
				}
			}

			if ( empty( $plugin_base ) ) {	// Just in case.

				return $local_cache[ $plugin_base ] = false;

			} elseif ( validate_file( $plugin_base ) > 0 ) {	// Contains invalid characters.

				return $local_cache[ $plugin_base ] = false;
			}

			$wp_plugins = self::get_plugins( $read_cache );	// Front-end safe and uses cache.

			if ( ! empty( $wp_plugins[ $plugin_base ] ) ) {	// Check for a valid plugin header.

				return $local_cache[ $plugin_base ] = true;
			}

			return $local_cache[ $plugin_base ] = false;
		}

		/*
		 * PLUGIN UPDATE METHODS:
		 *
		 *	get_update_count()
		 *	have_plugin_update()
		 *
		 * Get the 'update_plugins' site transient and return the number of pending updates for a given slug prefix.
		 *
		 * Example: $plugin_prefix = 'wpsso'
		 */
		public static function get_update_count( $plugin_prefix = '' ) {

			$updates_count  = 0;
			$update_plugins = get_site_transient( 'update_plugins' );

			if ( ! empty( $update_plugins->response ) ) {

				foreach ( $update_plugins->response as $plugin_base => $data ) {

					if ( ! empty( $plugin_prefix ) ) {

						/*
						 * Example:
						 *
						 * 	$plugin_base = wpsso/wpsso.php
						 *
						 * 	$data->slug = wpsso
						 */
						if ( isset( $data->slug ) && strpos( $data->slug, $plugin_prefix ) === 0 ) {

							$updates_count++;
						}

					} else $updates_count++;
				}
			}

			return $updates_count;
		}

		/*
		 * Returns true/false.
		 */
		public static function have_plugin_update( $plugin_base ) {

			static $local_cache = array();	// Associative array of true/false values.

			if ( isset( $local_cache[ $plugin_base ] ) ) {

				return $local_cache[ $plugin_base ];

			} elseif ( empty( $plugin_base ) ) {	// Just in case.

				return $local_cache[ $plugin_base ] = false;

			} elseif ( ! self::is_plugin_installed( $plugin_base ) ) {

				return $local_cache[ $plugin_base ] = false;
			}

			$update_plugins = get_site_transient( 'update_plugins' );

			if ( isset( $update_plugins->response ) && is_array( $update_plugins->response ) ) {

				if ( isset( $update_plugins->response[ $plugin_base ] ) ) {

					return $local_cache[ $plugin_base ] = true;
				}
			}

			return $local_cache[ $plugin_base ] = false;
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit