????JFIF??x?x????'
Server IP : 104.21.112.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/malcare-security/protect/ |
Upload File : |
<?php if (!defined('ABSPATH') && !defined('MCDATAPATH')) exit; if (!class_exists('MCProtectLogger_V602')) : require_once dirname( __FILE__ ) . '/logger/fs.php'; require_once dirname( __FILE__ ) . '/logger/db.php'; class MCProtectLogger_V602 { private $log_destination; const TYPE_FS = 0; const TYPE_DB = 1; function __construct($name, $type = MCProtectLogger_V602::TYPE_DB) { if ($type == MCProtectLogger_V602::TYPE_FS) { $this->log_destination = new MCProtectLoggerFS_V602($name); } else { $this->log_destination = new MCProtectLoggerDB_V602($name); } } public function log($data) { $this->log_destination->log($data); } } endif;