PluginProbe ʕ •ᴥ•ʔ
NinjaFirewall (WP Edition) – Advanced Security Plugin and Firewall / 4.9
NinjaFirewall (WP Edition) – Advanced Security Plugin and Firewall v4.9
4.9 4.8.8 4.8.7 4.8.6 trunk 4.5 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6 4.6.1 4.7 4.7.1 4.7.2 4.7.3 4.7.4 4.7.5 4.8 4.8.1 4.8.2 4.8.3 4.8.4 4.8.5
ninjafirewall / lib / loader.php
ninjafirewall / lib Last commit date
share 9 years ago .htaccess 11 years ago anti_malware.php 5 years ago class-api.php 1 month ago class-centralised-logging.php 1 month ago class-coupon.php 7 months ago class-email-sodium.php 1 month ago class-firewall-log.php 1 month ago class-helpers.php 9 months ago class-import-export.php 5 months ago class-ip.php 5 months ago class-nfw-database.php 7 months ago class-plugin-upgrade.php 1 month ago class-security-updates.php 1 month ago class-session.php 1 month ago class_mail.php 1 month ago firewall.php 1 month ago fw_fileguard.php 5 months ago fw_livelog.php 1 year ago help.php 1 month ago helpers.php 1 month ago i18n-extra.php 1 month ago i18n.php 1 year ago index.html 13 years ago init_update.php 2 years ago install.php 1 year ago install_default.php 1 month ago loader.php 7 months ago mail_template_firewall.php 1 year ago mail_template_plugin.php 1 month ago scheduled_tasks.php 3 years ago settings_dashboard.php 1 month ago settings_dashboard_about.php 1 month ago settings_dashboard_statistics.php 2 months ago settings_event_notifications.php 1 month ago settings_events.php 2 months ago settings_firewall_options.php 2 months ago settings_firewall_policies.php 1 month ago settings_login_protection.php 2 months ago settings_logs.php 1 month ago settings_logs_firewall_log.php 1 month ago settings_logs_live_log.php 2 months ago settings_monitoring.php 1 month ago settings_monitoring_file_check.php 2 months ago settings_monitoring_file_guard.php 2 months ago settings_network.php 2 months ago settings_security_rules.php 2 months ago settings_security_rules_editor.php 1 month ago settings_security_rules_update.php 1 month ago sign.pub 7 years ago thickbox.php 4 years ago widget.php 3 years ago wpplus.php 5 months ago
loader.php
17 lines
1 <?php
2 /*
3 Plugin Name: NinjaFirewall WP (mu-plugin)
4 Plugin URI: https://nintechnet.com/
5 Description: NinjaFirewall's fallback loader. Do not remove. This file will be deleted when uninstalling NinjaFirewall.
6 Version: 1.0
7 Author: The Ninja Technologies Network
8 Author URI: https://nintechnet.com/
9 License: GPLv3 or later
10 Network: true
11 */
12 if (! defined('ABSPATH') || defined('NFW_STATUS') || defined('NFW_WPWAF') || ! is_file( WP_PLUGIN_DIR .'/ninjafirewall/lib/firewall.php' ) ) {
13 return false;
14 }
15 define('NFW_WPWAF', 2);
16 @include_once WP_PLUGIN_DIR .'/ninjafirewall/lib/firewall.php';
17