| Server IP : 62.173.141.34 / Your IP : 216.73.217.88 Web Server : Apache/2.4.63 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux server7.msonline.ru 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : izihss ( 1005) PHP Version : 7.4.33 Disable Function : 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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/izihss/web/izihss.ru/public_html/wp-content/plugins/really-simple-ssl/security/ |
Upload File : |
<?php
use RSSSL\Security\RSSSL_Htaccess_File_Manager;
defined('ABSPATH') or die();
class REALLY_SIMPLE_SECURITY
{
private static $instance;
public $firewall_manager;
public $hardening;
/**
* Components array, so we can access singleton classes which are dynamically added, from anywhere.
* @var
*/
public $components;
private function __construct()
{
if (!defined('RSSSL_SAFE_MODE') && file_exists(trailingslashit(WP_CONTENT_DIR) . 'rsssl-safe-mode.lock')) {
define('RSSSL_SAFE_MODE', true);
}
}
public static function instance()
{
if (!isset(self::$instance) && !(self::$instance instanceof REALLY_SIMPLE_SECURITY)) {
self::$instance = new REALLY_SIMPLE_SECURITY;
self::$instance->includes();
if ( rsssl_admin_logged_in() ) {
$htaccessFileManager = new RSSSL_Htaccess_File_Manager();
self::$instance->firewall_manager = new rsssl_firewall_manager($htaccessFileManager);
}
}
return self::$instance;
}
private function includes()
{
$path = rsssl_path.'security/';
require_once( $path . 'integrations.php' );
require_once( $path . 'cron.php' );
require_once( $path . 'includes/check404/class-rsssl-simple-404-interceptor.php' );
/**
* Load only on back-end
*/
if ( rsssl_admin_logged_in() ) {
require_once( $path . 'functions.php' );
require_once( $path . 'deactivate-integration.php' );
require_once( $path . 'firewall-manager.php' );
require_once( $path . 'tests.php' );
require_once( $path . 'notices.php' );
require_once( $path . 'sync-settings.php' );
}
}
}
function RSSSL_SECURITY()
{
return REALLY_SIMPLE_SECURITY::instance();
}
add_action('plugins_loaded', 'RSSSL_SECURITY', 9);