BulletProof Security - Version 3.9

Version Description

Download this release

Release Info

Developer AITpro
Plugin Icon 128x128 BulletProof Security
Version 3.9
Comparing to
See all releases

Code changes from version 3.8 to 3.9

admin/core/core-htaccess-code.php CHANGED
@@ -215,22 +215,9 @@ RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F]
215
  RewriteRule ^wp-includes/theme-compat/ - [F]\n\n";
216
  }
217
 
218
- $hostaddress = esc_html( @gethostbyaddr( $_SERVER['SERVER_ADDR'] ) );
219
-
220
  if ( $BPSCustomCodeOptions['bps_customcode_request_methods'] != '' ) {
221
  $bps_secure_request_methods = "\n# CUSTOM CODE REQUEST METHODS FILTERED\n" . htmlspecialchars_decode( $BPSCustomCodeOptions['bps_customcode_request_methods'], ENT_QUOTES)."\n\n";
222
  } else {
223
- if ( preg_match( '/secureserver\.net/', $hostaddress, $matches ) ) {
224
- $bps_secure_request_methods = "\n# REQUEST METHODS FILTERED
225
- # If you want to allow HEAD Requests use BPS Custom Code and copy
226
- # this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code
227
- # text box: CUSTOM CODE REQUEST METHODS FILTERED.
228
- # See the CUSTOM CODE REQUEST METHODS FILTERED help text for additional steps.
229
- RewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK|DEBUG) [NC]
230
- RewriteRule ^(.*)$ - [F]
231
- RewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]
232
- RewriteRule ^(.*)$ - [R=405,L]\n\n";
233
- } else {
234
  $bps_secure_request_methods = "\n# REQUEST METHODS FILTERED
235
  # If you want to allow HEAD Requests use BPS Custom Code and copy
236
  # this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code
@@ -241,7 +228,6 @@ RewriteRule ^(.*)$ - [F]
241
  RewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]
242
  RewriteRule ^(.*)$ " . $bps_get_wp_root_secure . $bps_plugin_dir . "/bulletproof-security/405.php [L]\n\n";
243
  }
244
- }
245
 
246
  $bps_secure_begin_plugins_skip_rules_text = "# PLUGINS/THEMES AND VARIOUS EXPLOIT FILTER SKIP RULES
247
  # To add plugin/theme skip/bypass rules use BPS Custom Code.
215
  RewriteRule ^wp-includes/theme-compat/ - [F]\n\n";
216
  }
217
 
 
 
218
  if ( $BPSCustomCodeOptions['bps_customcode_request_methods'] != '' ) {
219
  $bps_secure_request_methods = "\n# CUSTOM CODE REQUEST METHODS FILTERED\n" . htmlspecialchars_decode( $BPSCustomCodeOptions['bps_customcode_request_methods'], ENT_QUOTES)."\n\n";
220
  } else {
 
 
 
 
 
 
 
 
 
 
 
221
  $bps_secure_request_methods = "\n# REQUEST METHODS FILTERED
222
  # If you want to allow HEAD Requests use BPS Custom Code and copy
223
  # this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code
228
  RewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]
229
  RewriteRule ^(.*)$ " . $bps_get_wp_root_secure . $bps_plugin_dir . "/bulletproof-security/405.php [L]\n\n";
230
  }
 
231
 
232
  $bps_secure_begin_plugins_skip_rules_text = "# PLUGINS/THEMES AND VARIOUS EXPLOIT FILTER SKIP RULES
233
  # To add plugin/theme skip/bypass rules use BPS Custom Code.
admin/htaccess/secure.htaccess CHANGED
@@ -1,4 +1,4 @@
1
- # BULLETPROOF 3.8 SECURE .HTACCESS
2
 
3
  # PHP/PHP.INI HANDLER/CACHE CODE
4
  # Use BPS Custom Code to add php/php.ini Handler and Cache htaccess code and to save it permanently.
1
+ # BULLETPROOF 3.9 SECURE .HTACCESS
2
 
3
  # PHP/PHP.INI HANDLER/CACHE CODE
4
  # Use BPS Custom Code to add php/php.ini Handler and Cache htaccess code and to save it permanently.
admin/htaccess/wpadmin-secure.htaccess CHANGED
@@ -1,4 +1,4 @@
1
- # BULLETPROOF 3.8 WP-ADMIN SECURE .HTACCESS
2
 
3
  # DO NOT ADD URL REWRITING IN THIS FILE OR WORDPRESS WILL BREAK
4
  # RewriteRule ^(.*)$ - [F] works in /wp-admin without breaking WordPress
1
+ # BULLETPROOF 3.9 WP-ADMIN SECURE .HTACCESS
2
 
3
  # DO NOT ADD URL REWRITING IN THIS FILE OR WORDPRESS WILL BREAK
4
  # RewriteRule ^(.*)$ - [F] works in /wp-admin without breaking WordPress
admin/wizard/wizard-functions.php CHANGED
@@ -245,22 +245,9 @@ RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F]
245
  RewriteRule ^wp-includes/theme-compat/ - [F]\n\n";
246
  }
247
 
248
- $hostaddress = esc_html( @gethostbyaddr( $_SERVER['SERVER_ADDR'] ) );
249
-
250
  if ( $BPSCustomCodeOptions['bps_customcode_request_methods'] != '' ) {
251
  $bps_secure_request_methods = "\n# CUSTOM CODE REQUEST METHODS FILTERED\n" . htmlspecialchars_decode( $BPSCustomCodeOptions['bps_customcode_request_methods'], ENT_QUOTES)."\n\n";
252
  } else {
253
- if ( preg_match( '/secureserver\.net/', $hostaddress, $matches ) ) {
254
- $bps_secure_request_methods = "\n# REQUEST METHODS FILTERED
255
- # If you want to allow HEAD Requests use BPS Custom Code and copy
256
- # this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code
257
- # text box: CUSTOM CODE REQUEST METHODS FILTERED.
258
- # See the CUSTOM CODE REQUEST METHODS FILTERED help text for additional steps.
259
- RewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK|DEBUG) [NC]
260
- RewriteRule ^(.*)$ - [F]
261
- RewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]
262
- RewriteRule ^(.*)$ - [R=405,L]\n\n";
263
- } else {
264
  $bps_secure_request_methods = "\n# REQUEST METHODS FILTERED
265
  # If you want to allow HEAD Requests use BPS Custom Code and copy
266
  # this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code
@@ -271,7 +258,6 @@ RewriteRule ^(.*)$ - [F]
271
  RewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]
272
  RewriteRule ^(.*)$ " . $bps_get_wp_root_secure . $bps_plugin_dir . "/bulletproof-security/405.php [L]\n\n";
273
  }
274
- }
275
 
276
  $bps_secure_begin_plugins_skip_rules_text = "# PLUGINS/THEMES AND VARIOUS EXPLOIT FILTER SKIP RULES
277
  # To add plugin/theme skip/bypass rules use BPS Custom Code.
245
  RewriteRule ^wp-includes/theme-compat/ - [F]\n\n";
246
  }
247
 
 
 
248
  if ( $BPSCustomCodeOptions['bps_customcode_request_methods'] != '' ) {
249
  $bps_secure_request_methods = "\n# CUSTOM CODE REQUEST METHODS FILTERED\n" . htmlspecialchars_decode( $BPSCustomCodeOptions['bps_customcode_request_methods'], ENT_QUOTES)."\n\n";
250
  } else {
 
 
 
 
 
 
 
 
 
 
 
251
  $bps_secure_request_methods = "\n# REQUEST METHODS FILTERED
252
  # If you want to allow HEAD Requests use BPS Custom Code and copy
253
  # this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code
258
  RewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]
259
  RewriteRule ^(.*)$ " . $bps_get_wp_root_secure . $bps_plugin_dir . "/bulletproof-security/405.php [L]\n\n";
260
  }
 
261
 
262
  $bps_secure_begin_plugins_skip_rules_text = "# PLUGINS/THEMES AND VARIOUS EXPLOIT FILTER SKIP RULES
263
  # To add plugin/theme skip/bypass rules use BPS Custom Code.
bulletproof-security.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://forum.ait-pro.com/read-me-first/
5
  Text Domain: bulletproof-security
6
  Domain Path: /languages/
7
  Description: <strong>Feature Highlights:</strong> Setup Wizard &bull; MScan Malware Scanner &bull; .htaccess Website Security Protection (Firewalls) &bull; Security Logging|HTTP Error Logging &bull; DB Backup &bull; DB Table Prefix Changer &bull; Login Security & Monitoring &bull; JTC-Lite Login Form Bot Lockout Protection &bull; Idle Session Logout (ISL) &bull; Auth Cookie Expiration (ACE) &bull; UI Theme Skin Changer &bull; System Info: Extensive System, Server and Security Status Information &bull; FrontEnd|BackEnd Maintenance Mode
8
- Version: 3.8
9
  Author: AITpro Website Security
10
  Author URI: https://forum.ait-pro.com/read-me-first/
11
  */
@@ -33,9 +33,9 @@ Author URI: https://forum.ait-pro.com/read-me-first/
33
  // and cannot access the global variables within functions in BPS. Luckily this does not break BPS or WordPress in any way and PHP.net states this is technically not an error.
34
  global $bps_last_version, $bps_version, $aitpro_bullet, $bps_topDiv, $bps_bottomDiv, $bpsPro_remote_addr, $bpsPro_http_client_ip, $bpsPro_http_forwarded, $bpsPro_http_x_forwarded_for, $bpsPro_http_x_cluster_client_ip, $bps_wpcontent_dir, $bps_plugin_dir;
35
 
36
- define( 'BULLETPROOF_VERSION', '3.8' );
37
- $bps_last_version = '3.7';
38
- $bps_version = '3.8';
39
  $aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
40
  // Top div & bottom div
41
  $bps_topDiv = '<div id="message" class="updated" style="background-color:#dfecf2;border:1px solid #999;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><p>';
5
  Text Domain: bulletproof-security
6
  Domain Path: /languages/
7
  Description: <strong>Feature Highlights:</strong> Setup Wizard &bull; MScan Malware Scanner &bull; .htaccess Website Security Protection (Firewalls) &bull; Security Logging|HTTP Error Logging &bull; DB Backup &bull; DB Table Prefix Changer &bull; Login Security & Monitoring &bull; JTC-Lite Login Form Bot Lockout Protection &bull; Idle Session Logout (ISL) &bull; Auth Cookie Expiration (ACE) &bull; UI Theme Skin Changer &bull; System Info: Extensive System, Server and Security Status Information &bull; FrontEnd|BackEnd Maintenance Mode
8
+ Version: 3.9
9
  Author: AITpro Website Security
10
  Author URI: https://forum.ait-pro.com/read-me-first/
11
  */
33
  // and cannot access the global variables within functions in BPS. Luckily this does not break BPS or WordPress in any way and PHP.net states this is technically not an error.
34
  global $bps_last_version, $bps_version, $aitpro_bullet, $bps_topDiv, $bps_bottomDiv, $bpsPro_remote_addr, $bpsPro_http_client_ip, $bpsPro_http_forwarded, $bpsPro_http_x_forwarded_for, $bpsPro_http_x_cluster_client_ip, $bps_wpcontent_dir, $bps_plugin_dir;
35
 
36
+ define( 'BULLETPROOF_VERSION', '3.9' );
37
+ $bps_last_version = '3.8';
38
+ $bps_version = '3.9';
39
  $aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
40
  // Top div & bottom div
41
  $bps_topDiv = '<div id="message" class="updated" style="background-color:#dfecf2;border:1px solid #999;-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);-moz-box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);box-shadow: 3px 3px 5px -1px rgba(153,153,153,0.7);"><p>';
includes/functions.php CHANGED
@@ -424,6 +424,8 @@ switch ( $bps_version ) {
424
 
425
  // .53: Create new block of Request Methods Filtered code & help text.
426
  // .53.1: Old RMF Code exists: Conditional host check added to create either R=405 for Go Daddy or dumbed down code for all other hosts.
 
 
427
  if ( preg_match( $pattern18, $stringReplace, $matches ) && preg_match( '/secureserver\.net/', $hostaddress, $matches ) ) {
428
  $stringReplace = preg_replace( $pattern18, "# REQUEST METHODS FILTERED\n# If you want to allow HEAD Requests use BPS Custom Code and copy\n# this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code\n# text box: CUSTOM CODE REQUEST METHODS FILTERED.\n# See the CUSTOM CODE REQUEST METHODS FILTERED help text for additional steps.\nRewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK|DEBUG) [NC]\nRewriteRule ^(.*)$ - [F]\nRewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]\nRewriteRule ^(.*)$ - [R=405,L]", $stringReplace);
429
  } elseif ( preg_match( $pattern18, $stringReplace, $matches ) && ! preg_match( '/secureserver\.net/', $hostaddress, $matches ) ) {
@@ -440,7 +442,8 @@ switch ( $bps_version ) {
440
  if ( preg_match( $pattern20, $stringReplace, $matches ) ) {
441
  $stringReplace = preg_replace( $pattern20, "RewriteRule ^(.*)$ " . $bps_get_wp_root_secure . $bps_plugin_dir . "/bulletproof-security/405.php [L]", $stringReplace);
442
  }
443
-
 
444
  // 2.0: Add additional https scheme conditions to 3 htaccess security rules and combine 2 rules into 1 rule.
445
  if ( preg_match( $pattern21, $stringReplace, $matches ) ) {
446
  $stringReplace = preg_replace( $pattern21, "RewriteCond %{THE_REQUEST} (\?|\*|%2a)+(%20+|\\\\\s+|%20+\\\\\s+|\\\\\s+%20+|\\\\\s+%20+\\\\\s+)(http|https)(:/|/) [NC,OR]", $stringReplace);
424
 
425
  // .53: Create new block of Request Methods Filtered code & help text.
426
  // .53.1: Old RMF Code exists: Conditional host check added to create either R=405 for Go Daddy or dumbed down code for all other hosts.
427
+ // 3.9: removing this RMF cleanup code. Only dumbed down RMF code is created now.
428
+ /*
429
  if ( preg_match( $pattern18, $stringReplace, $matches ) && preg_match( '/secureserver\.net/', $hostaddress, $matches ) ) {
430
  $stringReplace = preg_replace( $pattern18, "# REQUEST METHODS FILTERED\n# If you want to allow HEAD Requests use BPS Custom Code and copy\n# this entire REQUEST METHODS FILTERED section of code to this BPS Custom Code\n# text box: CUSTOM CODE REQUEST METHODS FILTERED.\n# See the CUSTOM CODE REQUEST METHODS FILTERED help text for additional steps.\nRewriteCond %{REQUEST_METHOD} ^(TRACE|DELETE|TRACK|DEBUG) [NC]\nRewriteRule ^(.*)$ - [F]\nRewriteCond %{REQUEST_METHOD} ^(HEAD) [NC]\nRewriteRule ^(.*)$ - [R=405,L]", $stringReplace);
431
  } elseif ( preg_match( $pattern18, $stringReplace, $matches ) && ! preg_match( '/secureserver\.net/', $hostaddress, $matches ) ) {
442
  if ( preg_match( $pattern20, $stringReplace, $matches ) ) {
443
  $stringReplace = preg_replace( $pattern20, "RewriteRule ^(.*)$ " . $bps_get_wp_root_secure . $bps_plugin_dir . "/bulletproof-security/405.php [L]", $stringReplace);
444
  }
445
+ */
446
+
447
  // 2.0: Add additional https scheme conditions to 3 htaccess security rules and combine 2 rules into 1 rule.
448
  if ( preg_match( $pattern21, $stringReplace, $matches ) ) {
449
  $stringReplace = preg_replace( $pattern21, "RewriteCond %{THE_REQUEST} (\?|\*|%2a)+(%20+|\\\\\s+|%20+\\\\\s+|\\\\\s+%20+|\\\\\s+%20+\\\\\s+)(http|https)(:/|/) [NC,OR]", $stringReplace);
includes/general-functions.php CHANGED
@@ -668,17 +668,19 @@ $file = ABSPATH . '.htaccess';
668
  // 2.3: Revert: Remove R from the dumbed downed Request Methods Filtered 405 htaccess code in Root Custom Code.
669
  // Add additional https scheme conditions to 3 htaccess security rules and combine 2 rules into 1 rule in Root and wp-admin Custom Code.
670
  // Note: htmlspecialchars_decode() is not necessary.
 
671
  function bpsPro_upgrade_CC_automatic_fix() {
672
 
673
  $CC_Options_root = get_option('bulletproof_security_options_customcode');
674
  $bps_get_wp_root_secure = bps_wp_get_root_folder();
675
  $bps_plugin_dir = str_replace( ABSPATH, '', WP_PLUGIN_DIR );
676
- $pattern1 = '/RewriteRule\s\^\(\.\*\)\$(.*)\/bulletproof-security\/405\.php\s\[R,L\]/';
677
  $pattern2 = '/RewriteCond\s%\{THE_REQUEST\}\s\(\\\?.*%2a\)\+\(%20.*HTTP\(:\/.*\[NC,OR\]/';
678
  $pattern3 = '/RewriteCond\s%\{QUERY_STRING\}\s\[a-zA-Z0-9_\]=http:\/\/\s\[NC,OR\]/';
679
  $pattern4 = '/RewriteCond\s%\{QUERY_STRING\}\s\^\(\.\*\)cPath=http:\/\/\(\.\*\)\$\s\[NC,OR\]/';
680
  $pattern5 = '/RewriteCond\s%\{QUERY_STRING\}\shttp\\\:\s\[NC,OR\](.*\s*){1}.*RewriteCond\s%\{QUERY_STRING\}\shttps\\\:\s\[NC,OR\]/';
681
 
 
682
  if ( $CC_Options_root['bps_customcode_bpsqse'] != '' ) {
683
 
684
  if ( preg_match( $pattern1, $CC_Options_root['bps_customcode_request_methods'] ) ) {
@@ -688,6 +690,7 @@ function bpsPro_upgrade_CC_automatic_fix() {
688
  } else {
689
  $bps_customcode_request_methods = $CC_Options_root['bps_customcode_request_methods'];
690
  }
 
691
 
692
  if ( $CC_Options_root['bps_customcode_bpsqse'] != '' ) {
693
 
@@ -742,7 +745,7 @@ function bpsPro_upgrade_CC_automatic_fix() {
742
  'bps_customcode_deny_dot_folders' => $CC_Options_root['bps_customcode_deny_dot_folders'],
743
  'bps_customcode_admin_includes' => $CC_Options_root['bps_customcode_admin_includes'],
744
  'bps_customcode_wp_rewrite_start' => $CC_Options_root['bps_customcode_wp_rewrite_start'],
745
- 'bps_customcode_request_methods' => $bps_customcode_request_methods,
746
  'bps_customcode_two' => $CC_Options_root['bps_customcode_two'],
747
  'bps_customcode_timthumb_misc' => $CC_Options_root['bps_customcode_timthumb_misc'],
748
  'bps_customcode_bpsqse' => $bps_customcode_bpsqse_replace,
@@ -761,7 +764,7 @@ function bpsPro_upgrade_CC_automatic_fix() {
761
  'bps_customcode_deny_dot_folders' => $CC_Options_root['bps_customcode_deny_dot_folders'],
762
  'bps_customcode_admin_includes' => $CC_Options_root['bps_customcode_admin_includes'],
763
  'bps_customcode_wp_rewrite_start' => $CC_Options_root['bps_customcode_wp_rewrite_start'],
764
- 'bps_customcode_request_methods' => $bps_customcode_request_methods,
765
  'bps_customcode_two' => $CC_Options_root['bps_customcode_two'],
766
  'bps_customcode_timthumb_misc' => $CC_Options_root['bps_customcode_timthumb_misc'],
767
  'bps_customcode_bpsqse' => $bps_customcode_bpsqse_replace,
668
  // 2.3: Revert: Remove R from the dumbed downed Request Methods Filtered 405 htaccess code in Root Custom Code.
669
  // Add additional https scheme conditions to 3 htaccess security rules and combine 2 rules into 1 rule in Root and wp-admin Custom Code.
670
  // Note: htmlspecialchars_decode() is not necessary.
671
+ // 3.9: removed the obsolete RMF code
672
  function bpsPro_upgrade_CC_automatic_fix() {
673
 
674
  $CC_Options_root = get_option('bulletproof_security_options_customcode');
675
  $bps_get_wp_root_secure = bps_wp_get_root_folder();
676
  $bps_plugin_dir = str_replace( ABSPATH, '', WP_PLUGIN_DIR );
677
+ //$pattern1 = '/RewriteRule\s\^\(\.\*\)\$(.*)\/bulletproof-security\/405\.php\s\[R,L\]/';
678
  $pattern2 = '/RewriteCond\s%\{THE_REQUEST\}\s\(\\\?.*%2a\)\+\(%20.*HTTP\(:\/.*\[NC,OR\]/';
679
  $pattern3 = '/RewriteCond\s%\{QUERY_STRING\}\s\[a-zA-Z0-9_\]=http:\/\/\s\[NC,OR\]/';
680
  $pattern4 = '/RewriteCond\s%\{QUERY_STRING\}\s\^\(\.\*\)cPath=http:\/\/\(\.\*\)\$\s\[NC,OR\]/';
681
  $pattern5 = '/RewriteCond\s%\{QUERY_STRING\}\shttp\\\:\s\[NC,OR\](.*\s*){1}.*RewriteCond\s%\{QUERY_STRING\}\shttps\\\:\s\[NC,OR\]/';
682
 
683
+ /*
684
  if ( $CC_Options_root['bps_customcode_bpsqse'] != '' ) {
685
 
686
  if ( preg_match( $pattern1, $CC_Options_root['bps_customcode_request_methods'] ) ) {
690
  } else {
691
  $bps_customcode_request_methods = $CC_Options_root['bps_customcode_request_methods'];
692
  }
693
+ */
694
 
695
  if ( $CC_Options_root['bps_customcode_bpsqse'] != '' ) {
696
 
745
  'bps_customcode_deny_dot_folders' => $CC_Options_root['bps_customcode_deny_dot_folders'],
746
  'bps_customcode_admin_includes' => $CC_Options_root['bps_customcode_admin_includes'],
747
  'bps_customcode_wp_rewrite_start' => $CC_Options_root['bps_customcode_wp_rewrite_start'],
748
+ 'bps_customcode_request_methods' => $CC_Options_root['bps_customcode_request_methods'],
749
  'bps_customcode_two' => $CC_Options_root['bps_customcode_two'],
750
  'bps_customcode_timthumb_misc' => $CC_Options_root['bps_customcode_timthumb_misc'],
751
  'bps_customcode_bpsqse' => $bps_customcode_bpsqse_replace,
764
  'bps_customcode_deny_dot_folders' => $CC_Options_root['bps_customcode_deny_dot_folders'],
765
  'bps_customcode_admin_includes' => $CC_Options_root['bps_customcode_admin_includes'],
766
  'bps_customcode_wp_rewrite_start' => $CC_Options_root['bps_customcode_wp_rewrite_start'],
767
+ 'bps_customcode_request_methods' => $CC_Options_root['bps_customcode_request_methods'],
768
  'bps_customcode_two' => $CC_Options_root['bps_customcode_two'],
769
  'bps_customcode_timthumb_misc' => $CC_Options_root['bps_customcode_timthumb_misc'],
770
  'bps_customcode_bpsqse' => $bps_customcode_bpsqse_replace,
includes/hud-dismiss-functions.php CHANGED
@@ -8,6 +8,7 @@ if ( ! function_exists ('add_action') ) {
8
 
9
  // HUD Alerts in WP Dashboard
10
  // Reset|Recheck Dismiss Notices is in core-forms.php
 
11
  function bps_HUD_WP_Dashboard() {
12
 
13
  if ( current_user_can('manage_options') ) {
@@ -16,7 +17,7 @@ function bps_HUD_WP_Dashboard() {
16
  bps_check_permalinks_error();
17
  bps_check_iis_supports_permalinks();
18
  bps_hud_check_bpsbackup();
19
- bpsPro_bonus_custom_code_dismiss_notices();
20
  bps_hud_PhpiniHandlerCheck();
21
  bps_hud_check_sucuri();
22
  bps_hud_check_wordpress_firewall2();
@@ -27,7 +28,7 @@ function bps_HUD_WP_Dashboard() {
27
  bpsPro_hud_mscan_notice();
28
  bpsPro_hud_jtc_lite_notice();
29
  bpsPro_hud_rate_notice();
30
- bpsPro_hud_mod_security_check();
31
  bpsPro_hud_gdpr_compliance();
32
  //bps_hud_check_public_username();
33
  }
8
 
9
  // HUD Alerts in WP Dashboard
10
  // Reset|Recheck Dismiss Notices is in core-forms.php
11
+ ## 3.9: Commented out the Bonus Custom Code Dismiss Notice function and ModSecurity Check function.
12
  function bps_HUD_WP_Dashboard() {
13
 
14
  if ( current_user_can('manage_options') ) {
17
  bps_check_permalinks_error();
18
  bps_check_iis_supports_permalinks();
19
  bps_hud_check_bpsbackup();
20
+ //bpsPro_bonus_custom_code_dismiss_notices();
21
  bps_hud_PhpiniHandlerCheck();
22
  bps_hud_check_sucuri();
23
  bps_hud_check_wordpress_firewall2();
28
  bpsPro_hud_mscan_notice();
29
  bpsPro_hud_jtc_lite_notice();
30
  bpsPro_hud_rate_notice();
31
+ //bpsPro_hud_mod_security_check();
32
  bpsPro_hud_gdpr_compliance();
33
  //bps_hud_check_public_username();
34
  }
languages/bulletproof-security.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: bulletproof-security\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2019-12-02 14:57-0800\n"
7
  "PO-Revision-Date: 2015-06-20 19:13-0800\n"
8
  "Last-Translator: Ed Alexander <edward@ait-pro.com>\n"
9
  "Language-Team: AITpro <info@ait-pro.com>\n"
@@ -469,8 +469,8 @@ msgstr ""
469
  #: admin/core/core-forms.php:196 admin/core/core-forms.php:246
470
  #: admin/core/core-forms.php:280 admin/core/core-forms.php:330
471
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
472
- #: admin/core/core-htaccess-code.php:437 admin/core/core-htaccess-code.php:521
473
- #: admin/core/core-htaccess-code.php:590 admin/core/core-htaccess-code.php:674
474
  #: admin/core/core.php:778 admin/core/core.php:862 admin/core/core.php:970
475
  #: admin/core/core.php:1054 admin/core/core.php:1147
476
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
@@ -484,8 +484,8 @@ msgstr ""
484
  #: admin/core/core-forms.php:196 admin/core/core-forms.php:246
485
  #: admin/core/core-forms.php:280 admin/core/core-forms.php:330
486
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
487
- #: admin/core/core-htaccess-code.php:437 admin/core/core-htaccess-code.php:521
488
- #: admin/core/core-htaccess-code.php:590 admin/core/core-htaccess-code.php:674
489
  #: admin/core/core.php:778 admin/core/core.php:862 admin/core/core.php:970
490
  #: admin/core/core.php:1054 admin/core/core.php:1147
491
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
@@ -1730,49 +1730,49 @@ msgid ""
1730
  "problem click"
1731
  msgstr ""
1732
 
1733
- #: admin/core/core-htaccess-code.php:437 admin/core/core-htaccess-code.php:521
1734
- #: admin/core/core-htaccess-code.php:590 admin/core/core-htaccess-code.php:674
1735
  #: admin/core/core.php:1054
1736
  msgid "htaccess Files Disabled: Root htaccess file writing is disabled. "
1737
  msgstr ""
1738
 
1739
- #: admin/core/core-htaccess-code.php:459 admin/core/core-htaccess-code.php:612
1740
  #: admin/core/core.php:909
1741
  msgid "Failed to copy your Custom default.htaccess file: "
1742
  msgstr ""
1743
 
1744
- #: admin/core/core-htaccess-code.php:459 admin/core/core-htaccess-code.php:612
1745
  #: admin/core/core.php:909
1746
  msgid " to: "
1747
  msgstr ""
1748
 
1749
- #: admin/core/core-htaccess-code.php:459 admin/core/core-htaccess-code.php:612
1750
  msgid " Check the folder permissions or Ownership for these folders."
1751
  msgstr ""
1752
 
1753
- #: admin/core/core-htaccess-code.php:470 admin/core/core-htaccess-code.php:623
1754
  msgid ""
1755
  "Root Folder BulletProof Mode deactivated successfully. Your Custom default."
1756
  "htaccess is currently in use."
1757
  msgstr ""
1758
 
1759
- #: admin/core/core-htaccess-code.php:494 admin/core/core-htaccess-code.php:647
1760
  msgid ""
1761
  "Failed to deactivate Root Folder BulletProof Mode. Unable to Copy the "
1762
  "default.htaccess file to your root folder."
1763
  msgstr ""
1764
 
1765
- #: admin/core/core-htaccess-code.php:505 admin/core/core-htaccess-code.php:658
1766
  msgid "Root Folder BulletProof Mode deactivated successfully."
1767
  msgstr ""
1768
 
1769
- #: admin/core/core-htaccess-code.php:550 admin/core/core-htaccess-code.php:703
1770
  msgid ""
1771
  "Failed to activate Root Folder BulletProof Mode protection. Your website is "
1772
  "NOT protected."
1773
  msgstr ""
1774
 
1775
- #: admin/core/core-htaccess-code.php:561 admin/core/core-htaccess-code.php:714
1776
  msgid "Root Folder BulletProof Mode protection activated successfully."
1777
  msgstr ""
1778
 
@@ -2382,10 +2382,10 @@ msgstr ""
2382
  #: admin/system-info/system-info.php:784 admin/system-info/system-info.php:792
2383
  #: admin/system-info/system-info.php:800 admin/system-info/system-info.php:808
2384
  #: admin/system-info/system-info.php:816 admin/system-info/system-info.php:824
2385
- #: admin/system-info/system-info.php:843 includes/functions.php:569
2386
- #: includes/functions.php:754 includes/functions.php:922
2387
- #: includes/functions.php:965 includes/functions.php:1013
2388
- #: includes/functions.php:1057
2389
  msgid "On"
2390
  msgstr ""
2391
 
@@ -2407,8 +2407,8 @@ msgstr ""
2407
  #: admin/system-info/system-info.php:803 admin/system-info/system-info.php:811
2408
  #: admin/system-info/system-info.php:819 admin/system-info/system-info.php:827
2409
  #: admin/system-info/system-info.php:835 admin/system-info/system-info.php:846
2410
- #: includes/functions.php:927 includes/functions.php:970
2411
- #: includes/functions.php:1019 includes/functions.php:1063
2412
  #: includes/general-functions.php:285 includes/general-functions.php:300
2413
  msgid "Off"
2414
  msgstr ""
@@ -5702,8 +5702,8 @@ msgid ""
5702
  msgstr ""
5703
 
5704
  #: admin/login/lsm-help-text.php:10 admin/maintenance/maintenance.php:528
5705
- #: includes/hud-dismiss-functions.php:345
5706
- #: includes/hud-dismiss-functions.php:388
5707
  msgid "CAUTION: "
5708
  msgstr ""
5709
 
@@ -6771,9 +6771,9 @@ msgstr ""
6771
 
6772
  #: admin/maintenance/maintenance.php:376 admin/maintenance/maintenance.php:396
6773
  #: admin/wizard/wizard.php:176 includes/general-functions.php:509
6774
- #: includes/hud-dismiss-functions.php:345
6775
- #: includes/hud-dismiss-functions.php:388
6776
- #: includes/hud-dismiss-functions.php:493
6777
  msgid "Click Here"
6778
  msgstr ""
6779
 
@@ -7477,7 +7477,7 @@ msgid ""
7477
  "malware scanners: "
7478
  msgstr ""
7479
 
7480
- #: admin/mscan/mscan.php:139 includes/hud-dismiss-functions.php:677
7481
  msgid "MScan Malware Scanner Guide"
7482
  msgstr ""
7483
 
@@ -10554,31 +10554,31 @@ msgid ""
10554
  "cannot be created. Root Folder BulletProof Mode has NOT been activated."
10555
  msgstr ""
10556
 
10557
- #: admin/wizard/wizard-functions.php:111 admin/wizard/wizard-functions.php:635
10558
- #: admin/wizard/wizard-functions.php:728
10559
  msgid ""
10560
  "If your Server configuration is DSO you must first make some one-time manual "
10561
  "changes to your website before running the Setup Wizard. Please click this "
10562
  "Forum Link for instructions: "
10563
  msgstr ""
10564
 
10565
- #: admin/wizard/wizard-functions.php:111 admin/wizard/wizard-functions.php:635
10566
- #: admin/wizard/wizard-functions.php:728 admin/wizard/wizard.php:237
10567
  #: admin/wizard/wizard.php:304 admin/wizard/wizard.php:310
10568
  #: admin/wizard/wizard.php:316 admin/wizard/wizard.php:322
10569
  #: admin/wizard/wizard.php:328
10570
  msgid "DSO Setup Steps"
10571
  msgstr ""
10572
 
10573
- #: admin/wizard/wizard-functions.php:514
10574
  msgid " Root .htaccess File backup Successful! "
10575
  msgstr ""
10576
 
10577
- #: admin/wizard/wizard-functions.php:524
10578
  msgid "Error: PHP/php.ini handler htaccess code check"
10579
  msgstr ""
10580
 
10581
- #: admin/wizard/wizard-functions.php:524
10582
  msgid ""
10583
  "PHP/php.ini handler htaccess code was found in your root .htaccess file, but "
10584
  "was NOT found in BPS Custom Code. A new root .htaccess file was NOT created "
@@ -10586,85 +10586,85 @@ msgid ""
10586
  "Link "
10587
  msgstr ""
10588
 
10589
- #: admin/wizard/wizard-functions.php:524
10590
  msgid "Add PHP/php.ini handler htaccess code to BPS Custom Code"
10591
  msgstr ""
10592
 
10593
- #: admin/wizard/wizard-functions.php:524
10594
  msgid ""
10595
  " for instructions on how to copy your PHP/php.ini handler htaccess code to "
10596
  "BPS Custom Code."
10597
  msgstr ""
10598
 
10599
- #: admin/wizard/wizard-functions.php:563 admin/wizard/wizard-functions.php:592
10600
  msgid ""
10601
  "Root .htaccess File writing completed. File Locked with 404 file permissions."
10602
  msgstr ""
10603
 
10604
- #: admin/wizard/wizard-functions.php:567 admin/wizard/wizard-functions.php:596
10605
  msgid ""
10606
  "Root .htaccess File writing completed. File Locked with 444 file permissions."
10607
  msgstr ""
10608
 
10609
- #: admin/wizard/wizard-functions.php:614 admin/wizard/wizard-functions.php:623
10610
- #: admin/wizard/wizard-functions.php:822 admin/wizard/wizard.php:644
10611
  #: admin/wizard/wizard.php:682 admin/wizard/wizard.php:740
10612
  #: admin/wizard/wizard.php:780 admin/wizard/wizard.php:829
10613
- #: includes/general-functions.php:991
10614
  msgid " DB Option created or updated Successfully!"
10615
  msgstr ""
10616
 
10617
- #: admin/wizard/wizard-functions.php:633
10618
  msgid ""
10619
  "The wpadmin-secure.htaccess wp-admin Master htaccess file was created "
10620
  "successfully."
10621
  msgstr ""
10622
 
10623
- #: admin/wizard/wizard-functions.php:633
10624
  msgid "wp-admin Folder BulletProof Mode activated successfully."
10625
  msgstr ""
10626
 
10627
- #: admin/wizard/wizard-functions.php:635
10628
  msgid ""
10629
  "Error: The wpadmin-secure.htaccess wp-admin Master htaccess file and wp-"
10630
  "admin .htaccess file cannot be created. wp-admin Folder BulletProof Mode has "
10631
  "NOT been activated."
10632
  msgstr ""
10633
 
10634
- #: admin/wizard/wizard-functions.php:641
10635
  msgid ""
10636
  "Go Daddy Managed WordPress Hosting option is set to Yes or Enable|Disable wp-"
10637
  "admin BulletProof Mode option is set to disabled. GDMW hosting does not "
10638
  "allow wp-admin htaccess files."
10639
  msgstr ""
10640
 
10641
- #: admin/wizard/wizard-functions.php:665
10642
  msgid " wp-admin .htaccess File backup Successful!"
10643
  msgstr ""
10644
 
10645
- #: admin/wizard/wizard-functions.php:726
10646
  msgid "The default.htaccess Master htaccess file was created successfully."
10647
  msgstr ""
10648
 
10649
- #: admin/wizard/wizard-functions.php:728
10650
  msgid "Error: The default.htaccess Master htaccess file cannot be created."
10651
  msgstr ""
10652
 
10653
- #: admin/wizard/wizard-functions.php:823 admin/wizard/wizard.php:459
10654
  msgid " Folder created Successfully!"
10655
  msgstr ""
10656
 
10657
- #: admin/wizard/wizard-functions.php:920
10658
  msgid ""
10659
  "Security Log User Agent Filter Check Successful! 0 User Agent Filters to "
10660
  "update."
10661
  msgstr ""
10662
 
10663
- #: admin/wizard/wizard-functions.php:930
10664
  msgid "Security Log User Agent Filter "
10665
  msgstr ""
10666
 
10667
- #: admin/wizard/wizard-functions.php:930
10668
  msgid " created or updated Successfully!"
10669
  msgstr ""
10670
 
@@ -10686,7 +10686,7 @@ msgid ""
10686
  "file, but was NOT found in BPS Custom Code. "
10687
  msgstr ""
10688
 
10689
- #: admin/wizard/wizard.php:176 includes/hud-dismiss-functions.php:345
10690
  msgid ""
10691
  " for the steps to fix this Wordfence problem before running the Setup Wizard."
10692
  msgstr ""
@@ -10773,7 +10773,7 @@ msgid ""
10773
  "maximum memory limit setting allowed by your Host."
10774
  msgstr ""
10775
 
10776
- #: admin/wizard/wizard.php:267 includes/functions.php:1226
10777
  msgid ""
10778
  "mod_authz_core is Loaded|Order, Allow, Deny directives are supported|BC: Yes|"
10779
  "IfModule: Yes"
@@ -10785,7 +10785,7 @@ msgid ""
10785
  "htaccess files will be created."
10786
  msgstr ""
10787
 
10788
- #: admin/wizard/wizard.php:276 includes/functions.php:1211
10789
  msgid ""
10790
  "mod_access_compat is Loaded|Order, Allow, Deny directives are supported|"
10791
  "IfModule: No"
@@ -11376,13 +11376,13 @@ msgid ""
11376
  "can disregard this Alert."
11377
  msgstr ""
11378
 
11379
- #: includes/functions.php:345 includes/functions.php:580
11380
- #: includes/functions.php:647 includes/hud-autofix-setup.php:69
11381
- #: includes/hud-dismiss-functions.php:544
11382
  msgid "Go to the "
11383
  msgstr ""
11384
 
11385
- #: includes/functions.php:345 includes/functions.php:580
11386
  msgid " and click the Root Folder BulletProof Mode Activate button."
11387
  msgstr ""
11388
 
@@ -11402,7 +11402,7 @@ msgid ""
11402
  "file."
11403
  msgstr ""
11404
 
11405
- #: includes/functions.php:383 includes/functions.php:669
11406
  msgid ""
11407
  " to go to the BPS Setup Wizard page and click the Setup Wizard button to "
11408
  "setup the BPS plugin again."
@@ -11424,15 +11424,15 @@ msgid ""
11424
  msgstr ""
11425
 
11426
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11427
- #: includes/hud-dismiss-functions.php:67 includes/hud-dismiss-functions.php:101
11428
- #: includes/hud-dismiss-functions.php:134
11429
- #: includes/hud-dismiss-functions.php:345
11430
- #: includes/hud-dismiss-functions.php:350
11431
- #: includes/hud-dismiss-functions.php:388
11432
- #: includes/hud-dismiss-functions.php:393
11433
- #: includes/hud-dismiss-functions.php:451
11434
- #: includes/hud-dismiss-functions.php:493
11435
- #: includes/hud-dismiss-functions.php:649
11436
  msgid ""
11437
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
11438
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Custom "
@@ -11440,78 +11440,78 @@ msgid ""
11440
  msgstr ""
11441
 
11442
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11443
- #: includes/hud-dismiss-functions.php:67 includes/hud-dismiss-functions.php:101
11444
- #: includes/hud-dismiss-functions.php:134
11445
- #: includes/hud-dismiss-functions.php:199
11446
- #: includes/hud-dismiss-functions.php:214
11447
- #: includes/hud-dismiss-functions.php:220
11448
- #: includes/hud-dismiss-functions.php:226
11449
- #: includes/hud-dismiss-functions.php:232
11450
- #: includes/hud-dismiss-functions.php:246
11451
- #: includes/hud-dismiss-functions.php:252
11452
- #: includes/hud-dismiss-functions.php:257
11453
- #: includes/hud-dismiss-functions.php:345
11454
- #: includes/hud-dismiss-functions.php:350
11455
- #: includes/hud-dismiss-functions.php:388
11456
- #: includes/hud-dismiss-functions.php:393
11457
- #: includes/hud-dismiss-functions.php:451
11458
- #: includes/hud-dismiss-functions.php:493
11459
- #: includes/hud-dismiss-functions.php:582
11460
- #: includes/hud-dismiss-functions.php:649
11461
- #: includes/hud-dismiss-functions.php:677
11462
- #: includes/hud-dismiss-functions.php:714
11463
- #: includes/hud-dismiss-functions.php:757
11464
- #: includes/hud-dismiss-functions.php:795
11465
- #: includes/hud-dismiss-functions.php:828
11466
  msgid "Dismiss Notice"
11467
  msgstr ""
11468
 
11469
- #: includes/functions.php:556
11470
  msgid "The BPS Automatic htaccess File Update Completed Successfully!"
11471
  msgstr ""
11472
 
11473
- #: includes/functions.php:569
11474
  msgid "RBM"
11475
  msgstr ""
11476
 
11477
- #: includes/functions.php:580
11478
  msgid ""
11479
  "BPS Alert! Your site does not appear to be protected by BulletProof Security"
11480
  msgstr ""
11481
 
11482
- #: includes/functions.php:647
11483
  msgid ""
11484
  "BPS Alert! An htaccess file was NOT found in your WordPress wp-admin folder"
11485
  msgstr ""
11486
 
11487
- #: includes/functions.php:647
11488
  msgid ""
11489
  "If you have deleted the wp-admin htaccess file for troubleshooting purposes "
11490
  "you can disregard this Alert."
11491
  msgstr ""
11492
 
11493
- #: includes/functions.php:647
11494
  msgid " and click the wp-admin Folder BulletProof Mode Activate button."
11495
  msgstr ""
11496
 
11497
- #: includes/functions.php:669
11498
  msgid ""
11499
  "BPS Alert! Your wp-admin folder may not be protected by BulletProof Security"
11500
  msgstr ""
11501
 
11502
- #: includes/functions.php:669
11503
  msgid ""
11504
  "The BPS version: BULLETPROOF .xx.x WP-ADMIN SECURE .HTACCESS line of code "
11505
  "was not found at the top of your wp-admin htaccess file."
11506
  msgstr ""
11507
 
11508
- #: includes/functions.php:669
11509
  msgid ""
11510
  "The BPS version line of code MUST be at the very top of your wp-admin "
11511
  "htaccess file."
11512
  msgstr ""
11513
 
11514
- #: includes/functions.php:669
11515
  msgid ""
11516
  "Important Note: If you manually added other htaccess code above the BPS "
11517
  "version line of code in your wp-admin htaccess file, you can copy that code "
@@ -11519,127 +11519,127 @@ msgid ""
11519
  "in the BPS wp-admin htaccess file. "
11520
  msgstr ""
11521
 
11522
- #: includes/functions.php:669
11523
  msgid ""
11524
  " to go to the BPS Custom Code page, add your wp-admin custom htaccess code "
11525
  "in an appropriate wp-admin Custom Code text box and click the Save wp-admin "
11526
  "Custom Code button before running the Setup Wizard again."
11527
  msgstr ""
11528
 
11529
- #: includes/functions.php:754
11530
  msgid "WBM"
11531
  msgstr ""
11532
 
11533
- #: includes/functions.php:765
11534
  msgid ""
11535
  "BPS Alert! A valid BPS htaccess file was NOT found in your wp-admin folder"
11536
  msgstr ""
11537
 
11538
- #: includes/functions.php:765
11539
  msgid ""
11540
  "BulletProof Mode for the wp-admin folder should also be activated when you "
11541
  "have BulletProof Mode activated for the Root folder."
11542
  msgstr ""
11543
 
11544
- #: includes/functions.php:927
11545
  msgid "LSM"
11546
  msgstr ""
11547
 
11548
- #: includes/functions.php:970
11549
  msgid "JTC"
11550
  msgstr ""
11551
 
11552
- #: includes/functions.php:1013 includes/functions.php:1019
11553
  msgid "ISL"
11554
  msgstr ""
11555
 
11556
- #: includes/functions.php:1057 includes/functions.php:1063
11557
  msgid "ACE"
11558
  msgstr ""
11559
 
11560
- #: includes/functions.php:1122
11561
  msgid ""
11562
  "Apache Modules|Directives|Backward Compatibility(Yes|No)|IfModule(Yes|No): "
11563
  msgstr ""
11564
 
11565
- #: includes/functions.php:1176
11566
  msgid ""
11567
  "ERROR: wp_remote_get() function is blocked or unable to get the URL path"
11568
  msgstr ""
11569
 
11570
- #: includes/functions.php:1194
11571
  msgid "mod_access_compat and mod_authz_core or mod_rewrite is NOT Loaded"
11572
  msgstr ""
11573
 
11574
- #: includes/functions.php:1204
11575
  msgid ""
11576
  "mod_access_compat is Loaded|Order, Allow, Deny directives are supported|"
11577
  "IfModule: Yes"
11578
  msgstr ""
11579
 
11580
- #: includes/functions.php:1218
11581
  msgid "mod_access_compat is Loaded"
11582
  msgstr ""
11583
 
11584
- #: includes/functions.php:1231
11585
  msgid ""
11586
  "mod_authz_core is Loaded|Order, Allow, Deny directives are NOT supported|BC: "
11587
  "No|IfModule: Yes"
11588
  msgstr ""
11589
 
11590
- #: includes/functions.php:1236
11591
  msgid "mod_authz_core is Loaded|IfModule: No"
11592
  msgstr ""
11593
 
11594
- #: includes/functions.php:1241
11595
  msgid "mod_authz_core is NOT Loaded|IfModule: Yes"
11596
  msgstr ""
11597
 
11598
- #: includes/functions.php:1247
11599
  msgid "mod_authz_core is NOT Loaded"
11600
  msgstr ""
11601
 
11602
- #: includes/functions.php:1254
11603
  msgid ""
11604
  "mod_authz_host is Loaded|Order, Allow, Deny directives are supported|BC: Yes|"
11605
  "IfModule: Yes"
11606
  msgstr ""
11607
 
11608
- #: includes/functions.php:1259
11609
  msgid ""
11610
  "mod_authz_host is Loaded|Order, Allow, Deny directives are NOT supported|BC: "
11611
  "No|IfModule: Yes"
11612
  msgstr ""
11613
 
11614
- #: includes/functions.php:1264
11615
  msgid "mod_authz_host is Loaded|IfModule: No"
11616
  msgstr ""
11617
 
11618
- #: includes/functions.php:1269
11619
  msgid "mod_authz_host is NOT Loaded|IfModule: Yes"
11620
  msgstr ""
11621
 
11622
- #: includes/functions.php:1274
11623
  msgid "mod_authz_host is NOT Loaded"
11624
  msgstr ""
11625
 
11626
- #: includes/functions.php:1281
11627
  msgid "mod_rewrite Module is Loaded"
11628
  msgstr ""
11629
 
11630
- #: includes/functions.php:1286
11631
  msgid "mod_rewrite Inconclusive: Status is not 200, 301, 302, 403 or 404"
11632
  msgstr ""
11633
 
11634
- #: includes/functions.php:1315
11635
  msgid "mod_security Module is Loaded|Enabled"
11636
  msgstr ""
11637
 
11638
- #: includes/functions.php:1318
11639
  msgid "mod_security2 Module is Loaded|Enabled"
11640
  msgstr ""
11641
 
11642
- #: includes/functions.php:1330
11643
  msgid "mod_security Module is not Loaded|Enabled"
11644
  msgstr ""
11645
 
@@ -11899,7 +11899,7 @@ msgid ""
11899
  "file."
11900
  msgstr ""
11901
 
11902
- #: includes/general-functions.php:992
11903
  msgid " Hosting Account Root Folder Option setup or updated Successfully!"
11904
  msgstr ""
11905
 
@@ -12641,7 +12641,7 @@ msgid ""
12641
  msgstr ""
12642
 
12643
  #: includes/hud-autofix-whitelist.php:761
12644
- #: includes/hud-dismiss-functions.php:828
12645
  msgid "Click this "
12646
  msgstr ""
12647
 
@@ -12673,390 +12673,390 @@ msgstr ""
12673
  msgid "No Plugin or Theme AutoFix Custom Code Whitelist Rules were found"
12674
  msgstr ""
12675
 
12676
- #: includes/hud-dismiss-functions.php:45
12677
  msgid ""
12678
  "WARNING! BPS requires at least PHP5 to function correctly. Your PHP version "
12679
  "is: "
12680
  msgstr ""
12681
 
12682
- #: includes/hud-dismiss-functions.php:45
12683
  msgid "BPS Guide - PHP5 Solution"
12684
  msgstr ""
12685
 
12686
- #: includes/hud-dismiss-functions.php:45
12687
  msgid ""
12688
  "The BPS Guide will open in a new browser window. You will not be directed "
12689
  "away from your WordPress Dashboard."
12690
  msgstr ""
12691
 
12692
- #: includes/hud-dismiss-functions.php:67
12693
  msgid ""
12694
  "WARNING! BPS has detected that Safe Mode is set to On in your php.ini file."
12695
  msgstr ""
12696
 
12697
- #: includes/hud-dismiss-functions.php:67
12698
  msgid ""
12699
  "If you see errors that BPS was unable to automatically create the backup "
12700
  "folders this is probably the reason why."
12701
  msgstr ""
12702
 
12703
- #: includes/hud-dismiss-functions.php:101
12704
  msgid "HUD Check: Custom Permalinks are NOT being used."
12705
  msgstr ""
12706
 
12707
- #: includes/hud-dismiss-functions.php:101
12708
  msgid "It is recommended that you use Custom Permalinks: "
12709
  msgstr ""
12710
 
12711
- #: includes/hud-dismiss-functions.php:101
12712
  msgid "How to setup Custom Permalinks"
12713
  msgstr ""
12714
 
12715
- #: includes/hud-dismiss-functions.php:134
12716
  msgid ""
12717
  "WARNING! BPS has detected that your Server is a Windows IIS Server that does "
12718
  "not support htaccess rewriting."
12719
  msgstr ""
12720
 
12721
- #: includes/hud-dismiss-functions.php:134
12722
  msgid "Do NOT activate BulletProof Modes unless you know what you are doing."
12723
  msgstr ""
12724
 
12725
- #: includes/hud-dismiss-functions.php:134
12726
  msgid "Your Server Type is: "
12727
  msgstr ""
12728
 
12729
- #: includes/hud-dismiss-functions.php:134
12730
  msgid "WordPress Codex - Using Permalinks - see IIS section"
12731
  msgstr ""
12732
 
12733
- #: includes/hud-dismiss-functions.php:157
12734
- #: includes/hud-dismiss-functions.php:162
12735
  msgid "WARNING! BPS was unable to automatically create the /"
12736
  msgstr ""
12737
 
12738
- #: includes/hud-dismiss-functions.php:157
12739
  msgid "/bps-backup folder."
12740
  msgstr ""
12741
 
12742
- #: includes/hud-dismiss-functions.php:157
12743
- #: includes/hud-dismiss-functions.php:162
12744
  msgid "You will need to create the /"
12745
  msgstr ""
12746
 
12747
- #: includes/hud-dismiss-functions.php:157
12748
  msgid ""
12749
  "/bps-backup folder manually via FTP. The folder permissions for the bps-"
12750
  "backup folder need to be set to 755 in order to successfully perform "
12751
  "permanent online backups."
12752
  msgstr ""
12753
 
12754
- #: includes/hud-dismiss-functions.php:157
12755
- #: includes/hud-dismiss-functions.php:162
12756
  msgid "To remove this message permanently click "
12757
  msgstr ""
12758
 
12759
- #: includes/hud-dismiss-functions.php:157
12760
- #: includes/hud-dismiss-functions.php:162
12761
  msgid "here."
12762
  msgstr ""
12763
 
12764
- #: includes/hud-dismiss-functions.php:162
12765
  msgid "/bps-backup/master-backups folder."
12766
  msgstr ""
12767
 
12768
- #: includes/hud-dismiss-functions.php:162
12769
  msgid ""
12770
  "/bps-backup/master-backups folder manually via FTP. The folder permissions "
12771
  "for the master-backups folder need to be set to 755 in order to successfully "
12772
  "perform permanent online backups."
12773
  msgstr ""
12774
 
12775
- #: includes/hud-dismiss-functions.php:196
12776
- #: includes/hud-dismiss-functions.php:208
12777
  msgid "Bonus Custom Code:"
12778
  msgstr ""
12779
 
12780
- #: includes/hud-dismiss-functions.php:196
12781
- #: includes/hud-dismiss-functions.php:208
12782
  msgid ""
12783
  "Click the links below to get Bonus Custom Code or click the Dismiss Notice "
12784
  "links or click this "
12785
  msgstr ""
12786
 
12787
- #: includes/hud-dismiss-functions.php:196
12788
- #: includes/hud-dismiss-functions.php:208
12789
  msgid "Dismiss All Notices"
12790
  msgstr ""
12791
 
12792
- #: includes/hud-dismiss-functions.php:196
12793
- #: includes/hud-dismiss-functions.php:208
12794
  msgid ""
12795
  " link. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices "
12796
  "button on the Custom Code page."
12797
  msgstr ""
12798
 
12799
- #: includes/hud-dismiss-functions.php:199
12800
- #: includes/hud-dismiss-functions.php:214
12801
- #: includes/hud-dismiss-functions.php:220
12802
- #: includes/hud-dismiss-functions.php:226
12803
- #: includes/hud-dismiss-functions.php:232
12804
- #: includes/hud-dismiss-functions.php:246
12805
- #: includes/hud-dismiss-functions.php:252
12806
- #: includes/hud-dismiss-functions.php:257
12807
  msgid "Get "
12808
  msgstr ""
12809
 
12810
- #: includes/hud-dismiss-functions.php:199
12811
- #: includes/hud-dismiss-functions.php:246
12812
  msgid "POST Request Attack Protection Code"
12813
  msgstr ""
12814
 
12815
- #: includes/hud-dismiss-functions.php:199
12816
- #: includes/hud-dismiss-functions.php:214
12817
- #: includes/hud-dismiss-functions.php:220
12818
- #: includes/hud-dismiss-functions.php:226
12819
- #: includes/hud-dismiss-functions.php:232
12820
- #: includes/hud-dismiss-functions.php:246
12821
- #: includes/hud-dismiss-functions.php:252
12822
- #: includes/hud-dismiss-functions.php:257
12823
  msgid " or "
12824
  msgstr ""
12825
 
12826
- #: includes/hud-dismiss-functions.php:214
12827
  msgid "Brute Force Login Protection Code"
12828
  msgstr ""
12829
 
12830
- #: includes/hud-dismiss-functions.php:220
12831
  msgid "Speed Boost Cache Code"
12832
  msgstr ""
12833
 
12834
- #: includes/hud-dismiss-functions.php:226
12835
  msgid "Author Enumeration BOT Probe Code"
12836
  msgstr ""
12837
 
12838
- #: includes/hud-dismiss-functions.php:232
12839
  msgid "XML-RPC DDoS Protection Code"
12840
  msgstr ""
12841
 
12842
- #: includes/hud-dismiss-functions.php:252
12843
  msgid "Mime Sniffing|Drive-by Download Attack Protection Code"
12844
  msgstr ""
12845
 
12846
- #: includes/hud-dismiss-functions.php:257
12847
  msgid "External iFrame|Clickjacking Protection Code"
12848
  msgstr ""
12849
 
12850
- #: includes/hud-dismiss-functions.php:345
12851
- #: includes/hud-dismiss-functions.php:388
12852
  msgid "HUD Check: Wordfence PHP/php.ini handler htaccess code detected"
12853
  msgstr ""
12854
 
12855
- #: includes/hud-dismiss-functions.php:345
12856
- #: includes/hud-dismiss-functions.php:388
12857
  msgid ""
12858
  "Wordfence PHP/php.ini handler htaccess code was found in your root .htaccess "
12859
  "file, but was NOT found in BPS Custom Code."
12860
  msgstr ""
12861
 
12862
- #: includes/hud-dismiss-functions.php:345
12863
- #: includes/hud-dismiss-functions.php:388
12864
  msgid ""
12865
  "Using the Wordfence WAF Firewall may cause serious/critical problems for "
12866
  "your website and BPS."
12867
  msgstr ""
12868
 
12869
- #: includes/hud-dismiss-functions.php:350
12870
- #: includes/hud-dismiss-functions.php:393
12871
  msgid "HUD Check: PHP/php.ini handler htaccess code check"
12872
  msgstr ""
12873
 
12874
- #: includes/hud-dismiss-functions.php:350
12875
- #: includes/hud-dismiss-functions.php:393
12876
  msgid ""
12877
  "PHP/php.ini handler htaccess code was found in your root .htaccess file, but "
12878
  "was NOT found in BPS Custom Code."
12879
  msgstr ""
12880
 
12881
- #: includes/hud-dismiss-functions.php:350
12882
- #: includes/hud-dismiss-functions.php:393
12883
  msgid "To automatically fix this click here: "
12884
  msgstr ""
12885
 
12886
- #: includes/hud-dismiss-functions.php:350
12887
- #: includes/hud-dismiss-functions.php:393
12888
  msgid ""
12889
  "The Setup Wizard Pre-Installation Checks feature will automatically fix this "
12890
  "just by visiting the Setup Wizard page."
12891
  msgstr ""
12892
 
12893
- #: includes/hud-dismiss-functions.php:388
12894
  msgid " for the steps to fix this Wordfence problem."
12895
  msgstr ""
12896
 
12897
- #: includes/hud-dismiss-functions.php:451
12898
  msgid ""
12899
  "An htaccess file has been detected in the wp-content folder that breaks BPS "
12900
  "features and functionality"
12901
  msgstr ""
12902
 
12903
- #: includes/hud-dismiss-functions.php:451
12904
  msgid ""
12905
  "If you have or had the Sucuri, Defender or iThemes Security plugins "
12906
  "installed, they create a wp-content htaccess file that breaks several things "
12907
  "in BPS Pro and other plugins as well."
12908
  msgstr ""
12909
 
12910
- #: includes/hud-dismiss-functions.php:451
12911
  msgid ""
12912
  "To fix the Sucuri problem go to the Sucuri Settings page, click the "
12913
  "Hardening tab and click the Revert Hardening button for the Block PHP Files "
12914
  "in WP-CONTENT Directory option setting."
12915
  msgstr ""
12916
 
12917
- #: includes/hud-dismiss-functions.php:451
12918
  msgid ""
12919
  "To fix the Defender Security problem go to the Security Tweaks page, click "
12920
  "the PHP Execution option setting and click the Revert button."
12921
  msgstr ""
12922
 
12923
- #: includes/hud-dismiss-functions.php:451
12924
  msgid ""
12925
  "o fix the iThemes problem go to the System Tweaks page, uncheck the Disable "
12926
  "PHP in Plugins option setting."
12927
  msgstr ""
12928
 
12929
- #: includes/hud-dismiss-functions.php:493
12930
  msgid "The WordPress Firewall 2 plugin is installed and activated"
12931
  msgstr ""
12932
 
12933
- #: includes/hud-dismiss-functions.php:493
12934
  msgid "It is recommended that you delete the WordPress Firewall 2 plugin."
12935
  msgstr ""
12936
 
12937
- #: includes/hud-dismiss-functions.php:493
12938
  msgid " for more information."
12939
  msgstr ""
12940
 
12941
- #: includes/hud-dismiss-functions.php:525
12942
  msgid "Notice: BPS Query String Exploits Code Changes"
12943
  msgstr ""
12944
 
12945
- #: includes/hud-dismiss-functions.php:525
12946
  msgid ""
12947
  "Older BPS Query String Exploits code was found in BPS Custom Code. Several "
12948
  "Query String Exploits rules were changed/added/modified in the root ."
12949
  "htaccess file in BPS .49.6, .50.2 & .50.3."
12950
  msgstr ""
12951
 
12952
- #: includes/hud-dismiss-functions.php:525
12953
  msgid ""
12954
  "Copy the new Query String Exploits section of code from your root .htaccess "
12955
  "file and paste it into this BPS Custom Code text box: CUSTOM CODE BPSQSE BPS "
12956
  "QUERY STRING EXPLOITS and click the Save Root Custom Code button."
12957
  msgstr ""
12958
 
12959
- #: includes/hud-dismiss-functions.php:525
12960
  msgid ""
12961
  "This Notice will go away once you have copied the new Query String Exploits "
12962
  "code to BPS Custom Code and clicked the Save Root Custom Code button."
12963
  msgstr ""
12964
 
12965
- #: includes/hud-dismiss-functions.php:544
12966
  msgid "BPS Alert! A BPS htaccess file was NOT found in the BPS Backup folder: "
12967
  msgstr ""
12968
 
12969
- #: includes/hud-dismiss-functions.php:544
12970
  msgid " and click the BPS Backup Folder BulletProof Mode Activate button."
12971
  msgstr ""
12972
 
12973
- #: includes/hud-dismiss-functions.php:582
12974
  msgid "New Improved BPS Speed Boost Cache Code"
12975
  msgstr ""
12976
 
12977
- #: includes/hud-dismiss-functions.php:582
12978
  msgid ""
12979
  "Older BPS Speed Boost Cache Code was found saved in this BPS Custom Code "
12980
  "text box: CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
12981
  msgstr ""
12982
 
12983
- #: includes/hud-dismiss-functions.php:582
12984
  msgid ""
12985
  "Newer improved BPS Speed Boost Cache Code has been created, which should "
12986
  "improve website load speed performance even more."
12987
  msgstr ""
12988
 
12989
- #: includes/hud-dismiss-functions.php:582
12990
  msgid "Get The New Improved BPS Speed Boost Cache Code"
12991
  msgstr ""
12992
 
12993
- #: includes/hud-dismiss-functions.php:582
12994
  msgid ". To dismiss this Notice click the Dismiss Notice button below."
12995
  msgstr ""
12996
 
12997
- #: includes/hud-dismiss-functions.php:582
12998
  msgid ""
12999
  "To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on "
13000
  "the Custom Code page."
13001
  msgstr ""
13002
 
13003
- #: includes/hud-dismiss-functions.php:589
13004
  msgid "BPS Speed Boost Cache Custom Code Notice"
13005
  msgstr ""
13006
 
13007
- #: includes/hud-dismiss-functions.php:589
13008
  msgid ""
13009
  "BPS Speed Boost Cache Code was found in this BPS Custom Code text box: "
13010
  "CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
13011
  msgstr ""
13012
 
13013
- #: includes/hud-dismiss-functions.php:589
13014
  msgid ""
13015
  "and another caching plugin's Marker text was also found in this BPS Custom "
13016
  "Code text box."
13017
  msgstr ""
13018
 
13019
- #: includes/hud-dismiss-functions.php:589
13020
  msgid "Click this link: "
13021
  msgstr ""
13022
 
13023
- #: includes/hud-dismiss-functions.php:589
13024
  msgid "BPS Speed Boost Cache Custom Code Notice Forum Topic"
13025
  msgstr ""
13026
 
13027
- #: includes/hud-dismiss-functions.php:589
13028
  msgid " for help information on what this Notice means and what to do next."
13029
  msgstr ""
13030
 
13031
- #: includes/hud-dismiss-functions.php:649
13032
  msgid "BPS Plugin Automatic Update Notice"
13033
  msgstr ""
13034
 
13035
- #: includes/hud-dismiss-functions.php:649
13036
  msgid ""
13037
  "Would you like to have BPS plugin updates installed automatically? Click "
13038
  "this link: "
13039
  msgstr ""
13040
 
13041
- #: includes/hud-dismiss-functions.php:649
13042
  msgid " and click the BPS MU Tools Enable BPS Plugin AutoUpdates link."
13043
  msgstr ""
13044
 
13045
- #: includes/hud-dismiss-functions.php:677
13046
  msgid "MScan First Run Notice"
13047
  msgstr ""
13048
 
13049
- #: includes/hud-dismiss-functions.php:677
13050
  msgid ""
13051
  "Please take a few minutes to read the \"Basic Info|Recommendations|"
13052
  "Limitations|Restrictions\" help section in the"
13053
  msgstr ""
13054
 
13055
- #: includes/hud-dismiss-functions.php:677
13056
  msgid "before running a scan."
13057
  msgstr ""
13058
 
13059
- #: includes/hud-dismiss-functions.php:677
13060
  msgid ""
13061
  "It is highly recommended that you use the Scan Time Estimate Tool before "
13062
  "running an actual scan. The Scan Time Estimate Tool calculates the total "
@@ -13066,117 +13066,117 @@ msgid ""
13066
  "Notices button on the BPS Custom Code page."
13067
  msgstr ""
13068
 
13069
- #: includes/hud-dismiss-functions.php:714
13070
  msgid "BPS New Feature Notice: JTC-Lite"
13071
  msgstr ""
13072
 
13073
- #: includes/hud-dismiss-functions.php:714
13074
  msgid ""
13075
  "JTC-Lite protects the WordPress Login page Form against automated SpamBot "
13076
  "and HackerBot Brute Force Login attacks"
13077
  msgstr ""
13078
 
13079
- #: includes/hud-dismiss-functions.php:714
13080
  msgid ""
13081
  "and also prevents User Accounts from being locked repeatedly by Brute Force "
13082
  "Login Bot attacks on your Login page Form."
13083
  msgstr ""
13084
 
13085
- #: includes/hud-dismiss-functions.php:714
13086
  msgid "To enable/turn On JTC-Lite, click this "
13087
  msgstr ""
13088
 
13089
- #: includes/hud-dismiss-functions.php:714
13090
  msgid ""
13091
  ". Click/check the Login Form Checkbox and click the Save Options button."
13092
  msgstr ""
13093
 
13094
- #: includes/hud-dismiss-functions.php:714
13095
- #: includes/hud-dismiss-functions.php:795
13096
- #: includes/hud-dismiss-functions.php:828
13097
  msgid ""
13098
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
13099
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the BPS "
13100
  "Custom Code page."
13101
  msgstr ""
13102
 
13103
- #: includes/hud-dismiss-functions.php:757
13104
  msgid "BPS Plugin Star Rating Request"
13105
  msgstr ""
13106
 
13107
- #: includes/hud-dismiss-functions.php:757
13108
  msgid ""
13109
  "A BPS star rating only takes a couple of minutes and would be very much "
13110
  "appreciated. We are looking for 5 star ratings and not \"fancy\" reviews."
13111
  msgstr ""
13112
 
13113
- #: includes/hud-dismiss-functions.php:757
13114
  msgid ""
13115
  "A simple review like \"works great\" or \"has been protecting my website for "
13116
  "X months or X years\" is perfect."
13117
  msgstr ""
13118
 
13119
- #: includes/hud-dismiss-functions.php:757
13120
  msgid "Click this link to submit a BPS Plugin Star Rating: "
13121
  msgstr ""
13122
 
13123
- #: includes/hud-dismiss-functions.php:757
13124
  msgid "BPS Plugin Star Rating"
13125
  msgstr ""
13126
 
13127
- #: includes/hud-dismiss-functions.php:757
13128
  msgid ""
13129
  "login to the WordPress.org site and scroll to the bottom of the Reviews page."
13130
  msgstr ""
13131
 
13132
- #: includes/hud-dismiss-functions.php:757
13133
  msgid ""
13134
  "To Dismiss this one-time Notice click the Dismiss Notice button below. To "
13135
  "Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the "
13136
  "BPS Custom Code page."
13137
  msgstr ""
13138
 
13139
- #: includes/hud-dismiss-functions.php:795
13140
  msgid "BPS Notice: Mod Security Module is Loaded|Enabled"
13141
  msgstr ""
13142
 
13143
- #: includes/hud-dismiss-functions.php:795
13144
  msgid "Please take a minute to view this Mod Security help forum topic: "
13145
  msgstr ""
13146
 
13147
- #: includes/hud-dismiss-functions.php:795
13148
  msgid "Mod Security Common Known Problems"
13149
  msgstr ""
13150
 
13151
- #: includes/hud-dismiss-functions.php:795
13152
  msgid ""
13153
  "If you are not experiencing any of the problems listed in the Mod Security "
13154
  "help forum topic then you can dismiss this Dismiss Notice."
13155
  msgstr ""
13156
 
13157
- #: includes/hud-dismiss-functions.php:828
13158
  msgid "BPS GDPR Compliance Notice"
13159
  msgstr ""
13160
 
13161
- #: includes/hud-dismiss-functions.php:828
13162
  msgid ""
13163
  "A new Setup Wizard Option has been created which allows you to turn off all "
13164
  "IP address logging in BPS to make your website GDPR Compliant."
13165
  msgstr ""
13166
 
13167
- #: includes/hud-dismiss-functions.php:828
13168
  msgid "GDPR Compliance Setup Wizard Option link"
13169
  msgstr ""
13170
 
13171
- #: includes/hud-dismiss-functions.php:828
13172
  msgid "Choose the GDPR Compliance On setting."
13173
  msgstr ""
13174
 
13175
- #: includes/hud-dismiss-functions.php:828
13176
  msgid "For more information about GDPR Compliance click this "
13177
  msgstr ""
13178
 
13179
- #: includes/hud-dismiss-functions.php:828
13180
  msgid "GDPR Compliance Forum Topic link"
13181
  msgstr ""
13182
 
3
  msgstr ""
4
  "Project-Id-Version: bulletproof-security\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2020-02-03 14:26-0800\n"
7
  "PO-Revision-Date: 2015-06-20 19:13-0800\n"
8
  "Last-Translator: Ed Alexander <edward@ait-pro.com>\n"
9
  "Language-Team: AITpro <info@ait-pro.com>\n"
469
  #: admin/core/core-forms.php:196 admin/core/core-forms.php:246
470
  #: admin/core/core-forms.php:280 admin/core/core-forms.php:330
471
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
472
+ #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
473
+ #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
474
  #: admin/core/core.php:778 admin/core/core.php:862 admin/core/core.php:970
475
  #: admin/core/core.php:1054 admin/core/core.php:1147
476
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
484
  #: admin/core/core-forms.php:196 admin/core/core-forms.php:246
485
  #: admin/core/core-forms.php:280 admin/core/core-forms.php:330
486
  #: admin/core/core-forms.php:364 admin/core/core-forms.php:430
487
+ #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
488
+ #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
489
  #: admin/core/core.php:778 admin/core/core.php:862 admin/core/core.php:970
490
  #: admin/core/core.php:1054 admin/core/core.php:1147
491
  #: admin/maintenance/maintenance.php:814 admin/maintenance/maintenance.php:1130
1730
  "problem click"
1731
  msgstr ""
1732
 
1733
+ #: admin/core/core-htaccess-code.php:423 admin/core/core-htaccess-code.php:507
1734
+ #: admin/core/core-htaccess-code.php:576 admin/core/core-htaccess-code.php:660
1735
  #: admin/core/core.php:1054
1736
  msgid "htaccess Files Disabled: Root htaccess file writing is disabled. "
1737
  msgstr ""
1738
 
1739
+ #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1740
  #: admin/core/core.php:909
1741
  msgid "Failed to copy your Custom default.htaccess file: "
1742
  msgstr ""
1743
 
1744
+ #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1745
  #: admin/core/core.php:909
1746
  msgid " to: "
1747
  msgstr ""
1748
 
1749
+ #: admin/core/core-htaccess-code.php:445 admin/core/core-htaccess-code.php:598
1750
  msgid " Check the folder permissions or Ownership for these folders."
1751
  msgstr ""
1752
 
1753
+ #: admin/core/core-htaccess-code.php:456 admin/core/core-htaccess-code.php:609
1754
  msgid ""
1755
  "Root Folder BulletProof Mode deactivated successfully. Your Custom default."
1756
  "htaccess is currently in use."
1757
  msgstr ""
1758
 
1759
+ #: admin/core/core-htaccess-code.php:480 admin/core/core-htaccess-code.php:633
1760
  msgid ""
1761
  "Failed to deactivate Root Folder BulletProof Mode. Unable to Copy the "
1762
  "default.htaccess file to your root folder."
1763
  msgstr ""
1764
 
1765
+ #: admin/core/core-htaccess-code.php:491 admin/core/core-htaccess-code.php:644
1766
  msgid "Root Folder BulletProof Mode deactivated successfully."
1767
  msgstr ""
1768
 
1769
+ #: admin/core/core-htaccess-code.php:536 admin/core/core-htaccess-code.php:689
1770
  msgid ""
1771
  "Failed to activate Root Folder BulletProof Mode protection. Your website is "
1772
  "NOT protected."
1773
  msgstr ""
1774
 
1775
+ #: admin/core/core-htaccess-code.php:547 admin/core/core-htaccess-code.php:700
1776
  msgid "Root Folder BulletProof Mode protection activated successfully."
1777
  msgstr ""
1778
 
2382
  #: admin/system-info/system-info.php:784 admin/system-info/system-info.php:792
2383
  #: admin/system-info/system-info.php:800 admin/system-info/system-info.php:808
2384
  #: admin/system-info/system-info.php:816 admin/system-info/system-info.php:824
2385
+ #: admin/system-info/system-info.php:843 includes/functions.php:572
2386
+ #: includes/functions.php:757 includes/functions.php:925
2387
+ #: includes/functions.php:968 includes/functions.php:1016
2388
+ #: includes/functions.php:1060
2389
  msgid "On"
2390
  msgstr ""
2391
 
2407
  #: admin/system-info/system-info.php:803 admin/system-info/system-info.php:811
2408
  #: admin/system-info/system-info.php:819 admin/system-info/system-info.php:827
2409
  #: admin/system-info/system-info.php:835 admin/system-info/system-info.php:846
2410
+ #: includes/functions.php:930 includes/functions.php:973
2411
+ #: includes/functions.php:1022 includes/functions.php:1066
2412
  #: includes/general-functions.php:285 includes/general-functions.php:300
2413
  msgid "Off"
2414
  msgstr ""
5702
  msgstr ""
5703
 
5704
  #: admin/login/lsm-help-text.php:10 admin/maintenance/maintenance.php:528
5705
+ #: includes/hud-dismiss-functions.php:346
5706
+ #: includes/hud-dismiss-functions.php:389
5707
  msgid "CAUTION: "
5708
  msgstr ""
5709
 
6771
 
6772
  #: admin/maintenance/maintenance.php:376 admin/maintenance/maintenance.php:396
6773
  #: admin/wizard/wizard.php:176 includes/general-functions.php:509
6774
+ #: includes/hud-dismiss-functions.php:346
6775
+ #: includes/hud-dismiss-functions.php:389
6776
+ #: includes/hud-dismiss-functions.php:494
6777
  msgid "Click Here"
6778
  msgstr ""
6779
 
7477
  "malware scanners: "
7478
  msgstr ""
7479
 
7480
+ #: admin/mscan/mscan.php:139 includes/hud-dismiss-functions.php:678
7481
  msgid "MScan Malware Scanner Guide"
7482
  msgstr ""
7483
 
10554
  "cannot be created. Root Folder BulletProof Mode has NOT been activated."
10555
  msgstr ""
10556
 
10557
+ #: admin/wizard/wizard-functions.php:111 admin/wizard/wizard-functions.php:621
10558
+ #: admin/wizard/wizard-functions.php:714
10559
  msgid ""
10560
  "If your Server configuration is DSO you must first make some one-time manual "
10561
  "changes to your website before running the Setup Wizard. Please click this "
10562
  "Forum Link for instructions: "
10563
  msgstr ""
10564
 
10565
+ #: admin/wizard/wizard-functions.php:111 admin/wizard/wizard-functions.php:621
10566
+ #: admin/wizard/wizard-functions.php:714 admin/wizard/wizard.php:237
10567
  #: admin/wizard/wizard.php:304 admin/wizard/wizard.php:310
10568
  #: admin/wizard/wizard.php:316 admin/wizard/wizard.php:322
10569
  #: admin/wizard/wizard.php:328
10570
  msgid "DSO Setup Steps"
10571
  msgstr ""
10572
 
10573
+ #: admin/wizard/wizard-functions.php:500
10574
  msgid " Root .htaccess File backup Successful! "
10575
  msgstr ""
10576
 
10577
+ #: admin/wizard/wizard-functions.php:510
10578
  msgid "Error: PHP/php.ini handler htaccess code check"
10579
  msgstr ""
10580
 
10581
+ #: admin/wizard/wizard-functions.php:510
10582
  msgid ""
10583
  "PHP/php.ini handler htaccess code was found in your root .htaccess file, but "
10584
  "was NOT found in BPS Custom Code. A new root .htaccess file was NOT created "
10586
  "Link "
10587
  msgstr ""
10588
 
10589
+ #: admin/wizard/wizard-functions.php:510
10590
  msgid "Add PHP/php.ini handler htaccess code to BPS Custom Code"
10591
  msgstr ""
10592
 
10593
+ #: admin/wizard/wizard-functions.php:510
10594
  msgid ""
10595
  " for instructions on how to copy your PHP/php.ini handler htaccess code to "
10596
  "BPS Custom Code."
10597
  msgstr ""
10598
 
10599
+ #: admin/wizard/wizard-functions.php:549 admin/wizard/wizard-functions.php:578
10600
  msgid ""
10601
  "Root .htaccess File writing completed. File Locked with 404 file permissions."
10602
  msgstr ""
10603
 
10604
+ #: admin/wizard/wizard-functions.php:553 admin/wizard/wizard-functions.php:582
10605
  msgid ""
10606
  "Root .htaccess File writing completed. File Locked with 444 file permissions."
10607
  msgstr ""
10608
 
10609
+ #: admin/wizard/wizard-functions.php:600 admin/wizard/wizard-functions.php:609
10610
+ #: admin/wizard/wizard-functions.php:808 admin/wizard/wizard.php:644
10611
  #: admin/wizard/wizard.php:682 admin/wizard/wizard.php:740
10612
  #: admin/wizard/wizard.php:780 admin/wizard/wizard.php:829
10613
+ #: includes/general-functions.php:994
10614
  msgid " DB Option created or updated Successfully!"
10615
  msgstr ""
10616
 
10617
+ #: admin/wizard/wizard-functions.php:619
10618
  msgid ""
10619
  "The wpadmin-secure.htaccess wp-admin Master htaccess file was created "
10620
  "successfully."
10621
  msgstr ""
10622
 
10623
+ #: admin/wizard/wizard-functions.php:619
10624
  msgid "wp-admin Folder BulletProof Mode activated successfully."
10625
  msgstr ""
10626
 
10627
+ #: admin/wizard/wizard-functions.php:621
10628
  msgid ""
10629
  "Error: The wpadmin-secure.htaccess wp-admin Master htaccess file and wp-"
10630
  "admin .htaccess file cannot be created. wp-admin Folder BulletProof Mode has "
10631
  "NOT been activated."
10632
  msgstr ""
10633
 
10634
+ #: admin/wizard/wizard-functions.php:627
10635
  msgid ""
10636
  "Go Daddy Managed WordPress Hosting option is set to Yes or Enable|Disable wp-"
10637
  "admin BulletProof Mode option is set to disabled. GDMW hosting does not "
10638
  "allow wp-admin htaccess files."
10639
  msgstr ""
10640
 
10641
+ #: admin/wizard/wizard-functions.php:651
10642
  msgid " wp-admin .htaccess File backup Successful!"
10643
  msgstr ""
10644
 
10645
+ #: admin/wizard/wizard-functions.php:712
10646
  msgid "The default.htaccess Master htaccess file was created successfully."
10647
  msgstr ""
10648
 
10649
+ #: admin/wizard/wizard-functions.php:714
10650
  msgid "Error: The default.htaccess Master htaccess file cannot be created."
10651
  msgstr ""
10652
 
10653
+ #: admin/wizard/wizard-functions.php:809 admin/wizard/wizard.php:459
10654
  msgid " Folder created Successfully!"
10655
  msgstr ""
10656
 
10657
+ #: admin/wizard/wizard-functions.php:906
10658
  msgid ""
10659
  "Security Log User Agent Filter Check Successful! 0 User Agent Filters to "
10660
  "update."
10661
  msgstr ""
10662
 
10663
+ #: admin/wizard/wizard-functions.php:916
10664
  msgid "Security Log User Agent Filter "
10665
  msgstr ""
10666
 
10667
+ #: admin/wizard/wizard-functions.php:916
10668
  msgid " created or updated Successfully!"
10669
  msgstr ""
10670
 
10686
  "file, but was NOT found in BPS Custom Code. "
10687
  msgstr ""
10688
 
10689
+ #: admin/wizard/wizard.php:176 includes/hud-dismiss-functions.php:346
10690
  msgid ""
10691
  " for the steps to fix this Wordfence problem before running the Setup Wizard."
10692
  msgstr ""
10773
  "maximum memory limit setting allowed by your Host."
10774
  msgstr ""
10775
 
10776
+ #: admin/wizard/wizard.php:267 includes/functions.php:1229
10777
  msgid ""
10778
  "mod_authz_core is Loaded|Order, Allow, Deny directives are supported|BC: Yes|"
10779
  "IfModule: Yes"
10785
  "htaccess files will be created."
10786
  msgstr ""
10787
 
10788
+ #: admin/wizard/wizard.php:276 includes/functions.php:1214
10789
  msgid ""
10790
  "mod_access_compat is Loaded|Order, Allow, Deny directives are supported|"
10791
  "IfModule: No"
11376
  "can disregard this Alert."
11377
  msgstr ""
11378
 
11379
+ #: includes/functions.php:345 includes/functions.php:583
11380
+ #: includes/functions.php:650 includes/hud-autofix-setup.php:69
11381
+ #: includes/hud-dismiss-functions.php:545
11382
  msgid "Go to the "
11383
  msgstr ""
11384
 
11385
+ #: includes/functions.php:345 includes/functions.php:583
11386
  msgid " and click the Root Folder BulletProof Mode Activate button."
11387
  msgstr ""
11388
 
11402
  "file."
11403
  msgstr ""
11404
 
11405
+ #: includes/functions.php:383 includes/functions.php:672
11406
  msgid ""
11407
  " to go to the BPS Setup Wizard page and click the Setup Wizard button to "
11408
  "setup the BPS plugin again."
11424
  msgstr ""
11425
 
11426
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11427
+ #: includes/hud-dismiss-functions.php:68 includes/hud-dismiss-functions.php:102
11428
+ #: includes/hud-dismiss-functions.php:135
11429
+ #: includes/hud-dismiss-functions.php:346
11430
+ #: includes/hud-dismiss-functions.php:351
11431
+ #: includes/hud-dismiss-functions.php:389
11432
+ #: includes/hud-dismiss-functions.php:394
11433
+ #: includes/hud-dismiss-functions.php:452
11434
+ #: includes/hud-dismiss-functions.php:494
11435
+ #: includes/hud-dismiss-functions.php:650
11436
  msgid ""
11437
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
11438
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the Custom "
11440
  msgstr ""
11441
 
11442
  #: includes/functions.php:383 includes/hud-autofix-setup.php:69
11443
+ #: includes/hud-dismiss-functions.php:68 includes/hud-dismiss-functions.php:102
11444
+ #: includes/hud-dismiss-functions.php:135
11445
+ #: includes/hud-dismiss-functions.php:200
11446
+ #: includes/hud-dismiss-functions.php:215
11447
+ #: includes/hud-dismiss-functions.php:221
11448
+ #: includes/hud-dismiss-functions.php:227
11449
+ #: includes/hud-dismiss-functions.php:233
11450
+ #: includes/hud-dismiss-functions.php:247
11451
+ #: includes/hud-dismiss-functions.php:253
11452
+ #: includes/hud-dismiss-functions.php:258
11453
+ #: includes/hud-dismiss-functions.php:346
11454
+ #: includes/hud-dismiss-functions.php:351
11455
+ #: includes/hud-dismiss-functions.php:389
11456
+ #: includes/hud-dismiss-functions.php:394
11457
+ #: includes/hud-dismiss-functions.php:452
11458
+ #: includes/hud-dismiss-functions.php:494
11459
+ #: includes/hud-dismiss-functions.php:583
11460
+ #: includes/hud-dismiss-functions.php:650
11461
+ #: includes/hud-dismiss-functions.php:678
11462
+ #: includes/hud-dismiss-functions.php:715
11463
+ #: includes/hud-dismiss-functions.php:758
11464
+ #: includes/hud-dismiss-functions.php:796
11465
+ #: includes/hud-dismiss-functions.php:829
11466
  msgid "Dismiss Notice"
11467
  msgstr ""
11468
 
11469
+ #: includes/functions.php:559
11470
  msgid "The BPS Automatic htaccess File Update Completed Successfully!"
11471
  msgstr ""
11472
 
11473
+ #: includes/functions.php:572
11474
  msgid "RBM"
11475
  msgstr ""
11476
 
11477
+ #: includes/functions.php:583
11478
  msgid ""
11479
  "BPS Alert! Your site does not appear to be protected by BulletProof Security"
11480
  msgstr ""
11481
 
11482
+ #: includes/functions.php:650
11483
  msgid ""
11484
  "BPS Alert! An htaccess file was NOT found in your WordPress wp-admin folder"
11485
  msgstr ""
11486
 
11487
+ #: includes/functions.php:650
11488
  msgid ""
11489
  "If you have deleted the wp-admin htaccess file for troubleshooting purposes "
11490
  "you can disregard this Alert."
11491
  msgstr ""
11492
 
11493
+ #: includes/functions.php:650
11494
  msgid " and click the wp-admin Folder BulletProof Mode Activate button."
11495
  msgstr ""
11496
 
11497
+ #: includes/functions.php:672
11498
  msgid ""
11499
  "BPS Alert! Your wp-admin folder may not be protected by BulletProof Security"
11500
  msgstr ""
11501
 
11502
+ #: includes/functions.php:672
11503
  msgid ""
11504
  "The BPS version: BULLETPROOF .xx.x WP-ADMIN SECURE .HTACCESS line of code "
11505
  "was not found at the top of your wp-admin htaccess file."
11506
  msgstr ""
11507
 
11508
+ #: includes/functions.php:672
11509
  msgid ""
11510
  "The BPS version line of code MUST be at the very top of your wp-admin "
11511
  "htaccess file."
11512
  msgstr ""
11513
 
11514
+ #: includes/functions.php:672
11515
  msgid ""
11516
  "Important Note: If you manually added other htaccess code above the BPS "
11517
  "version line of code in your wp-admin htaccess file, you can copy that code "
11519
  "in the BPS wp-admin htaccess file. "
11520
  msgstr ""
11521
 
11522
+ #: includes/functions.php:672
11523
  msgid ""
11524
  " to go to the BPS Custom Code page, add your wp-admin custom htaccess code "
11525
  "in an appropriate wp-admin Custom Code text box and click the Save wp-admin "
11526
  "Custom Code button before running the Setup Wizard again."
11527
  msgstr ""
11528
 
11529
+ #: includes/functions.php:757
11530
  msgid "WBM"
11531
  msgstr ""
11532
 
11533
+ #: includes/functions.php:768
11534
  msgid ""
11535
  "BPS Alert! A valid BPS htaccess file was NOT found in your wp-admin folder"
11536
  msgstr ""
11537
 
11538
+ #: includes/functions.php:768
11539
  msgid ""
11540
  "BulletProof Mode for the wp-admin folder should also be activated when you "
11541
  "have BulletProof Mode activated for the Root folder."
11542
  msgstr ""
11543
 
11544
+ #: includes/functions.php:930
11545
  msgid "LSM"
11546
  msgstr ""
11547
 
11548
+ #: includes/functions.php:973
11549
  msgid "JTC"
11550
  msgstr ""
11551
 
11552
+ #: includes/functions.php:1016 includes/functions.php:1022
11553
  msgid "ISL"
11554
  msgstr ""
11555
 
11556
+ #: includes/functions.php:1060 includes/functions.php:1066
11557
  msgid "ACE"
11558
  msgstr ""
11559
 
11560
+ #: includes/functions.php:1125
11561
  msgid ""
11562
  "Apache Modules|Directives|Backward Compatibility(Yes|No)|IfModule(Yes|No): "
11563
  msgstr ""
11564
 
11565
+ #: includes/functions.php:1179
11566
  msgid ""
11567
  "ERROR: wp_remote_get() function is blocked or unable to get the URL path"
11568
  msgstr ""
11569
 
11570
+ #: includes/functions.php:1197
11571
  msgid "mod_access_compat and mod_authz_core or mod_rewrite is NOT Loaded"
11572
  msgstr ""
11573
 
11574
+ #: includes/functions.php:1207
11575
  msgid ""
11576
  "mod_access_compat is Loaded|Order, Allow, Deny directives are supported|"
11577
  "IfModule: Yes"
11578
  msgstr ""
11579
 
11580
+ #: includes/functions.php:1221
11581
  msgid "mod_access_compat is Loaded"
11582
  msgstr ""
11583
 
11584
+ #: includes/functions.php:1234
11585
  msgid ""
11586
  "mod_authz_core is Loaded|Order, Allow, Deny directives are NOT supported|BC: "
11587
  "No|IfModule: Yes"
11588
  msgstr ""
11589
 
11590
+ #: includes/functions.php:1239
11591
  msgid "mod_authz_core is Loaded|IfModule: No"
11592
  msgstr ""
11593
 
11594
+ #: includes/functions.php:1244
11595
  msgid "mod_authz_core is NOT Loaded|IfModule: Yes"
11596
  msgstr ""
11597
 
11598
+ #: includes/functions.php:1250
11599
  msgid "mod_authz_core is NOT Loaded"
11600
  msgstr ""
11601
 
11602
+ #: includes/functions.php:1257
11603
  msgid ""
11604
  "mod_authz_host is Loaded|Order, Allow, Deny directives are supported|BC: Yes|"
11605
  "IfModule: Yes"
11606
  msgstr ""
11607
 
11608
+ #: includes/functions.php:1262
11609
  msgid ""
11610
  "mod_authz_host is Loaded|Order, Allow, Deny directives are NOT supported|BC: "
11611
  "No|IfModule: Yes"
11612
  msgstr ""
11613
 
11614
+ #: includes/functions.php:1267
11615
  msgid "mod_authz_host is Loaded|IfModule: No"
11616
  msgstr ""
11617
 
11618
+ #: includes/functions.php:1272
11619
  msgid "mod_authz_host is NOT Loaded|IfModule: Yes"
11620
  msgstr ""
11621
 
11622
+ #: includes/functions.php:1277
11623
  msgid "mod_authz_host is NOT Loaded"
11624
  msgstr ""
11625
 
11626
+ #: includes/functions.php:1284
11627
  msgid "mod_rewrite Module is Loaded"
11628
  msgstr ""
11629
 
11630
+ #: includes/functions.php:1289
11631
  msgid "mod_rewrite Inconclusive: Status is not 200, 301, 302, 403 or 404"
11632
  msgstr ""
11633
 
11634
+ #: includes/functions.php:1318
11635
  msgid "mod_security Module is Loaded|Enabled"
11636
  msgstr ""
11637
 
11638
+ #: includes/functions.php:1321
11639
  msgid "mod_security2 Module is Loaded|Enabled"
11640
  msgstr ""
11641
 
11642
+ #: includes/functions.php:1333
11643
  msgid "mod_security Module is not Loaded|Enabled"
11644
  msgstr ""
11645
 
11899
  "file."
11900
  msgstr ""
11901
 
11902
+ #: includes/general-functions.php:995
11903
  msgid " Hosting Account Root Folder Option setup or updated Successfully!"
11904
  msgstr ""
11905
 
12641
  msgstr ""
12642
 
12643
  #: includes/hud-autofix-whitelist.php:761
12644
+ #: includes/hud-dismiss-functions.php:829
12645
  msgid "Click this "
12646
  msgstr ""
12647
 
12673
  msgid "No Plugin or Theme AutoFix Custom Code Whitelist Rules were found"
12674
  msgstr ""
12675
 
12676
+ #: includes/hud-dismiss-functions.php:46
12677
  msgid ""
12678
  "WARNING! BPS requires at least PHP5 to function correctly. Your PHP version "
12679
  "is: "
12680
  msgstr ""
12681
 
12682
+ #: includes/hud-dismiss-functions.php:46
12683
  msgid "BPS Guide - PHP5 Solution"
12684
  msgstr ""
12685
 
12686
+ #: includes/hud-dismiss-functions.php:46
12687
  msgid ""
12688
  "The BPS Guide will open in a new browser window. You will not be directed "
12689
  "away from your WordPress Dashboard."
12690
  msgstr ""
12691
 
12692
+ #: includes/hud-dismiss-functions.php:68
12693
  msgid ""
12694
  "WARNING! BPS has detected that Safe Mode is set to On in your php.ini file."
12695
  msgstr ""
12696
 
12697
+ #: includes/hud-dismiss-functions.php:68
12698
  msgid ""
12699
  "If you see errors that BPS was unable to automatically create the backup "
12700
  "folders this is probably the reason why."
12701
  msgstr ""
12702
 
12703
+ #: includes/hud-dismiss-functions.php:102
12704
  msgid "HUD Check: Custom Permalinks are NOT being used."
12705
  msgstr ""
12706
 
12707
+ #: includes/hud-dismiss-functions.php:102
12708
  msgid "It is recommended that you use Custom Permalinks: "
12709
  msgstr ""
12710
 
12711
+ #: includes/hud-dismiss-functions.php:102
12712
  msgid "How to setup Custom Permalinks"
12713
  msgstr ""
12714
 
12715
+ #: includes/hud-dismiss-functions.php:135
12716
  msgid ""
12717
  "WARNING! BPS has detected that your Server is a Windows IIS Server that does "
12718
  "not support htaccess rewriting."
12719
  msgstr ""
12720
 
12721
+ #: includes/hud-dismiss-functions.php:135
12722
  msgid "Do NOT activate BulletProof Modes unless you know what you are doing."
12723
  msgstr ""
12724
 
12725
+ #: includes/hud-dismiss-functions.php:135
12726
  msgid "Your Server Type is: "
12727
  msgstr ""
12728
 
12729
+ #: includes/hud-dismiss-functions.php:135
12730
  msgid "WordPress Codex - Using Permalinks - see IIS section"
12731
  msgstr ""
12732
 
12733
+ #: includes/hud-dismiss-functions.php:158
12734
+ #: includes/hud-dismiss-functions.php:163
12735
  msgid "WARNING! BPS was unable to automatically create the /"
12736
  msgstr ""
12737
 
12738
+ #: includes/hud-dismiss-functions.php:158
12739
  msgid "/bps-backup folder."
12740
  msgstr ""
12741
 
12742
+ #: includes/hud-dismiss-functions.php:158
12743
+ #: includes/hud-dismiss-functions.php:163
12744
  msgid "You will need to create the /"
12745
  msgstr ""
12746
 
12747
+ #: includes/hud-dismiss-functions.php:158
12748
  msgid ""
12749
  "/bps-backup folder manually via FTP. The folder permissions for the bps-"
12750
  "backup folder need to be set to 755 in order to successfully perform "
12751
  "permanent online backups."
12752
  msgstr ""
12753
 
12754
+ #: includes/hud-dismiss-functions.php:158
12755
+ #: includes/hud-dismiss-functions.php:163
12756
  msgid "To remove this message permanently click "
12757
  msgstr ""
12758
 
12759
+ #: includes/hud-dismiss-functions.php:158
12760
+ #: includes/hud-dismiss-functions.php:163
12761
  msgid "here."
12762
  msgstr ""
12763
 
12764
+ #: includes/hud-dismiss-functions.php:163
12765
  msgid "/bps-backup/master-backups folder."
12766
  msgstr ""
12767
 
12768
+ #: includes/hud-dismiss-functions.php:163
12769
  msgid ""
12770
  "/bps-backup/master-backups folder manually via FTP. The folder permissions "
12771
  "for the master-backups folder need to be set to 755 in order to successfully "
12772
  "perform permanent online backups."
12773
  msgstr ""
12774
 
12775
+ #: includes/hud-dismiss-functions.php:197
12776
+ #: includes/hud-dismiss-functions.php:209
12777
  msgid "Bonus Custom Code:"
12778
  msgstr ""
12779
 
12780
+ #: includes/hud-dismiss-functions.php:197
12781
+ #: includes/hud-dismiss-functions.php:209
12782
  msgid ""
12783
  "Click the links below to get Bonus Custom Code or click the Dismiss Notice "
12784
  "links or click this "
12785
  msgstr ""
12786
 
12787
+ #: includes/hud-dismiss-functions.php:197
12788
+ #: includes/hud-dismiss-functions.php:209
12789
  msgid "Dismiss All Notices"
12790
  msgstr ""
12791
 
12792
+ #: includes/hud-dismiss-functions.php:197
12793
+ #: includes/hud-dismiss-functions.php:209
12794
  msgid ""
12795
  " link. To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices "
12796
  "button on the Custom Code page."
12797
  msgstr ""
12798
 
12799
+ #: includes/hud-dismiss-functions.php:200
12800
+ #: includes/hud-dismiss-functions.php:215
12801
+ #: includes/hud-dismiss-functions.php:221
12802
+ #: includes/hud-dismiss-functions.php:227
12803
+ #: includes/hud-dismiss-functions.php:233
12804
+ #: includes/hud-dismiss-functions.php:247
12805
+ #: includes/hud-dismiss-functions.php:253
12806
+ #: includes/hud-dismiss-functions.php:258
12807
  msgid "Get "
12808
  msgstr ""
12809
 
12810
+ #: includes/hud-dismiss-functions.php:200
12811
+ #: includes/hud-dismiss-functions.php:247
12812
  msgid "POST Request Attack Protection Code"
12813
  msgstr ""
12814
 
12815
+ #: includes/hud-dismiss-functions.php:200
12816
+ #: includes/hud-dismiss-functions.php:215
12817
+ #: includes/hud-dismiss-functions.php:221
12818
+ #: includes/hud-dismiss-functions.php:227
12819
+ #: includes/hud-dismiss-functions.php:233
12820
+ #: includes/hud-dismiss-functions.php:247
12821
+ #: includes/hud-dismiss-functions.php:253
12822
+ #: includes/hud-dismiss-functions.php:258
12823
  msgid " or "
12824
  msgstr ""
12825
 
12826
+ #: includes/hud-dismiss-functions.php:215
12827
  msgid "Brute Force Login Protection Code"
12828
  msgstr ""
12829
 
12830
+ #: includes/hud-dismiss-functions.php:221
12831
  msgid "Speed Boost Cache Code"
12832
  msgstr ""
12833
 
12834
+ #: includes/hud-dismiss-functions.php:227
12835
  msgid "Author Enumeration BOT Probe Code"
12836
  msgstr ""
12837
 
12838
+ #: includes/hud-dismiss-functions.php:233
12839
  msgid "XML-RPC DDoS Protection Code"
12840
  msgstr ""
12841
 
12842
+ #: includes/hud-dismiss-functions.php:253
12843
  msgid "Mime Sniffing|Drive-by Download Attack Protection Code"
12844
  msgstr ""
12845
 
12846
+ #: includes/hud-dismiss-functions.php:258
12847
  msgid "External iFrame|Clickjacking Protection Code"
12848
  msgstr ""
12849
 
12850
+ #: includes/hud-dismiss-functions.php:346
12851
+ #: includes/hud-dismiss-functions.php:389
12852
  msgid "HUD Check: Wordfence PHP/php.ini handler htaccess code detected"
12853
  msgstr ""
12854
 
12855
+ #: includes/hud-dismiss-functions.php:346
12856
+ #: includes/hud-dismiss-functions.php:389
12857
  msgid ""
12858
  "Wordfence PHP/php.ini handler htaccess code was found in your root .htaccess "
12859
  "file, but was NOT found in BPS Custom Code."
12860
  msgstr ""
12861
 
12862
+ #: includes/hud-dismiss-functions.php:346
12863
+ #: includes/hud-dismiss-functions.php:389
12864
  msgid ""
12865
  "Using the Wordfence WAF Firewall may cause serious/critical problems for "
12866
  "your website and BPS."
12867
  msgstr ""
12868
 
12869
+ #: includes/hud-dismiss-functions.php:351
12870
+ #: includes/hud-dismiss-functions.php:394
12871
  msgid "HUD Check: PHP/php.ini handler htaccess code check"
12872
  msgstr ""
12873
 
12874
+ #: includes/hud-dismiss-functions.php:351
12875
+ #: includes/hud-dismiss-functions.php:394
12876
  msgid ""
12877
  "PHP/php.ini handler htaccess code was found in your root .htaccess file, but "
12878
  "was NOT found in BPS Custom Code."
12879
  msgstr ""
12880
 
12881
+ #: includes/hud-dismiss-functions.php:351
12882
+ #: includes/hud-dismiss-functions.php:394
12883
  msgid "To automatically fix this click here: "
12884
  msgstr ""
12885
 
12886
+ #: includes/hud-dismiss-functions.php:351
12887
+ #: includes/hud-dismiss-functions.php:394
12888
  msgid ""
12889
  "The Setup Wizard Pre-Installation Checks feature will automatically fix this "
12890
  "just by visiting the Setup Wizard page."
12891
  msgstr ""
12892
 
12893
+ #: includes/hud-dismiss-functions.php:389
12894
  msgid " for the steps to fix this Wordfence problem."
12895
  msgstr ""
12896
 
12897
+ #: includes/hud-dismiss-functions.php:452
12898
  msgid ""
12899
  "An htaccess file has been detected in the wp-content folder that breaks BPS "
12900
  "features and functionality"
12901
  msgstr ""
12902
 
12903
+ #: includes/hud-dismiss-functions.php:452
12904
  msgid ""
12905
  "If you have or had the Sucuri, Defender or iThemes Security plugins "
12906
  "installed, they create a wp-content htaccess file that breaks several things "
12907
  "in BPS Pro and other plugins as well."
12908
  msgstr ""
12909
 
12910
+ #: includes/hud-dismiss-functions.php:452
12911
  msgid ""
12912
  "To fix the Sucuri problem go to the Sucuri Settings page, click the "
12913
  "Hardening tab and click the Revert Hardening button for the Block PHP Files "
12914
  "in WP-CONTENT Directory option setting."
12915
  msgstr ""
12916
 
12917
+ #: includes/hud-dismiss-functions.php:452
12918
  msgid ""
12919
  "To fix the Defender Security problem go to the Security Tweaks page, click "
12920
  "the PHP Execution option setting and click the Revert button."
12921
  msgstr ""
12922
 
12923
+ #: includes/hud-dismiss-functions.php:452
12924
  msgid ""
12925
  "o fix the iThemes problem go to the System Tweaks page, uncheck the Disable "
12926
  "PHP in Plugins option setting."
12927
  msgstr ""
12928
 
12929
+ #: includes/hud-dismiss-functions.php:494
12930
  msgid "The WordPress Firewall 2 plugin is installed and activated"
12931
  msgstr ""
12932
 
12933
+ #: includes/hud-dismiss-functions.php:494
12934
  msgid "It is recommended that you delete the WordPress Firewall 2 plugin."
12935
  msgstr ""
12936
 
12937
+ #: includes/hud-dismiss-functions.php:494
12938
  msgid " for more information."
12939
  msgstr ""
12940
 
12941
+ #: includes/hud-dismiss-functions.php:526
12942
  msgid "Notice: BPS Query String Exploits Code Changes"
12943
  msgstr ""
12944
 
12945
+ #: includes/hud-dismiss-functions.php:526
12946
  msgid ""
12947
  "Older BPS Query String Exploits code was found in BPS Custom Code. Several "
12948
  "Query String Exploits rules were changed/added/modified in the root ."
12949
  "htaccess file in BPS .49.6, .50.2 & .50.3."
12950
  msgstr ""
12951
 
12952
+ #: includes/hud-dismiss-functions.php:526
12953
  msgid ""
12954
  "Copy the new Query String Exploits section of code from your root .htaccess "
12955
  "file and paste it into this BPS Custom Code text box: CUSTOM CODE BPSQSE BPS "
12956
  "QUERY STRING EXPLOITS and click the Save Root Custom Code button."
12957
  msgstr ""
12958
 
12959
+ #: includes/hud-dismiss-functions.php:526
12960
  msgid ""
12961
  "This Notice will go away once you have copied the new Query String Exploits "
12962
  "code to BPS Custom Code and clicked the Save Root Custom Code button."
12963
  msgstr ""
12964
 
12965
+ #: includes/hud-dismiss-functions.php:545
12966
  msgid "BPS Alert! A BPS htaccess file was NOT found in the BPS Backup folder: "
12967
  msgstr ""
12968
 
12969
+ #: includes/hud-dismiss-functions.php:545
12970
  msgid " and click the BPS Backup Folder BulletProof Mode Activate button."
12971
  msgstr ""
12972
 
12973
+ #: includes/hud-dismiss-functions.php:583
12974
  msgid "New Improved BPS Speed Boost Cache Code"
12975
  msgstr ""
12976
 
12977
+ #: includes/hud-dismiss-functions.php:583
12978
  msgid ""
12979
  "Older BPS Speed Boost Cache Code was found saved in this BPS Custom Code "
12980
  "text box: CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
12981
  msgstr ""
12982
 
12983
+ #: includes/hud-dismiss-functions.php:583
12984
  msgid ""
12985
  "Newer improved BPS Speed Boost Cache Code has been created, which should "
12986
  "improve website load speed performance even more."
12987
  msgstr ""
12988
 
12989
+ #: includes/hud-dismiss-functions.php:583
12990
  msgid "Get The New Improved BPS Speed Boost Cache Code"
12991
  msgstr ""
12992
 
12993
+ #: includes/hud-dismiss-functions.php:583
12994
  msgid ". To dismiss this Notice click the Dismiss Notice button below."
12995
  msgstr ""
12996
 
12997
+ #: includes/hud-dismiss-functions.php:583
12998
  msgid ""
12999
  "To Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on "
13000
  "the Custom Code page."
13001
  msgstr ""
13002
 
13003
+ #: includes/hud-dismiss-functions.php:590
13004
  msgid "BPS Speed Boost Cache Custom Code Notice"
13005
  msgstr ""
13006
 
13007
+ #: includes/hud-dismiss-functions.php:590
13008
  msgid ""
13009
  "BPS Speed Boost Cache Code was found in this BPS Custom Code text box: "
13010
  "CUSTOM CODE TOP PHP/PHP.INI HANDLER/CACHE CODE"
13011
  msgstr ""
13012
 
13013
+ #: includes/hud-dismiss-functions.php:590
13014
  msgid ""
13015
  "and another caching plugin's Marker text was also found in this BPS Custom "
13016
  "Code text box."
13017
  msgstr ""
13018
 
13019
+ #: includes/hud-dismiss-functions.php:590
13020
  msgid "Click this link: "
13021
  msgstr ""
13022
 
13023
+ #: includes/hud-dismiss-functions.php:590
13024
  msgid "BPS Speed Boost Cache Custom Code Notice Forum Topic"
13025
  msgstr ""
13026
 
13027
+ #: includes/hud-dismiss-functions.php:590
13028
  msgid " for help information on what this Notice means and what to do next."
13029
  msgstr ""
13030
 
13031
+ #: includes/hud-dismiss-functions.php:650
13032
  msgid "BPS Plugin Automatic Update Notice"
13033
  msgstr ""
13034
 
13035
+ #: includes/hud-dismiss-functions.php:650
13036
  msgid ""
13037
  "Would you like to have BPS plugin updates installed automatically? Click "
13038
  "this link: "
13039
  msgstr ""
13040
 
13041
+ #: includes/hud-dismiss-functions.php:650
13042
  msgid " and click the BPS MU Tools Enable BPS Plugin AutoUpdates link."
13043
  msgstr ""
13044
 
13045
+ #: includes/hud-dismiss-functions.php:678
13046
  msgid "MScan First Run Notice"
13047
  msgstr ""
13048
 
13049
+ #: includes/hud-dismiss-functions.php:678
13050
  msgid ""
13051
  "Please take a few minutes to read the \"Basic Info|Recommendations|"
13052
  "Limitations|Restrictions\" help section in the"
13053
  msgstr ""
13054
 
13055
+ #: includes/hud-dismiss-functions.php:678
13056
  msgid "before running a scan."
13057
  msgstr ""
13058
 
13059
+ #: includes/hud-dismiss-functions.php:678
13060
  msgid ""
13061
  "It is highly recommended that you use the Scan Time Estimate Tool before "
13062
  "running an actual scan. The Scan Time Estimate Tool calculates the total "
13066
  "Notices button on the BPS Custom Code page."
13067
  msgstr ""
13068
 
13069
+ #: includes/hud-dismiss-functions.php:715
13070
  msgid "BPS New Feature Notice: JTC-Lite"
13071
  msgstr ""
13072
 
13073
+ #: includes/hud-dismiss-functions.php:715
13074
  msgid ""
13075
  "JTC-Lite protects the WordPress Login page Form against automated SpamBot "
13076
  "and HackerBot Brute Force Login attacks"
13077
  msgstr ""
13078
 
13079
+ #: includes/hud-dismiss-functions.php:715
13080
  msgid ""
13081
  "and also prevents User Accounts from being locked repeatedly by Brute Force "
13082
  "Login Bot attacks on your Login page Form."
13083
  msgstr ""
13084
 
13085
+ #: includes/hud-dismiss-functions.php:715
13086
  msgid "To enable/turn On JTC-Lite, click this "
13087
  msgstr ""
13088
 
13089
+ #: includes/hud-dismiss-functions.php:715
13090
  msgid ""
13091
  ". Click/check the Login Form Checkbox and click the Save Options button."
13092
  msgstr ""
13093
 
13094
+ #: includes/hud-dismiss-functions.php:715
13095
+ #: includes/hud-dismiss-functions.php:796
13096
+ #: includes/hud-dismiss-functions.php:829
13097
  msgid ""
13098
  "To Dismiss this Notice click the Dismiss Notice button below. To Reset "
13099
  "Dismiss Notices click the Reset|Recheck Dismiss Notices button on the BPS "
13100
  "Custom Code page."
13101
  msgstr ""
13102
 
13103
+ #: includes/hud-dismiss-functions.php:758
13104
  msgid "BPS Plugin Star Rating Request"
13105
  msgstr ""
13106
 
13107
+ #: includes/hud-dismiss-functions.php:758
13108
  msgid ""
13109
  "A BPS star rating only takes a couple of minutes and would be very much "
13110
  "appreciated. We are looking for 5 star ratings and not \"fancy\" reviews."
13111
  msgstr ""
13112
 
13113
+ #: includes/hud-dismiss-functions.php:758
13114
  msgid ""
13115
  "A simple review like \"works great\" or \"has been protecting my website for "
13116
  "X months or X years\" is perfect."
13117
  msgstr ""
13118
 
13119
+ #: includes/hud-dismiss-functions.php:758
13120
  msgid "Click this link to submit a BPS Plugin Star Rating: "
13121
  msgstr ""
13122
 
13123
+ #: includes/hud-dismiss-functions.php:758
13124
  msgid "BPS Plugin Star Rating"
13125
  msgstr ""
13126
 
13127
+ #: includes/hud-dismiss-functions.php:758
13128
  msgid ""
13129
  "login to the WordPress.org site and scroll to the bottom of the Reviews page."
13130
  msgstr ""
13131
 
13132
+ #: includes/hud-dismiss-functions.php:758
13133
  msgid ""
13134
  "To Dismiss this one-time Notice click the Dismiss Notice button below. To "
13135
  "Reset Dismiss Notices click the Reset|Recheck Dismiss Notices button on the "
13136
  "BPS Custom Code page."
13137
  msgstr ""
13138
 
13139
+ #: includes/hud-dismiss-functions.php:796
13140
  msgid "BPS Notice: Mod Security Module is Loaded|Enabled"
13141
  msgstr ""
13142
 
13143
+ #: includes/hud-dismiss-functions.php:796
13144
  msgid "Please take a minute to view this Mod Security help forum topic: "
13145
  msgstr ""
13146
 
13147
+ #: includes/hud-dismiss-functions.php:796
13148
  msgid "Mod Security Common Known Problems"
13149
  msgstr ""
13150
 
13151
+ #: includes/hud-dismiss-functions.php:796
13152
  msgid ""
13153
  "If you are not experiencing any of the problems listed in the Mod Security "
13154
  "help forum topic then you can dismiss this Dismiss Notice."
13155
  msgstr ""
13156
 
13157
+ #: includes/hud-dismiss-functions.php:829
13158
  msgid "BPS GDPR Compliance Notice"
13159
  msgstr ""
13160
 
13161
+ #: includes/hud-dismiss-functions.php:829
13162
  msgid ""
13163
  "A new Setup Wizard Option has been created which allows you to turn off all "
13164
  "IP address logging in BPS to make your website GDPR Compliant."
13165
  msgstr ""
13166
 
13167
+ #: includes/hud-dismiss-functions.php:829
13168
  msgid "GDPR Compliance Setup Wizard Option link"
13169
  msgstr ""
13170
 
13171
+ #: includes/hud-dismiss-functions.php:829
13172
  msgid "Choose the GDPR Compliance On setting."
13173
  msgstr ""
13174
 
13175
+ #: includes/hud-dismiss-functions.php:829
13176
  msgid "For more information about GDPR Compliance click this "
13177
  msgstr ""
13178
 
13179
+ #: includes/hud-dismiss-functions.php:829
13180
  msgid "GDPR Compliance Forum Topic link"
13181
  msgstr ""
13182
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wordpress.org/support/view/plugin-reviews/bulletproof-secur
4
  Tags: security, secure, malware scanner, login security, firewall, security plugin, wordpress security, login, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
5
  Requires at least: 3.8
6
  Tested up to: 5.3
7
- Stable tag: 3.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Tags: security, secure, malware scanner, login security, firewall, security plugin, wordpress security, login, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
5
  Requires at least: 3.8
6
  Tested up to: 5.3
7
+ Stable tag: 3.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10