PK
œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Notice: ob_end_clean(): Failed to delete buffer. No buffer to delete in /home/telusvwg/public_html/da754d/index.php on line 8
| Dir : /home/telusvwg/techinnovo.co/wp-content/plugins/really-simple-ssl/security/ |
| Server: Linux premium279.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 IP: 66.29.132.192 |
| Dir : /home/telusvwg/techinnovo.co/wp-content/plugins/really-simple-ssl/security/security.php |
<?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);
self::$instance->hardening = new rsssl_hardening();
}
}
return self::$instance;
}
private function includes()
{
$path = rsssl_path.'security/';
require_once( $path . 'integrations.php' );
require_once( $path . 'hardening.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);