Server IP : 15.235.198.142 / Your IP : 216.73.216.155 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/rhodeworks/wp-content/plugins/bulletproof-security/includes/ |
Upload File : |
<?php // Direct calls to this file are Forbidden when wp core files are not present if ( ! current_user_can('manage_options') ){ header('Status: 403 Forbidden'); header('HTTP/1.1 403 Forbidden'); exit(); } /* // BPS Class - not doing anything with this Class in BPS Free if ( !class_exists('Bulletproof_Security') ) { if ( !defined('BULLETPROOF_VERSION' ) ) define( 'BULLETPROOF_VERSION', '.48.8' ); class Bulletproof_Security { public function __construct() { add_action('init', array($this, 'load_plugin_textdomain')); } public function load_plugin_textdomain() { load_plugin_textdomain('bulletproof-security', FALSE, dirname(plugin_basename(__FILE__)).'/languages/'); } public function bulletproof_save_options() { return update_option('bulletproof_security', $this->options); } public function bulletproof_set_error($code = '', $error = '', $data = '') { if ( empty($code) ) $this->errors = new WP_Error(); elseif ( is_a($code, 'WP_Error') ) $this->errors = $code; elseif ( is_a($this->errors, 'WP_Error') ) $this->errors->add($code, $error, $data); else $this->errors = new WP_Error($code, $error, $data); } public function bulletproof_get_error($code = '') { if ( is_a($this->errors, 'WP_Error') ) return $this->errors->get_error_message($code); return false; } } }//end if */ ?>