BulletProof Security - Version 2.7

Version Description

Download this release

Release Info

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

Code changes from version 2.6 to 2.7

admin/core/core-custom-code.php CHANGED
@@ -140,7 +140,7 @@ global $bps_topDiv, $bps_bottomDiv;
140
  $Apache_Mod_options = get_option('bulletproof_security_options_apache_modules');
141
  ?>
142
 
143
- <div id="bps-accordion-2" class="bps-accordion-main-2" style="display:none">
144
  <h3><?php _e('Root htaccess File Custom Code', 'bulletproof-security'); ?></h3>
145
  <div id="cc-accordion-inner">
146
 
140
  $Apache_Mod_options = get_option('bulletproof_security_options_apache_modules');
141
  ?>
142
 
143
+ <div id="bps-accordion-2" class="bps-accordion-main-2" style="">
144
  <h3><?php _e('Root htaccess File Custom Code', 'bulletproof-security'); ?></h3>
145
  <div id="cc-accordion-inner">
146
 
admin/db-backup-security/db-backup-security.php CHANGED
@@ -290,7 +290,7 @@ function bpsSpinnerTableRefresh() {
290
  </p>
291
  </div>
292
 
293
- <div id="bps-accordion-1" class="bps-accordion-main-2" style="margin:0px 0px 20px 0px;display:none">
294
  <h3><?php _e('Backup Jobs ~ Manual|Scheduled', 'bulletproof-security'); ?></h3>
295
  <div id="dbb-accordion-inner">
296
 
290
  </p>
291
  </div>
292
 
293
+ <div id="bps-accordion-1" class="bps-accordion-main-2" style="margin:0px 0px 20px 0px;">
294
  <h3><?php _e('Backup Jobs ~ Manual|Scheduled', 'bulletproof-security'); ?></h3>
295
  <div id="dbb-accordion-inner">
296
 
admin/htaccess/bps-mu-tools.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: BPS MU Tools
4
  Description: <strong>Enable|Disable BPS Plugin AutoUpdates:</strong> Clicking this link enables or disables BPS Plugin automatic updates for the BPS plugin only. <strong>Enable|Disable BPS Folder|Deactivation Checks:</strong> Clicking this link enables or disables checks for whether the /bulletproof-security/ plugin folder has been renamed or deleted. Checks for whether the BPS plugin has been deactivated. Email alerts are sent every 5 minutes when the BPS plugin folder has been renamed or deleted or the BPS plugin has been deactivated. To disable these checks and the email alerts click the Disable BPS Folder|Deactivation Checks link. <strong>Note:</strong> When you click disable links you will then see enable links and vice versa.
5
- Version: 2.0
6
  Author: AITpro
7
  Author URI: https://forum.ait-pro.com/forums/forum/bulletproof-security-free/
8
  License: GPLv2 or later
@@ -16,6 +16,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
16
  ## The MU Tools auto-update function: bpsPro_mu_tools_plugin_copy() is located in general-functions.php at code line: 816
17
  ## 1.0: Added Toggle Action Links and DB options so that BPS MU Tools can be enabled or disabled.
18
  ## 2.0: Added CSRF Nonce verification to Toggle GET links.
 
19
 
20
  ## Uncommenting these filters below and commenting out this BPS filter: add_filter( 'auto_update_plugin', 'bpsPro_autoupdate_bps_plugin', 10, 2 );
21
  ## will allow ALL plugin and theme automatic updates on your website. At a later time|version this BPS MU plugin file will include options to enable|disable these things.
@@ -230,13 +231,16 @@ function bpsPro_toggle_links() {
230
  if ( ! defined('AUTH_COOKIE') )
231
  define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
232
 
 
 
 
233
  if ( ! defined('LOGGED_IN_COOKIE') )
234
  define('LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH);
235
 
236
- if ( empty($_GET['_wpnonce']) ) {
237
  $nonce = '';
238
  } else {
239
- $nonce = $_GET['_wpnonce'];
240
  }
241
 
242
  if ( ! wp_verify_nonce( $nonce, 'bps-anti-csrf' ) ) {
2
  /*
3
  Plugin Name: BPS MU Tools
4
  Description: <strong>Enable|Disable BPS Plugin AutoUpdates:</strong> Clicking this link enables or disables BPS Plugin automatic updates for the BPS plugin only. <strong>Enable|Disable BPS Folder|Deactivation Checks:</strong> Clicking this link enables or disables checks for whether the /bulletproof-security/ plugin folder has been renamed or deleted. Checks for whether the BPS plugin has been deactivated. Email alerts are sent every 5 minutes when the BPS plugin folder has been renamed or deleted or the BPS plugin has been deactivated. To disable these checks and the email alerts click the Disable BPS Folder|Deactivation Checks link. <strong>Note:</strong> When you click disable links you will then see enable links and vice versa.
5
+ Version: 3.0
6
  Author: AITpro
7
  Author URI: https://forum.ait-pro.com/forums/forum/bulletproof-security-free/
8
  License: GPLv2 or later
16
  ## The MU Tools auto-update function: bpsPro_mu_tools_plugin_copy() is located in general-functions.php at code line: 816
17
  ## 1.0: Added Toggle Action Links and DB options so that BPS MU Tools can be enabled or disabled.
18
  ## 2.0: Added CSRF Nonce verification to Toggle GET links.
19
+ ## 2.7: BugFix for SSL sites nonce verification failing.
20
 
21
  ## Uncommenting these filters below and commenting out this BPS filter: add_filter( 'auto_update_plugin', 'bpsPro_autoupdate_bps_plugin', 10, 2 );
22
  ## will allow ALL plugin and theme automatic updates on your website. At a later time|version this BPS MU plugin file will include options to enable|disable these things.
231
  if ( ! defined('AUTH_COOKIE') )
232
  define('AUTH_COOKIE', 'wordpress_' . COOKIEHASH);
233
 
234
+ if ( ! defined('SECURE_AUTH_COOKIE') )
235
+ define('SECURE_AUTH_COOKIE', 'wordpress_sec_' . COOKIEHASH);
236
+
237
  if ( ! defined('LOGGED_IN_COOKIE') )
238
  define('LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH);
239
 
240
+ if ( empty( $_REQUEST['_wpnonce'] ) ) {
241
  $nonce = '';
242
  } else {
243
+ $nonce = $_REQUEST['_wpnonce'];
244
  }
245
 
246
  if ( ! wp_verify_nonce( $nonce, 'bps-anti-csrf' ) ) {
admin/htaccess/secure.htaccess CHANGED
@@ -1,4 +1,4 @@
1
- # BULLETPROOF 2.6 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 2.7 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 2.6 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 2.7 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/js/bps-ui-accordion.js CHANGED
@@ -2,7 +2,7 @@
2
  jQuery(document).ready(function($){
3
 
4
  $( '#bps-accordion-1' ).addClass( "bps-accordion" );
5
- $( "#bps-accordion-1" ).show().accordion({
6
  collapsible: true,
7
  autoHeight: false,
8
  clearStyle: true,
@@ -11,7 +11,7 @@ jQuery(document).ready(function($){
11
 
12
  // not displayed open by default - slower/smoother animation
13
  $( '#bps-accordion-2' ).addClass( "bps-accordion" );
14
- $( "#bps-accordion-2" ).show().accordion({
15
  active: false,
16
  animate: 1500,
17
  collapsible: true,
@@ -22,7 +22,7 @@ jQuery(document).ready(function($){
22
 
23
  // displayed open by default - slower/smoother animation
24
  $( '#bps-accordion-3' ).addClass( "bps-accordion" );
25
- $( "#bps-accordion-3" ).show().accordion({
26
  animate: 1400,
27
  collapsible: true,
28
  autoHeight: false,
2
  jQuery(document).ready(function($){
3
 
4
  $( '#bps-accordion-1' ).addClass( "bps-accordion" );
5
+ $( "#bps-accordion-1" ).accordion({
6
  collapsible: true,
7
  autoHeight: false,
8
  clearStyle: true,
11
 
12
  // not displayed open by default - slower/smoother animation
13
  $( '#bps-accordion-2' ).addClass( "bps-accordion" );
14
+ $( "#bps-accordion-2" ).accordion({
15
  active: false,
16
  animate: 1500,
17
  collapsible: true,
22
 
23
  // displayed open by default - slower/smoother animation
24
  $( '#bps-accordion-3' ).addClass( "bps-accordion" );
25
+ $( "#bps-accordion-3" ).accordion({
26
  animate: 1400,
27
  collapsible: true,
28
  autoHeight: false,
admin/maintenance/maintenance.php CHANGED
@@ -499,7 +499,7 @@ bpsPro_maintenance_mode_values_form();
499
  $MMoptions = get_option('bulletproof_security_options_maint_mode');
500
  ?>
501
 
502
- <div id="bps-accordion-3" class="bps-accordion-main-2" style="display:none">
503
  <h3><?php _e('MMode Editor', 'bulletproof-security'); ?></h3>
504
  <div id="mmode-accordion-inner">
505
 
499
  $MMoptions = get_option('bulletproof_security_options_maint_mode');
500
  ?>
501
 
502
+ <div id="bps-accordion-3" class="bps-accordion-main-2" style="">
503
  <h3><?php _e('MMode Editor', 'bulletproof-security'); ?></h3>
504
  <div id="mmode-accordion-inner">
505
 
admin/mscan/mscan.php CHANGED
@@ -698,7 +698,7 @@ function MScanTimer() {
698
 
699
  <?php bpsPro_mscan_openbasedir_check(); ?>
700
 
701
- <div id="bps-accordion-1" class="bps-accordion-main-2" style="margin:0px 0px 20px 0px;display:none">
702
  <h3 id="mscan-accordion-1"><?php _e('MScan Options & Tools', 'bulletproof-security'); ?></h3>
703
  <div id="mscan-accordion-inner">
704
 
698
 
699
  <?php bpsPro_mscan_openbasedir_check(); ?>
700
 
701
+ <div id="bps-accordion-1" class="bps-accordion-main-2" style="margin:0px 0px 20px 0px;">
702
  <h3 id="mscan-accordion-1"><?php _e('MScan Options & Tools', 'bulletproof-security'); ?></h3>
703
  <div id="mscan-accordion-inner">
704
 
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: 2.6
9
  Author: AITpro Website Security
10
  Author URI: https://forum.ait-pro.com/read-me-first/
11
  */
@@ -28,9 +28,9 @@ Author URI: https://forum.ait-pro.com/read-me-first/
28
  */
29
 
30
  // BPS variables
31
- define( 'BULLETPROOF_VERSION', '2.6' );
32
- $bps_last_version = '2.5';
33
- $bps_version = '2.6';
34
  $aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
35
  // Top div & bottom div
36
  $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: 2.7
9
  Author: AITpro Website Security
10
  Author URI: https://forum.ait-pro.com/read-me-first/
11
  */
28
  */
29
 
30
  // BPS variables
31
+ define( 'BULLETPROOF_VERSION', '2.7' );
32
+ $bps_last_version = '2.6';
33
+ $bps_version = '2.7';
34
  $aitpro_bullet = '<img src="'.plugins_url('/bulletproof-security/admin/images/aitpro-bullet.png').'" style="padding:0px 3px 0px 3px;" />';
35
  // Top div & bottom div
36
  $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/general-functions.php CHANGED
@@ -866,8 +866,9 @@ function bpsPro_mu_tools_plugin_copy() {
866
 
867
  $check_string = @file_get_contents($BPS_MU_tools_copy);
868
  $pos1 = strpos( $check_string, 'Version: 1.0' );
 
869
 
870
- if ( $pos1 !== false ) {
871
  @copy($BPS_MU_tools, $BPS_MU_tools_copy);
872
  }
873
  }
866
 
867
  $check_string = @file_get_contents($BPS_MU_tools_copy);
868
  $pos1 = strpos( $check_string, 'Version: 1.0' );
869
+ $pos2 = strpos( $check_string, 'Version: 2.0' );
870
 
871
+ if ( $pos1 !== false || $pos2 !== false ) {
872
  @copy($BPS_MU_tools, $BPS_MU_tools_copy);
873
  }
874
  }
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: 2017-09-18 14:26-0700\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"
@@ -1074,7 +1074,7 @@ msgstr ""
1074
  #: admin/email-log-settings/email-log-settings.php:107
1075
  #: admin/login/login.php:192 admin/login/login.php:811
1076
  #: admin/login/login.php:1000 admin/maintenance/maintenance.php:200
1077
- #: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:109
1078
  #: admin/security-log/security-log.php:246
1079
  #: admin/system-info/system-info.php:103 admin/theme-skin/theme-skin.php:110
1080
  #: admin/wizard/wizard.php:1013 admin/wizard/wizard.php:1081
@@ -1597,8 +1597,8 @@ msgstr ""
1597
  msgid "Rate BPS"
1598
  msgstr ""
1599
 
1600
- #: admin/core/core.php:126 admin/includes/admin.php:300
1601
- #: admin/includes/admin.php:301
1602
  msgid "BulletProof Security ~ htaccess Core"
1603
  msgstr ""
1604
 
@@ -1633,8 +1633,8 @@ msgstr ""
1633
  #: admin/core/core.php:184 admin/db-backup-security/db-backup-security.php:262
1634
  #: admin/db-backup-security/db-backup-security.php:1652
1635
  #: admin/email-log-settings/email-log-settings.php:88 admin/login/login.php:164
1636
- #: admin/maintenance/maintenance.php:164 admin/mscan/mscan.php:90
1637
- #: admin/mscan/mscan.php:1874 admin/security-log/security-log.php:227
1638
  #: admin/system-info/system-info.php:90 admin/theme-skin/theme-skin.php:92
1639
  #: admin/theme-skin/theme-skin.php:215
1640
  msgid "Help &amp; FAQ"
@@ -1659,7 +1659,7 @@ msgstr ""
1659
  #: admin/db-backup-security/db-backup-security.php:1290
1660
  #: admin/email-log-settings/email-log-settings.php:96 admin/login/login.php:181
1661
  #: admin/login/login.php:800 admin/maintenance/maintenance.php:184
1662
- #: admin/maintenance/maintenance.php:186 admin/mscan/mscan.php:98
1663
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
1664
  #: admin/wizard/wizard.php:998 admin/wizard/wizard.php:1067
1665
  msgid "Want even more security protection?"
@@ -1729,7 +1729,7 @@ msgstr ""
1729
  #: admin/email-log-settings/email-log-settings.php:102
1730
  #: admin/login/login.php:187 admin/login/login.php:806
1731
  #: admin/login/login.php:991 admin/maintenance/maintenance.php:195
1732
- #: admin/mscan/mscan.php:104 admin/mscan/mscan.php:1675
1733
  #: admin/security-log/security-log.php:241 admin/system-info/system-info.php:98
1734
  #: admin/theme-skin/theme-skin.php:107 admin/wizard/wizard.php:1004
1735
  #: admin/wizard/wizard.php:1073
@@ -1740,7 +1740,7 @@ msgstr ""
1740
  #: admin/db-backup-security/db-backup-security.php:284
1741
  #: admin/email-log-settings/email-log-settings.php:110
1742
  #: admin/login/login.php:1003 admin/maintenance/maintenance.php:203
1743
- #: admin/mscan/mscan.php:111 admin/system-info/system-info.php:106
1744
  msgid "Forum Help Links: "
1745
  msgstr ""
1746
 
@@ -1750,7 +1750,7 @@ msgstr ""
1750
 
1751
  #: admin/core/core.php:214 admin/core/core.php:324
1752
  #: admin/email-log-settings/email-log-settings.php:113
1753
- #: admin/mscan/mscan.php:116 admin/security-log/security-log.php:252
1754
  msgid "BPS Troubleshooting Steps"
1755
  msgstr ""
1756
 
@@ -2338,7 +2338,7 @@ msgstr ""
2338
 
2339
  #: admin/core/core.php:1588
2340
  #: admin/db-backup-security/db-backup-security.php:1656
2341
- #: admin/mscan/mscan.php:1878 admin/theme-skin/theme-skin.php:219
2342
  msgid "Whats New in "
2343
  msgstr ""
2344
 
@@ -2380,7 +2380,7 @@ msgstr ""
2380
  #: admin/db-backup-security/db-backup-security.php:1290
2381
  #: admin/email-log-settings/email-log-settings.php:96
2382
  #: admin/maintenance/maintenance.php:184 admin/maintenance/maintenance.php:186
2383
- #: admin/mscan/mscan.php:98 admin/security-log/security-log.php:235
2384
  #: admin/theme-skin/theme-skin.php:101 admin/wizard/wizard.php:998
2385
  #: admin/wizard/wizard.php:1067
2386
  msgid "Get BPS Pro ARQ IDPS"
@@ -2470,7 +2470,7 @@ msgstr ""
2470
  #: admin/db-backup-security/db-backup-security.php:1660
2471
  #: admin/email-log-settings/email-log-settings.php:222
2472
  #: admin/login/login.php:1358 admin/maintenance/maintenance.php:2099
2473
- #: admin/mscan/mscan.php:1881 admin/security-log/security-log.php:807
2474
  #: admin/system-info/system-info.php:1136 admin/theme-skin/theme-skin.php:222
2475
  msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
2476
  msgstr ""
@@ -3405,7 +3405,7 @@ msgstr ""
3405
  #: admin/db-backup-security/db-backup-security.php:259
3406
  #: admin/db-backup-security/db-backup-security.php:276
3407
  #: admin/db-backup-security/db-backup-security.php:278
3408
- #: admin/includes/admin.php:306
3409
  msgid "DB Backup"
3410
  msgstr ""
3411
 
@@ -3449,7 +3449,7 @@ msgstr ""
3449
  #: admin/db-backup-security/db-backup-security.php:553
3450
  #: admin/login/login.php:355 admin/login/login.php:384
3451
  #: admin/login/login.php:456 admin/login/login.php:485
3452
- #: admin/mscan/mscan.php:1318
3453
  msgid "Delete"
3454
  msgstr ""
3455
 
@@ -3577,7 +3577,7 @@ msgid "Backup Job Settings|Independent Options"
3577
  msgstr ""
3578
 
3579
  #: admin/db-backup-security/db-backup-security.php:692
3580
- #: admin/mscan/mscan.php:899
3581
  msgid "All"
3582
  msgstr ""
3583
 
@@ -4066,7 +4066,7 @@ msgid ""
4066
  msgstr ""
4067
 
4068
  #: admin/db-backup-security/db-backup-security.php:1159
4069
- #: admin/mscan/mscan.php:1727
4070
  msgid ""
4071
  "Then click the Delete Log button to delete the contents of this Log file."
4072
  msgstr ""
@@ -4086,7 +4086,7 @@ msgid "Clicking OK will delete the contents of your DB Backup Log file."
4086
  msgstr ""
4087
 
4088
  #: admin/db-backup-security/db-backup-security.php:1196
4089
- #: admin/mscan/mscan.php:1769 admin/security-log/security-log.php:509
4090
  msgid "Click OK to Delete the Log file contents or click Cancel."
4091
  msgstr ""
4092
 
@@ -4236,12 +4236,12 @@ msgid ""
4236
  msgstr ""
4237
 
4238
  #: admin/db-backup-security/db-backup-security.php:1657
4239
- #: admin/mscan/mscan.php:1879 admin/theme-skin/theme-skin.php:220
4240
  msgid "BPS Pro Features & Version Release Dates"
4241
  msgstr ""
4242
 
4243
  #: admin/db-backup-security/db-backup-security.php:1658
4244
- #: admin/mscan/mscan.php:1880 admin/theme-skin/theme-skin.php:221
4245
  msgid "Video Tutorials"
4246
  msgstr ""
4247
 
@@ -4267,7 +4267,7 @@ msgstr ""
4267
 
4268
  #: admin/email-log-settings/email-log-settings.php:102
4269
  #: admin/email-log-settings/email-log-settings.php:104
4270
- #: admin/includes/admin.php:317
4271
  msgid "Email|Log Settings"
4272
  msgstr ""
4273
 
@@ -4426,128 +4426,133 @@ msgstr ""
4426
  msgid "BulletProof Security Settings"
4427
  msgstr ""
4428
 
4429
- #: admin/includes/admin.php:285 admin/includes/admin.php:300
4430
  msgid "BPS Security"
4431
  msgstr ""
4432
 
4433
- #: admin/includes/admin.php:286 admin/includes/admin.php:303
 
 
 
 
4434
  msgid "Login Security"
4435
  msgstr ""
4436
 
4437
- #: admin/includes/admin.php:292 admin/includes/admin.php:313
 
 
 
 
 
 
4438
  #: admin/maintenance/maintenance.php:163 admin/maintenance/maintenance.php:195
4439
  #: admin/maintenance/maintenance.php:197
4440
  msgid "Maintenance Mode"
4441
  msgstr ""
4442
 
4443
- #: admin/includes/admin.php:295 admin/includes/admin.php:316
4444
  #: admin/system-info/system-info.php:88
4445
  msgid "System Info"
4446
  msgstr ""
4447
 
4448
- #: admin/includes/admin.php:296 admin/includes/admin.php:318
4449
  #: admin/theme-skin/theme-skin.php:91 admin/theme-skin/theme-skin.php:107
4450
  #: admin/theme-skin/theme-skin.php:109
4451
  msgid "UI|UX Settings"
4452
  msgstr ""
4453
 
4454
- #: admin/includes/admin.php:301
4455
  msgid "htaccess Core"
4456
  msgstr ""
4457
 
4458
- #: admin/includes/admin.php:302
4459
  msgid "MScan ~ Malware Scanner"
4460
  msgstr ""
4461
 
4462
- #: admin/includes/admin.php:302 admin/mscan/mscan.php:88
4463
- #: admin/mscan/mscan.php:104 admin/mscan/mscan.php:106
4464
  msgid "MScan"
4465
  msgstr ""
4466
 
4467
- #: admin/includes/admin.php:303 admin/includes/admin.php:304
4468
- #: admin/includes/admin.php:305
4469
  msgid "Login Security ~ JTC-Lite ~ ISL ~ ACE"
4470
  msgstr ""
4471
 
4472
- #: admin/includes/admin.php:304 admin/login/login.php:158
4473
- #: admin/login/login.php:806 admin/login/login.php:808
4474
- msgid "JTC-Lite"
4475
- msgstr ""
4476
-
4477
- #: admin/includes/admin.php:305
4478
  msgid "Idle Session Logout<br>Cookie Expiration"
4479
  msgstr ""
4480
 
4481
- #: admin/includes/admin.php:306
4482
  msgid "DB Backup & Security"
4483
  msgstr ""
4484
 
4485
- #: admin/includes/admin.php:307 admin/security-log/security-log.php:226
4486
  #: admin/security-log/security-log.php:241
4487
  #: admin/security-log/security-log.php:243
4488
  msgid "Security Log"
4489
  msgstr ""
4490
 
4491
- #: admin/includes/admin.php:319 admin/wizard/wizard.php:974
4492
  #: admin/wizard/wizard.php:1004 admin/wizard/wizard.php:1006
4493
  #: bulletproof-security.php:100 bulletproof-security.php:103
4494
  msgid "Setup Wizard"
4495
  msgstr ""
4496
 
4497
- #: admin/includes/admin.php:322 admin/includes/admin.php:330
4498
  #: admin/includes/uninstall.php:45
4499
  msgid "BPS Plugin Uninstall Options"
4500
  msgstr ""
4501
 
4502
- #: admin/includes/admin.php:365
4503
  msgid "BPS UI|UX Debug: SLF css Scripts Nulled"
4504
  msgstr ""
4505
 
4506
- #: admin/includes/admin.php:372
4507
  msgid "BPS UI|UX Debug: SLF css Scripts Not Nulled|Allowed"
4508
  msgstr ""
4509
 
4510
- #: admin/includes/admin.php:401
4511
  msgid "BPS UI|UX Debug: SLF js Scripts Nulled"
4512
  msgstr ""
4513
 
4514
- #: admin/includes/admin.php:408
4515
  msgid "BPS UI|UX Debug: SLF js Scripts Not Nulled|Allowed"
4516
  msgstr ""
4517
 
4518
- #: admin/includes/admin.php:484
4519
  msgid "BPS UI|UX Debug: Scripts|Styles Dequeued"
4520
  msgstr ""
4521
 
4522
- #: admin/includes/admin.php:496
4523
  msgid "Script Dequeued: "
4524
  msgstr ""
4525
 
4526
- #: admin/includes/admin.php:502
4527
  msgid ""
4528
  "No plugin or theme Scripts were Dequeued (prevented) from loading in BPS "
4529
  "plugin pages"
4530
  msgstr ""
4531
 
4532
- #: admin/includes/admin.php:514
4533
  msgid "Style Dequeued: "
4534
  msgstr ""
4535
 
4536
- #: admin/includes/admin.php:520
4537
  msgid ""
4538
  "No plugin or theme Styles were Dequeued (prevented) from loading in BPS "
4539
  "plugin pages"
4540
  msgstr ""
4541
 
4542
- #: admin/includes/admin.php:558 admin/includes/admin.php:591
4543
  msgid "BPS UI|UX Debug: WP Toolbar nodes|menu items Removed"
4544
  msgstr ""
4545
 
4546
- #: admin/includes/admin.php:570 admin/includes/admin.php:603
4547
  msgid "WP Toolbar node|menu item Removed: "
4548
  msgstr ""
4549
 
4550
- #: admin/includes/admin.php:578 admin/includes/admin.php:611
4551
  msgid "No WP Toolbar nodes|menu items were Removed in BPS plugin pages"
4552
  msgstr ""
4553
 
@@ -4833,8 +4838,8 @@ msgstr ""
4833
 
4834
  #: admin/login/login.php:422 admin/login/login.php:523
4835
  #: admin/login/login.php:588 admin/login/login.php:688
4836
- #: admin/mscan/mscan.php:1129 admin/mscan/mscan.php:1341
4837
- #: admin/mscan/mscan.php:1463 admin/mscan/mscan.php:1619
4838
  msgid "Submit"
4839
  msgstr ""
4840
 
@@ -4852,7 +4857,7 @@ msgid ""
4852
  msgstr ""
4853
 
4854
  #: admin/login/login.php:422 admin/login/login.php:523
4855
- #: admin/mscan/mscan.php:1342 admin/mscan/mscan.php:1620
4856
  msgid "Clear|Refresh"
4857
  msgstr ""
4858
 
@@ -6896,7 +6901,7 @@ msgstr ""
6896
  msgid "Clicking the Stop Scan button stops a scan."
6897
  msgstr ""
6898
 
6899
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:885
6900
  msgid "Hosting Account Root Folders"
6901
  msgstr ""
6902
 
@@ -6929,7 +6934,7 @@ msgid ""
6929
  "than 300 seconds."
6930
  msgstr ""
6931
 
6932
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:969
6933
  msgid "Scan Database"
6934
  msgstr ""
6935
 
@@ -6939,7 +6944,7 @@ msgid ""
6939
  "suspicious code."
6940
  msgstr ""
6941
 
6942
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:975
6943
  msgid "Scan Image Files (Stegosploit|Exif Hack)"
6944
  msgstr ""
6945
 
@@ -6950,7 +6955,7 @@ msgid ""
6950
  "hacks. It is recommended that you do not scan image files."
6951
  msgstr ""
6952
 
6953
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:981
6954
  msgid "Scan Skipped Files Only"
6955
  msgstr ""
6956
 
@@ -6962,7 +6967,7 @@ msgid ""
6962
  "MScan option settings when running a Skipped File scan."
6963
  msgstr ""
6964
 
6965
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:987
6966
  msgid "Automatically Delete /tmp Files"
6967
  msgstr ""
6968
 
@@ -6972,7 +6977,7 @@ msgid ""
6972
  "commonly hide hacker files in the /tmp folder."
6973
  msgstr ""
6974
 
6975
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:993
6976
  msgid "Scheduled Scan Frequency (BPS Pro only)"
6977
  msgstr ""
6978
 
@@ -7026,7 +7031,7 @@ msgid ""
7026
  "using this tool."
7027
  msgstr ""
7028
 
7029
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1056
7030
  msgid "View|Ignore|Delete Suspicious Files"
7031
  msgstr ""
7032
 
@@ -7041,7 +7046,7 @@ msgid ""
7041
  "ignored file it will be scanned in future scans."
7042
  msgstr ""
7043
 
7044
- #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1393
7045
  msgid "View|Ignore Suspicious DB Entries"
7046
  msgstr ""
7047
 
@@ -7114,44 +7119,56 @@ msgstr ""
7114
  msgid "BulletProof Security ~ MScan Malware Scanner"
7115
  msgstr ""
7116
 
7117
- #: admin/mscan/mscan.php:89 admin/mscan/mscan.php:1675
7118
- #: admin/mscan/mscan.php:1677
 
 
 
 
 
 
 
 
 
 
 
 
7119
  msgid "MScan Log"
7120
  msgstr ""
7121
 
7122
- #: admin/mscan/mscan.php:98
7123
  msgid "MScan ~ "
7124
  msgstr ""
7125
 
7126
- #: admin/mscan/mscan.php:98
7127
  msgid ""
7128
  "Scans website files for hacker files or code ~ Scans the WP database for "
7129
  "hacker code."
7130
  msgstr ""
7131
 
7132
- #: admin/mscan/mscan.php:98
7133
  msgid ""
7134
  "Get real-time automated security protection that is far superior to all "
7135
  "malware scanners: "
7136
  msgstr ""
7137
 
7138
- #: admin/mscan/mscan.php:114 includes/hud-dismiss-functions.php:672
7139
  msgid "MScan Malware Scanner Guide"
7140
  msgstr ""
7141
 
7142
- #: admin/mscan/mscan.php:115
7143
  msgid "MScan Troubleshooting & Code Posting"
7144
  msgstr ""
7145
 
7146
- #: admin/mscan/mscan.php:156
7147
  msgid "The MScan Database Table: "
7148
  msgstr ""
7149
 
7150
- #: admin/mscan/mscan.php:156
7151
  msgid " data has been deleted."
7152
  msgstr ""
7153
 
7154
- #: admin/mscan/mscan.php:192
7155
  msgid ""
7156
  "MScan Status option values have been deleted. The Scan Completed timestamp, "
7157
  "Total Scan Time, Total Files Scanned, Skipped Files, Suspicious Files and "
@@ -7159,26 +7176,26 @@ msgid ""
7159
  "display blank or 0"
7160
  msgstr ""
7161
 
7162
- #: admin/mscan/mscan.php:233 admin/mscan/mscan.php:295
7163
- #: admin/mscan/mscan.php:518 admin/mscan/mscan.php:776
7164
  msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
7165
  msgstr ""
7166
 
7167
- #: admin/mscan/mscan.php:237 admin/mscan/mscan.php:299
7168
- #: admin/mscan/mscan.php:396 admin/mscan/mscan.php:473
7169
- #: admin/mscan/mscan.php:784
7170
  msgid ""
7171
  "Image file scanning is turned On. On some web hosts scanning image files "
7172
  "will cause the scan to stop/fail."
7173
  msgstr ""
7174
 
7175
- #: admin/mscan/mscan.php:241
7176
  msgid ""
7177
  "MScan scanning has been stopped. Note: The Stop Scan button also stops the "
7178
  "Scan Time Estimate Tool from calculating estimated scan time."
7179
  msgstr ""
7180
 
7181
- #: admin/mscan/mscan.php:311
7182
  msgid ""
7183
  "Calculating Scan Time. The default scan time calculation time of 30 seconds "
7184
  "was exceeded. If it takes longer than 30 seconds to calculate total scan "
@@ -7191,82 +7208,82 @@ msgid ""
7191
  "see if the the estimated scan time was successfully logged."
7192
  msgstr ""
7193
 
7194
- #: admin/mscan/mscan.php:311
7195
  msgid "Refresh"
7196
  msgstr ""
7197
 
7198
- #: admin/mscan/mscan.php:319
7199
  msgid ""
7200
  "The estimated total scan time is more than the Max Time Limit to Scan option "
7201
  "setting time limit."
7202
  msgstr ""
7203
 
7204
- #: admin/mscan/mscan.php:319
7205
  msgid ""
7206
  "The scan will automatically end/stop when the Max Time Limit to Scan option "
7207
  "setting time limit is reached."
7208
  msgstr ""
7209
 
7210
- #: admin/mscan/mscan.php:319
7211
  msgid "Estimated Total Scan Time: "
7212
  msgstr ""
7213
 
7214
- #: admin/mscan/mscan.php:319
7215
  msgid "Max Time Limit to Scan: "
7216
  msgstr ""
7217
 
7218
- #: admin/mscan/mscan.php:319
7219
  msgid "Click the MScan Read Me help button for a recommended solution."
7220
  msgstr ""
7221
 
7222
- #: admin/mscan/mscan.php:325
7223
  msgid ""
7224
  "MScan Scanning has started. You can leave the MScan page while a scan is in "
7225
  "progress and the scan will continue until it is completed or you can open "
7226
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7227
  msgstr ""
7228
 
7229
- #: admin/mscan/mscan.php:338 admin/mscan/mscan.php:344
7230
  msgid "Suspicious code or files were detected."
7231
  msgstr ""
7232
 
7233
- #: admin/mscan/mscan.php:338 admin/mscan/mscan.php:344
7234
  msgid ""
7235
  "Click the View|Ignore|Delete Suspicious Files accordion tab to View, Ignore "
7236
  "or Delete suspicious files. For additional help information click the MScan "
7237
  "Read Me help button."
7238
  msgstr ""
7239
 
7240
- #: admin/mscan/mscan.php:348
7241
  msgid "Suspicious code was detected in your database."
7242
  msgstr ""
7243
 
7244
- #: admin/mscan/mscan.php:348
7245
  msgid ""
7246
  "Click the View|Ignore Suspicious DB Entries accordion tab to view and ignore "
7247
  "suspicious db entries. For additional help information click the MScan Read "
7248
  "Me help button."
7249
  msgstr ""
7250
 
7251
- #: admin/mscan/mscan.php:353
7252
  msgid ""
7253
  "MScan Scan has completed. To view extensive details of all scanning phases "
7254
  "view the MScan Log file."
7255
  msgstr ""
7256
 
7257
- #: admin/mscan/mscan.php:392
7258
  msgid ""
7259
  "Skipped file scanning is turned On. The scan time estimate is for scanning "
7260
  "skipped files only."
7261
  msgstr ""
7262
 
7263
- #: admin/mscan/mscan.php:400
7264
  msgid ""
7265
  "The total estimated time of an actual scan based on your MScan option "
7266
  "settings is: "
7267
  msgstr ""
7268
 
7269
- #: admin/mscan/mscan.php:400
7270
  msgid ""
7271
  "Seconds. The MScan Log file contains extensive details about the estimated "
7272
  "scan time. Note: The Scan Time Estimate Tool does not affect or change any "
@@ -7274,13 +7291,13 @@ msgid ""
7274
  "to the estimated scan time."
7275
  msgstr ""
7276
 
7277
- #: admin/mscan/mscan.php:469
7278
  msgid ""
7279
  "Skipped file scanning is turned On. The scan time estimate will be for "
7280
  "scanning skipped files only."
7281
  msgstr ""
7282
 
7283
- #: admin/mscan/mscan.php:477
7284
  msgid ""
7285
  "Calculating Estimated Scan Time. Notes: The Scan Time Estimate Tool does not "
7286
  "affect or change any previous scan results except for the Total Scan Time, "
@@ -7289,154 +7306,154 @@ msgid ""
7289
  "the estimated scan time."
7290
  msgstr ""
7291
 
7292
- #: admin/mscan/mscan.php:522
7293
  msgid ""
7294
  "Calculating Scan Time. You can leave the MScan page while a scan is in "
7295
  "progress and the scan will continue until it is completed or you can open "
7296
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7297
  msgstr ""
7298
 
7299
- #: admin/mscan/mscan.php:678
7300
  msgid "Click OK to start scanning or click Cancel."
7301
  msgstr ""
7302
 
7303
- #: admin/mscan/mscan.php:685
7304
  msgid "Click OK to stop scanning or click Cancel."
7305
  msgstr ""
7306
 
7307
- #: admin/mscan/mscan.php:690
7308
  msgid "MScan Options & Tools"
7309
  msgstr ""
7310
 
7311
- #: admin/mscan/mscan.php:703
7312
  msgid "Save MScan Options"
7313
  msgstr ""
7314
 
7315
- #: admin/mscan/mscan.php:780
7316
  msgid ""
7317
  "Skipped file scanning is turned On. There are no skipped files to be "
7318
  "scanned. Either there really are not any skipped files to scan or you have "
7319
  "not run a regular scan yet with the Skipped File Scan option turned Off."
7320
  msgstr ""
7321
 
7322
- #: admin/mscan/mscan.php:788
7323
  msgid "MScan Options saved."
7324
  msgstr ""
7325
 
7326
- #: admin/mscan/mscan.php:886
7327
  msgid "MScan Options"
7328
  msgstr ""
7329
 
7330
- #: admin/mscan/mscan.php:887
7331
  msgid "MScan Tools"
7332
  msgstr ""
7333
 
7334
- #: admin/mscan/mscan.php:900
7335
  msgid "Folder Name"
7336
  msgstr ""
7337
 
7338
- #: admin/mscan/mscan.php:916
7339
  msgid "Folder is not readable"
7340
  msgstr ""
7341
 
7342
- #: admin/mscan/mscan.php:929
7343
  msgid ""
7344
  "This folder contains another WordPress website. Click the MScan Read Me help "
7345
  "button above and read the \"Scanning Other WordPress Sites\" help section."
7346
  msgstr ""
7347
 
7348
- #: admin/mscan/mscan.php:955
7349
  msgid "Max File Size Limit to Scan:"
7350
  msgstr ""
7351
 
7352
- #: admin/mscan/mscan.php:959
7353
  msgid "Max Time Limit to Scan:"
7354
  msgstr ""
7355
 
7356
- #: admin/mscan/mscan.php:963
7357
  msgid "Exclude Individual Folders"
7358
  msgstr ""
7359
 
7360
- #: admin/mscan/mscan.php:963
7361
  msgid "Enter one folder path per line. Include folder slashes."
7362
  msgstr ""
7363
 
7364
- #: admin/mscan/mscan.php:963
7365
  msgid "Example:"
7366
  msgstr ""
7367
 
7368
- #: admin/mscan/mscan.php:963 admin/mscan/mscan.php:981
7369
  msgid "Click the MScan Read Me help button for more help info."
7370
  msgstr ""
7371
 
7372
- #: admin/mscan/mscan.php:971
7373
  msgid "Database Scan On"
7374
  msgstr ""
7375
 
7376
- #: admin/mscan/mscan.php:972
7377
  msgid "Database Scan Off"
7378
  msgstr ""
7379
 
7380
- #: admin/mscan/mscan.php:977
7381
  msgid "Image File Scan Off"
7382
  msgstr ""
7383
 
7384
- #: admin/mscan/mscan.php:978
7385
  msgid "Image File Scan On"
7386
  msgstr ""
7387
 
7388
- #: admin/mscan/mscan.php:981
7389
  msgid ""
7390
  "When Skipped File Scan is On only skipped files will be scanned. Note: The "
7391
  "only MScan option setting that has any affect while Skipped File Scan is On "
7392
  "is Image File Scan On or Off."
7393
  msgstr ""
7394
 
7395
- #: admin/mscan/mscan.php:983
7396
  msgid "Skipped File Scan Off"
7397
  msgstr ""
7398
 
7399
- #: admin/mscan/mscan.php:984
7400
  msgid "Skipped File Scan On"
7401
  msgstr ""
7402
 
7403
- #: admin/mscan/mscan.php:989
7404
  msgid "Delete Tmp Files On"
7405
  msgstr ""
7406
 
7407
- #: admin/mscan/mscan.php:990
7408
  msgid "Delete Tmp Files Off"
7409
  msgstr ""
7410
 
7411
- #: admin/mscan/mscan.php:995
7412
  msgid "Scheduled Scan Off"
7413
  msgstr ""
7414
 
7415
- #: admin/mscan/mscan.php:996
7416
  msgid "Run Scan Every 60 Minutes"
7417
  msgstr ""
7418
 
7419
- #: admin/mscan/mscan.php:997
7420
  msgid "Run Scan Every 3 Hours"
7421
  msgstr ""
7422
 
7423
- #: admin/mscan/mscan.php:998
7424
  msgid "Run Scan Every 6 Hours"
7425
  msgstr ""
7426
 
7427
- #: admin/mscan/mscan.php:999
7428
  msgid "Run Scan Every 12 Hours"
7429
  msgstr ""
7430
 
7431
- #: admin/mscan/mscan.php:1000
7432
  msgid "Run Scan Every 24 Hours"
7433
  msgstr ""
7434
 
7435
- #: admin/mscan/mscan.php:1003
7436
  msgid "Click OK to save MScan Options or click Cancel"
7437
  msgstr ""
7438
 
7439
- #: admin/mscan/mscan.php:1012
7440
  msgid ""
7441
  "IMPORTANT: You can stop the scan time estimate if it hangs or is taking too "
7442
  "long by clicking the Stop Scan button.\\n"
@@ -7455,7 +7472,7 @@ msgid ""
7455
  "OK to get a scan time estimate or click Cancel"
7456
  msgstr ""
7457
 
7458
- #: admin/mscan/mscan.php:1017
7459
  msgid ""
7460
  "This tool allows you to delete all of the MScan Status option values.\\n"
7461
  "\\n-------------------------------------------------------------\\n\\nThe "
@@ -7467,7 +7484,7 @@ msgid ""
7467
  "OK to delete scan status option values or click Cancel"
7468
  msgstr ""
7469
 
7470
- #: admin/mscan/mscan.php:1022
7471
  msgid ""
7472
  "Deleting all database scan data is a reset that deletes any/all changes you "
7473
  "have made and saved using the View|Ignore|Delete Suspicious Files and View|"
@@ -7476,134 +7493,134 @@ msgid ""
7476
  "OK to delete all database Scan Data or click Cancel"
7477
  msgstr ""
7478
 
7479
- #: admin/mscan/mscan.php:1170
7480
  msgid " has been deleted."
7481
  msgstr ""
7482
 
7483
- #: admin/mscan/mscan.php:1191
7484
  msgid ""
7485
  " Current Status has been changed to Ignored File and this file will not be "
7486
  "scanned in any future MScan Scans."
7487
  msgstr ""
7488
 
7489
- #: admin/mscan/mscan.php:1212
7490
  msgid ""
7491
  " Ignored File Status has been removed. The previous Status of the file will "
7492
  "be displayed again and this file will be scanned in future MScan scans."
7493
  msgstr ""
7494
 
7495
- #: admin/mscan/mscan.php:1234 admin/mscan/mscan.php:1243
7496
  msgid "Close File"
7497
  msgstr ""
7498
 
7499
- #: admin/mscan/mscan.php:1234 admin/mscan/mscan.php:1243
7500
- #: admin/mscan/mscan.php:1540
7501
  msgid "MScan Pattern Match"
7502
  msgstr ""
7503
 
7504
- #: admin/mscan/mscan.php:1234
7505
  msgid ""
7506
  "Only the MScan Pattern Match is displayed for images instead of the image "
7507
  "file code."
7508
  msgstr ""
7509
 
7510
- #: admin/mscan/mscan.php:1234
7511
  msgid ""
7512
  "Opening image files to view image file code does not work well in a Browser."
7513
  msgstr ""
7514
 
7515
- #: admin/mscan/mscan.php:1234
7516
  msgid ""
7517
  "You can download suspicious image files and use a code editor like Notepad++ "
7518
  "to check image file code for any malicious code."
7519
  msgstr ""
7520
 
7521
- #: admin/mscan/mscan.php:1234 admin/mscan/mscan.php:1243
7522
- #: admin/mscan/mscan.php:1540
7523
  msgid ""
7524
  "If you are not sure what to check for or what is and is not malicious code "
7525
  "then click the MScan Read Me help button."
7526
  msgstr ""
7527
 
7528
- #: admin/mscan/mscan.php:1243
7529
  msgid ""
7530
  "You can use your Browser's Search or Find feature to search the file "
7531
  "contents/code displayed below using the MScan Pattern Match above for the "
7532
  "suspicious code that was detected by MScan."
7533
  msgstr ""
7534
 
7535
- #: admin/mscan/mscan.php:1243
7536
  msgid ""
7537
  "You can download suspicious files if you would like to check the file "
7538
  "contents/code more extensively with a code editor like Notepad++."
7539
  msgstr ""
7540
 
7541
- #: admin/mscan/mscan.php:1271 admin/mscan/mscan.php:1562
7542
  msgid "Current Status"
7543
  msgstr ""
7544
 
7545
- #: admin/mscan/mscan.php:1272
7546
  msgid "View<br>File"
7547
  msgstr ""
7548
 
7549
- #: admin/mscan/mscan.php:1273
7550
  msgid "Ignore<br>File"
7551
  msgstr ""
7552
 
7553
- #: admin/mscan/mscan.php:1274
7554
  msgid "Unignore<br>File"
7555
  msgstr ""
7556
 
7557
- #: admin/mscan/mscan.php:1275
7558
  msgid "Delete<br>File"
7559
  msgstr ""
7560
 
7561
- #: admin/mscan/mscan.php:1276 admin/system-info/system-info.php:905
7562
  #: admin/system-info/system-info.php:938
7563
  msgid "File Path"
7564
  msgstr ""
7565
 
7566
- #: admin/mscan/mscan.php:1277 admin/mscan/mscan.php:1569
7567
  msgid "Pattern<br>Match"
7568
  msgstr ""
7569
 
7570
- #: admin/mscan/mscan.php:1278 admin/mscan/mscan.php:1570
7571
  msgid "Scan<br>Time"
7572
  msgstr ""
7573
 
7574
- #: admin/mscan/mscan.php:1291
7575
  msgid "Skipped File"
7576
  msgstr ""
7577
 
7578
- #: admin/mscan/mscan.php:1291
7579
  msgid "Not Scanned"
7580
  msgstr ""
7581
 
7582
- #: admin/mscan/mscan.php:1295 admin/mscan/mscan.php:1302
7583
  msgid "Ignored File"
7584
  msgstr ""
7585
 
7586
- #: admin/mscan/mscan.php:1307
7587
  msgid "Suspicious File"
7588
  msgstr ""
7589
 
7590
- #: admin/mscan/mscan.php:1313 admin/mscan/mscan.php:1591
7591
  msgid "View"
7592
  msgstr ""
7593
 
7594
- #: admin/mscan/mscan.php:1314 admin/mscan/mscan.php:1592
7595
  msgid "Ignore"
7596
  msgstr ""
7597
 
7598
- #: admin/mscan/mscan.php:1316 admin/mscan/mscan.php:1593
7599
  msgid "Unignore"
7600
  msgstr ""
7601
 
7602
- #: admin/mscan/mscan.php:1327
7603
  msgid "No Suspicious Files were detected"
7604
  msgstr ""
7605
 
7606
- #: admin/mscan/mscan.php:1341
7607
  msgid ""
7608
  "View File Option: Selecting the View File Checkbox Form option will display "
7609
  "the contents of the file that you have selected to view.\\n"
@@ -7623,41 +7640,41 @@ msgid ""
7623
  "OK to proceed or click Cancel"
7624
  msgstr ""
7625
 
7626
- #: admin/mscan/mscan.php:1497
7627
  msgid "Current Status has been changed to Ignored for DB Row ID"
7628
  msgstr ""
7629
 
7630
- #: admin/mscan/mscan.php:1497 admin/mscan/mscan.php:1516
7631
  msgid "in DB Column"
7632
  msgstr ""
7633
 
7634
- #: admin/mscan/mscan.php:1497
7635
  msgid "This DB Entry will not be scanned in any future MScan Scans."
7636
  msgstr ""
7637
 
7638
- #: admin/mscan/mscan.php:1516
7639
  msgid "The Ignored DB Entry Status has been removed for DB Row ID"
7640
  msgstr ""
7641
 
7642
- #: admin/mscan/mscan.php:1516
7643
  msgid ""
7644
  "The previous Status of the DB Entry will be displayed again and this DB "
7645
  "Entry will be scanned in future MScan scans."
7646
  msgstr ""
7647
 
7648
- #: admin/mscan/mscan.php:1535 admin/mscan/mscan.php:1540
7649
  msgid "Close"
7650
  msgstr ""
7651
 
7652
- #: admin/mscan/mscan.php:1535
7653
  msgid "Pharma Hack DB Table and Column"
7654
  msgstr ""
7655
 
7656
- #: admin/mscan/mscan.php:1535
7657
  msgid "Pharma Hack cleanup/removal steps"
7658
  msgstr ""
7659
 
7660
- #: admin/mscan/mscan.php:1535
7661
  msgid ""
7662
  "Login to your web host control panel, login to your WP Database using "
7663
  "phpMyAdmin and delete these DB option name Rows below from the DB Table and "
@@ -7665,58 +7682,58 @@ msgid ""
7665
  "Rows so just delete any that you do see."
7666
  msgstr ""
7667
 
7668
- #: admin/mscan/mscan.php:1540
7669
  msgid "DB Table, Column and Row ID"
7670
  msgstr ""
7671
 
7672
- #: admin/mscan/mscan.php:1540
7673
  msgid "Steps to view the database data that MScan detected as suspicious"
7674
  msgstr ""
7675
 
7676
- #: admin/mscan/mscan.php:1540
7677
  msgid ""
7678
  "Login to your web host control panel, login to your WP Database using "
7679
  "phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
7680
  "above. Note: Look for code that matches the MScan Pattern Match."
7681
  msgstr ""
7682
 
7683
- #: admin/mscan/mscan.php:1563
7684
  msgid "View<br>DB Entry"
7685
  msgstr ""
7686
 
7687
- #: admin/mscan/mscan.php:1564
7688
  msgid "Ignore<br>DB Entry"
7689
  msgstr ""
7690
 
7691
- #: admin/mscan/mscan.php:1565
7692
  msgid "Unignore<br>DB Entry"
7693
  msgstr ""
7694
 
7695
- #: admin/mscan/mscan.php:1566
7696
  msgid "DB Table"
7697
  msgstr ""
7698
 
7699
- #: admin/mscan/mscan.php:1567
7700
  msgid "DB Column"
7701
  msgstr ""
7702
 
7703
- #: admin/mscan/mscan.php:1568
7704
  msgid "DB Row ID"
7705
  msgstr ""
7706
 
7707
- #: admin/mscan/mscan.php:1581
7708
  msgid "Ignored DB Entry"
7709
  msgstr ""
7710
 
7711
- #: admin/mscan/mscan.php:1586
7712
  msgid "Suspicious DB Entry"
7713
  msgstr ""
7714
 
7715
- #: admin/mscan/mscan.php:1604
7716
  msgid "No Suspicious DB Entries were detected"
7717
  msgstr ""
7718
 
7719
- #: admin/mscan/mscan.php:1619
7720
  msgid ""
7721
  "View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
7722
  "display the contents of the DB Table, Column and Row ID that you have "
@@ -7734,76 +7751,76 @@ msgid ""
7734
  "OK to proceed or click Cancel"
7735
  msgstr ""
7736
 
7737
- #: admin/mscan/mscan.php:1670
7738
  msgid "MScan Log ~ "
7739
  msgstr ""
7740
 
7741
- #: admin/mscan/mscan.php:1670
7742
  msgid ""
7743
  "Logs MScan Settings, Completion Time, Memory Usage, Zip Backup File Name, "
7744
  "Timestamp..."
7745
  msgstr ""
7746
 
7747
- #: admin/mscan/mscan.php:1701
7748
  msgid "Click the Reset Last Modified Time in DB button"
7749
  msgstr ""
7750
 
7751
- #: admin/mscan/mscan.php:1701
7752
  msgid "to set the"
7753
  msgstr ""
7754
 
7755
- #: admin/mscan/mscan.php:1706 admin/mscan/mscan.php:1711
7756
  msgid "Last Modified Time in DB:"
7757
  msgstr ""
7758
 
7759
- #: admin/mscan/mscan.php:1724 admin/mscan/mscan.php:1727
7760
  msgid "MScan Log File Size: "
7761
  msgstr ""
7762
 
7763
- #: admin/mscan/mscan.php:1727
7764
  msgid ""
7765
  "The S-Monitor Email Logging options will only send log files up to 2MB in "
7766
  "size."
7767
  msgstr ""
7768
 
7769
- #: admin/mscan/mscan.php:1727
7770
  msgid ""
7771
  "Copy and paste the MScan Log file contents into a Notepad text file on your "
7772
  "computer and save it."
7773
  msgstr ""
7774
 
7775
- #: admin/mscan/mscan.php:1738
7776
  msgid "MScan Log Last Modified Time:"
7777
  msgstr ""
7778
 
7779
- #: admin/mscan/mscan.php:1740
7780
  msgid "Last Modified Time in File:"
7781
  msgstr ""
7782
 
7783
- #: admin/mscan/mscan.php:1759
7784
  msgid ""
7785
  "Success! Your DB Backup Log has been deleted and replaced with a new blank "
7786
  "DB Backup Log file."
7787
  msgstr ""
7788
 
7789
- #: admin/mscan/mscan.php:1769
7790
  msgid "Clicking OK will delete the contents of your MScan Log file."
7791
  msgstr ""
7792
 
7793
- #: admin/mscan/mscan.php:1788
7794
  msgid ""
7795
  "The MScan Log File Was Not Found! Check that the file really exists here - /"
7796
  msgstr ""
7797
 
7798
- #: admin/mscan/mscan.php:1788
7799
  msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
7800
  msgstr ""
7801
 
7802
- #: admin/mscan/mscan.php:1807
7803
  msgid "File Open and Write test successful! Your MScan Log file is writable."
7804
  msgstr ""
7805
 
7806
- #: admin/mscan/mscan.php:1819 admin/mscan/mscan.php:1823
7807
  msgid "Success! Your MScan Log file has been updated."
7808
  msgstr ""
7809
 
@@ -10245,7 +10262,7 @@ msgstr ""
10245
  #: admin/wizard/wizard-functions.php:817 admin/wizard/wizard.php:627
10246
  #: admin/wizard/wizard.php:665 admin/wizard/wizard.php:723
10247
  #: admin/wizard/wizard.php:763 admin/wizard/wizard.php:811
10248
- #: includes/general-functions.php:965
10249
  msgid " DB Option created or updated Successfully!"
10250
  msgstr ""
10251
 
@@ -11413,7 +11430,7 @@ msgid ""
11413
  "file."
11414
  msgstr ""
11415
 
11416
- #: includes/general-functions.php:966
11417
  msgid " Hosting Account Root Folder Option setup or updated Successfully!"
11418
  msgstr ""
11419
 
3
  msgstr ""
4
  "Project-Id-Version: bulletproof-security\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2017-09-26 12:52-0700\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"
1074
  #: admin/email-log-settings/email-log-settings.php:107
1075
  #: admin/login/login.php:192 admin/login/login.php:811
1076
  #: admin/login/login.php:1000 admin/maintenance/maintenance.php:200
1077
+ #: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:119
1078
  #: admin/security-log/security-log.php:246
1079
  #: admin/system-info/system-info.php:103 admin/theme-skin/theme-skin.php:110
1080
  #: admin/wizard/wizard.php:1013 admin/wizard/wizard.php:1081
1597
  msgid "Rate BPS"
1598
  msgstr ""
1599
 
1600
+ #: admin/core/core.php:126 admin/includes/admin.php:301
1601
+ #: admin/includes/admin.php:302
1602
  msgid "BulletProof Security ~ htaccess Core"
1603
  msgstr ""
1604
 
1633
  #: admin/core/core.php:184 admin/db-backup-security/db-backup-security.php:262
1634
  #: admin/db-backup-security/db-backup-security.php:1652
1635
  #: admin/email-log-settings/email-log-settings.php:88 admin/login/login.php:164
1636
+ #: admin/maintenance/maintenance.php:164 admin/mscan/mscan.php:100
1637
+ #: admin/mscan/mscan.php:1894 admin/security-log/security-log.php:227
1638
  #: admin/system-info/system-info.php:90 admin/theme-skin/theme-skin.php:92
1639
  #: admin/theme-skin/theme-skin.php:215
1640
  msgid "Help &amp; FAQ"
1659
  #: admin/db-backup-security/db-backup-security.php:1290
1660
  #: admin/email-log-settings/email-log-settings.php:96 admin/login/login.php:181
1661
  #: admin/login/login.php:800 admin/maintenance/maintenance.php:184
1662
+ #: admin/maintenance/maintenance.php:186 admin/mscan/mscan.php:108
1663
  #: admin/security-log/security-log.php:235 admin/theme-skin/theme-skin.php:101
1664
  #: admin/wizard/wizard.php:998 admin/wizard/wizard.php:1067
1665
  msgid "Want even more security protection?"
1729
  #: admin/email-log-settings/email-log-settings.php:102
1730
  #: admin/login/login.php:187 admin/login/login.php:806
1731
  #: admin/login/login.php:991 admin/maintenance/maintenance.php:195
1732
+ #: admin/mscan/mscan.php:114 admin/mscan/mscan.php:1695
1733
  #: admin/security-log/security-log.php:241 admin/system-info/system-info.php:98
1734
  #: admin/theme-skin/theme-skin.php:107 admin/wizard/wizard.php:1004
1735
  #: admin/wizard/wizard.php:1073
1740
  #: admin/db-backup-security/db-backup-security.php:284
1741
  #: admin/email-log-settings/email-log-settings.php:110
1742
  #: admin/login/login.php:1003 admin/maintenance/maintenance.php:203
1743
+ #: admin/mscan/mscan.php:121 admin/system-info/system-info.php:106
1744
  msgid "Forum Help Links: "
1745
  msgstr ""
1746
 
1750
 
1751
  #: admin/core/core.php:214 admin/core/core.php:324
1752
  #: admin/email-log-settings/email-log-settings.php:113
1753
+ #: admin/mscan/mscan.php:126 admin/security-log/security-log.php:252
1754
  msgid "BPS Troubleshooting Steps"
1755
  msgstr ""
1756
 
2338
 
2339
  #: admin/core/core.php:1588
2340
  #: admin/db-backup-security/db-backup-security.php:1656
2341
+ #: admin/mscan/mscan.php:1898 admin/theme-skin/theme-skin.php:219
2342
  msgid "Whats New in "
2343
  msgstr ""
2344
 
2380
  #: admin/db-backup-security/db-backup-security.php:1290
2381
  #: admin/email-log-settings/email-log-settings.php:96
2382
  #: admin/maintenance/maintenance.php:184 admin/maintenance/maintenance.php:186
2383
+ #: admin/mscan/mscan.php:108 admin/security-log/security-log.php:235
2384
  #: admin/theme-skin/theme-skin.php:101 admin/wizard/wizard.php:998
2385
  #: admin/wizard/wizard.php:1067
2386
  msgid "Get BPS Pro ARQ IDPS"
2470
  #: admin/db-backup-security/db-backup-security.php:1660
2471
  #: admin/email-log-settings/email-log-settings.php:222
2472
  #: admin/login/login.php:1358 admin/maintenance/maintenance.php:2099
2473
+ #: admin/mscan/mscan.php:1901 admin/security-log/security-log.php:807
2474
  #: admin/system-info/system-info.php:1136 admin/theme-skin/theme-skin.php:222
2475
  msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
2476
  msgstr ""
3405
  #: admin/db-backup-security/db-backup-security.php:259
3406
  #: admin/db-backup-security/db-backup-security.php:276
3407
  #: admin/db-backup-security/db-backup-security.php:278
3408
+ #: admin/includes/admin.php:307
3409
  msgid "DB Backup"
3410
  msgstr ""
3411
 
3449
  #: admin/db-backup-security/db-backup-security.php:553
3450
  #: admin/login/login.php:355 admin/login/login.php:384
3451
  #: admin/login/login.php:456 admin/login/login.php:485
3452
+ #: admin/mscan/mscan.php:1338
3453
  msgid "Delete"
3454
  msgstr ""
3455
 
3577
  msgstr ""
3578
 
3579
  #: admin/db-backup-security/db-backup-security.php:692
3580
+ #: admin/mscan/mscan.php:919
3581
  msgid "All"
3582
  msgstr ""
3583
 
4066
  msgstr ""
4067
 
4068
  #: admin/db-backup-security/db-backup-security.php:1159
4069
+ #: admin/mscan/mscan.php:1747
4070
  msgid ""
4071
  "Then click the Delete Log button to delete the contents of this Log file."
4072
  msgstr ""
4086
  msgstr ""
4087
 
4088
  #: admin/db-backup-security/db-backup-security.php:1196
4089
+ #: admin/mscan/mscan.php:1789 admin/security-log/security-log.php:509
4090
  msgid "Click OK to Delete the Log file contents or click Cancel."
4091
  msgstr ""
4092
 
4236
  msgstr ""
4237
 
4238
  #: admin/db-backup-security/db-backup-security.php:1657
4239
+ #: admin/mscan/mscan.php:1899 admin/theme-skin/theme-skin.php:220
4240
  msgid "BPS Pro Features & Version Release Dates"
4241
  msgstr ""
4242
 
4243
  #: admin/db-backup-security/db-backup-security.php:1658
4244
+ #: admin/mscan/mscan.php:1900 admin/theme-skin/theme-skin.php:221
4245
  msgid "Video Tutorials"
4246
  msgstr ""
4247
 
4267
 
4268
  #: admin/email-log-settings/email-log-settings.php:102
4269
  #: admin/email-log-settings/email-log-settings.php:104
4270
+ #: admin/includes/admin.php:318
4271
  msgid "Email|Log Settings"
4272
  msgstr ""
4273
 
4426
  msgid "BulletProof Security Settings"
4427
  msgstr ""
4428
 
4429
+ #: admin/includes/admin.php:285 admin/includes/admin.php:301
4430
  msgid "BPS Security"
4431
  msgstr ""
4432
 
4433
+ #: admin/includes/admin.php:286 admin/includes/admin.php:287
4434
+ msgid "Login Security ~ JTC-Lite"
4435
+ msgstr ""
4436
+
4437
+ #: admin/includes/admin.php:286 admin/includes/admin.php:304
4438
  msgid "Login Security"
4439
  msgstr ""
4440
 
4441
+ #: admin/includes/admin.php:287 admin/includes/admin.php:305
4442
+ #: admin/login/login.php:158 admin/login/login.php:806
4443
+ #: admin/login/login.php:808
4444
+ msgid "JTC-Lite"
4445
+ msgstr ""
4446
+
4447
+ #: admin/includes/admin.php:293 admin/includes/admin.php:314
4448
  #: admin/maintenance/maintenance.php:163 admin/maintenance/maintenance.php:195
4449
  #: admin/maintenance/maintenance.php:197
4450
  msgid "Maintenance Mode"
4451
  msgstr ""
4452
 
4453
+ #: admin/includes/admin.php:296 admin/includes/admin.php:317
4454
  #: admin/system-info/system-info.php:88
4455
  msgid "System Info"
4456
  msgstr ""
4457
 
4458
+ #: admin/includes/admin.php:297 admin/includes/admin.php:319
4459
  #: admin/theme-skin/theme-skin.php:91 admin/theme-skin/theme-skin.php:107
4460
  #: admin/theme-skin/theme-skin.php:109
4461
  msgid "UI|UX Settings"
4462
  msgstr ""
4463
 
4464
+ #: admin/includes/admin.php:302
4465
  msgid "htaccess Core"
4466
  msgstr ""
4467
 
4468
+ #: admin/includes/admin.php:303
4469
  msgid "MScan ~ Malware Scanner"
4470
  msgstr ""
4471
 
4472
+ #: admin/includes/admin.php:303 admin/mscan/mscan.php:98
4473
+ #: admin/mscan/mscan.php:114 admin/mscan/mscan.php:116
4474
  msgid "MScan"
4475
  msgstr ""
4476
 
4477
+ #: admin/includes/admin.php:304 admin/includes/admin.php:305
4478
+ #: admin/includes/admin.php:306
4479
  msgid "Login Security ~ JTC-Lite ~ ISL ~ ACE"
4480
  msgstr ""
4481
 
4482
+ #: admin/includes/admin.php:306
 
 
 
 
 
4483
  msgid "Idle Session Logout<br>Cookie Expiration"
4484
  msgstr ""
4485
 
4486
+ #: admin/includes/admin.php:307
4487
  msgid "DB Backup & Security"
4488
  msgstr ""
4489
 
4490
+ #: admin/includes/admin.php:308 admin/security-log/security-log.php:226
4491
  #: admin/security-log/security-log.php:241
4492
  #: admin/security-log/security-log.php:243
4493
  msgid "Security Log"
4494
  msgstr ""
4495
 
4496
+ #: admin/includes/admin.php:320 admin/wizard/wizard.php:974
4497
  #: admin/wizard/wizard.php:1004 admin/wizard/wizard.php:1006
4498
  #: bulletproof-security.php:100 bulletproof-security.php:103
4499
  msgid "Setup Wizard"
4500
  msgstr ""
4501
 
4502
+ #: admin/includes/admin.php:323 admin/includes/admin.php:331
4503
  #: admin/includes/uninstall.php:45
4504
  msgid "BPS Plugin Uninstall Options"
4505
  msgstr ""
4506
 
4507
+ #: admin/includes/admin.php:366
4508
  msgid "BPS UI|UX Debug: SLF css Scripts Nulled"
4509
  msgstr ""
4510
 
4511
+ #: admin/includes/admin.php:373
4512
  msgid "BPS UI|UX Debug: SLF css Scripts Not Nulled|Allowed"
4513
  msgstr ""
4514
 
4515
+ #: admin/includes/admin.php:402
4516
  msgid "BPS UI|UX Debug: SLF js Scripts Nulled"
4517
  msgstr ""
4518
 
4519
+ #: admin/includes/admin.php:409
4520
  msgid "BPS UI|UX Debug: SLF js Scripts Not Nulled|Allowed"
4521
  msgstr ""
4522
 
4523
+ #: admin/includes/admin.php:485
4524
  msgid "BPS UI|UX Debug: Scripts|Styles Dequeued"
4525
  msgstr ""
4526
 
4527
+ #: admin/includes/admin.php:497
4528
  msgid "Script Dequeued: "
4529
  msgstr ""
4530
 
4531
+ #: admin/includes/admin.php:503
4532
  msgid ""
4533
  "No plugin or theme Scripts were Dequeued (prevented) from loading in BPS "
4534
  "plugin pages"
4535
  msgstr ""
4536
 
4537
+ #: admin/includes/admin.php:515
4538
  msgid "Style Dequeued: "
4539
  msgstr ""
4540
 
4541
+ #: admin/includes/admin.php:521
4542
  msgid ""
4543
  "No plugin or theme Styles were Dequeued (prevented) from loading in BPS "
4544
  "plugin pages"
4545
  msgstr ""
4546
 
4547
+ #: admin/includes/admin.php:559 admin/includes/admin.php:592
4548
  msgid "BPS UI|UX Debug: WP Toolbar nodes|menu items Removed"
4549
  msgstr ""
4550
 
4551
+ #: admin/includes/admin.php:571 admin/includes/admin.php:604
4552
  msgid "WP Toolbar node|menu item Removed: "
4553
  msgstr ""
4554
 
4555
+ #: admin/includes/admin.php:579 admin/includes/admin.php:612
4556
  msgid "No WP Toolbar nodes|menu items were Removed in BPS plugin pages"
4557
  msgstr ""
4558
 
4838
 
4839
  #: admin/login/login.php:422 admin/login/login.php:523
4840
  #: admin/login/login.php:588 admin/login/login.php:688
4841
+ #: admin/mscan/mscan.php:1149 admin/mscan/mscan.php:1361
4842
+ #: admin/mscan/mscan.php:1483 admin/mscan/mscan.php:1639
4843
  msgid "Submit"
4844
  msgstr ""
4845
 
4857
  msgstr ""
4858
 
4859
  #: admin/login/login.php:422 admin/login/login.php:523
4860
+ #: admin/mscan/mscan.php:1362 admin/mscan/mscan.php:1640
4861
  msgid "Clear|Refresh"
4862
  msgstr ""
4863
 
6901
  msgid "Clicking the Stop Scan button stops a scan."
6902
  msgstr ""
6903
 
6904
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:905
6905
  msgid "Hosting Account Root Folders"
6906
  msgstr ""
6907
 
6934
  "than 300 seconds."
6935
  msgstr ""
6936
 
6937
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:989
6938
  msgid "Scan Database"
6939
  msgstr ""
6940
 
6944
  "suspicious code."
6945
  msgstr ""
6946
 
6947
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:995
6948
  msgid "Scan Image Files (Stegosploit|Exif Hack)"
6949
  msgstr ""
6950
 
6955
  "hacks. It is recommended that you do not scan image files."
6956
  msgstr ""
6957
 
6958
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1001
6959
  msgid "Scan Skipped Files Only"
6960
  msgstr ""
6961
 
6967
  "MScan option settings when running a Skipped File scan."
6968
  msgstr ""
6969
 
6970
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1007
6971
  msgid "Automatically Delete /tmp Files"
6972
  msgstr ""
6973
 
6977
  "commonly hide hacker files in the /tmp folder."
6978
  msgstr ""
6979
 
6980
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1013
6981
  msgid "Scheduled Scan Frequency (BPS Pro only)"
6982
  msgstr ""
6983
 
7031
  "using this tool."
7032
  msgstr ""
7033
 
7034
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1076
7035
  msgid "View|Ignore|Delete Suspicious Files"
7036
  msgstr ""
7037
 
7046
  "ignored file it will be scanned in future scans."
7047
  msgstr ""
7048
 
7049
+ #: admin/mscan/mscan-help-text.php:41 admin/mscan/mscan.php:1413
7050
  msgid "View|Ignore Suspicious DB Entries"
7051
  msgstr ""
7052
 
7119
  msgid "BulletProof Security ~ MScan Malware Scanner"
7120
  msgstr ""
7121
 
7122
+ #: admin/mscan/mscan.php:85
7123
+ msgid ""
7124
+ "The open_basedir php.ini directive is enabled on your website/server. MScan "
7125
+ "scans will take 6 times longer to complete when open_basedir is enabled, the "
7126
+ "estimated scan time caculations will not be correct and the MScan Progress "
7127
+ "Bar will not be accurate when open_basedir is enabled. New estimated scan "
7128
+ "time calculations are pending in a future version of BPS to accomodate "
7129
+ "open_basedir if you would like to continue to use open_basedir. "
7130
+ "Recommendation: disable open_basedir in your server php.ini file or custom "
7131
+ "php.ini file."
7132
+ msgstr ""
7133
+
7134
+ #: admin/mscan/mscan.php:99 admin/mscan/mscan.php:1695
7135
+ #: admin/mscan/mscan.php:1697
7136
  msgid "MScan Log"
7137
  msgstr ""
7138
 
7139
+ #: admin/mscan/mscan.php:108
7140
  msgid "MScan ~ "
7141
  msgstr ""
7142
 
7143
+ #: admin/mscan/mscan.php:108
7144
  msgid ""
7145
  "Scans website files for hacker files or code ~ Scans the WP database for "
7146
  "hacker code."
7147
  msgstr ""
7148
 
7149
+ #: admin/mscan/mscan.php:108
7150
  msgid ""
7151
  "Get real-time automated security protection that is far superior to all "
7152
  "malware scanners: "
7153
  msgstr ""
7154
 
7155
+ #: admin/mscan/mscan.php:124 includes/hud-dismiss-functions.php:672
7156
  msgid "MScan Malware Scanner Guide"
7157
  msgstr ""
7158
 
7159
+ #: admin/mscan/mscan.php:125
7160
  msgid "MScan Troubleshooting & Code Posting"
7161
  msgstr ""
7162
 
7163
+ #: admin/mscan/mscan.php:166
7164
  msgid "The MScan Database Table: "
7165
  msgstr ""
7166
 
7167
+ #: admin/mscan/mscan.php:166
7168
  msgid " data has been deleted."
7169
  msgstr ""
7170
 
7171
+ #: admin/mscan/mscan.php:202
7172
  msgid ""
7173
  "MScan Status option values have been deleted. The Scan Completed timestamp, "
7174
  "Total Scan Time, Total Files Scanned, Skipped Files, Suspicious Files and "
7176
  "display blank or 0"
7177
  msgstr ""
7178
 
7179
+ #: admin/mscan/mscan.php:243 admin/mscan/mscan.php:305
7180
+ #: admin/mscan/mscan.php:528 admin/mscan/mscan.php:792
7181
  msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
7182
  msgstr ""
7183
 
7184
+ #: admin/mscan/mscan.php:247 admin/mscan/mscan.php:309
7185
+ #: admin/mscan/mscan.php:406 admin/mscan/mscan.php:483
7186
+ #: admin/mscan/mscan.php:800
7187
  msgid ""
7188
  "Image file scanning is turned On. On some web hosts scanning image files "
7189
  "will cause the scan to stop/fail."
7190
  msgstr ""
7191
 
7192
+ #: admin/mscan/mscan.php:251
7193
  msgid ""
7194
  "MScan scanning has been stopped. Note: The Stop Scan button also stops the "
7195
  "Scan Time Estimate Tool from calculating estimated scan time."
7196
  msgstr ""
7197
 
7198
+ #: admin/mscan/mscan.php:321
7199
  msgid ""
7200
  "Calculating Scan Time. The default scan time calculation time of 30 seconds "
7201
  "was exceeded. If it takes longer than 30 seconds to calculate total scan "
7208
  "see if the the estimated scan time was successfully logged."
7209
  msgstr ""
7210
 
7211
+ #: admin/mscan/mscan.php:321
7212
  msgid "Refresh"
7213
  msgstr ""
7214
 
7215
+ #: admin/mscan/mscan.php:329
7216
  msgid ""
7217
  "The estimated total scan time is more than the Max Time Limit to Scan option "
7218
  "setting time limit."
7219
  msgstr ""
7220
 
7221
+ #: admin/mscan/mscan.php:329
7222
  msgid ""
7223
  "The scan will automatically end/stop when the Max Time Limit to Scan option "
7224
  "setting time limit is reached."
7225
  msgstr ""
7226
 
7227
+ #: admin/mscan/mscan.php:329
7228
  msgid "Estimated Total Scan Time: "
7229
  msgstr ""
7230
 
7231
+ #: admin/mscan/mscan.php:329
7232
  msgid "Max Time Limit to Scan: "
7233
  msgstr ""
7234
 
7235
+ #: admin/mscan/mscan.php:329
7236
  msgid "Click the MScan Read Me help button for a recommended solution."
7237
  msgstr ""
7238
 
7239
+ #: admin/mscan/mscan.php:335
7240
  msgid ""
7241
  "MScan Scanning has started. You can leave the MScan page while a scan is in "
7242
  "progress and the scan will continue until it is completed or you can open "
7243
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7244
  msgstr ""
7245
 
7246
+ #: admin/mscan/mscan.php:348 admin/mscan/mscan.php:354
7247
  msgid "Suspicious code or files were detected."
7248
  msgstr ""
7249
 
7250
+ #: admin/mscan/mscan.php:348 admin/mscan/mscan.php:354
7251
  msgid ""
7252
  "Click the View|Ignore|Delete Suspicious Files accordion tab to View, Ignore "
7253
  "or Delete suspicious files. For additional help information click the MScan "
7254
  "Read Me help button."
7255
  msgstr ""
7256
 
7257
+ #: admin/mscan/mscan.php:358
7258
  msgid "Suspicious code was detected in your database."
7259
  msgstr ""
7260
 
7261
+ #: admin/mscan/mscan.php:358
7262
  msgid ""
7263
  "Click the View|Ignore Suspicious DB Entries accordion tab to view and ignore "
7264
  "suspicious db entries. For additional help information click the MScan Read "
7265
  "Me help button."
7266
  msgstr ""
7267
 
7268
+ #: admin/mscan/mscan.php:363
7269
  msgid ""
7270
  "MScan Scan has completed. To view extensive details of all scanning phases "
7271
  "view the MScan Log file."
7272
  msgstr ""
7273
 
7274
+ #: admin/mscan/mscan.php:402
7275
  msgid ""
7276
  "Skipped file scanning is turned On. The scan time estimate is for scanning "
7277
  "skipped files only."
7278
  msgstr ""
7279
 
7280
+ #: admin/mscan/mscan.php:410
7281
  msgid ""
7282
  "The total estimated time of an actual scan based on your MScan option "
7283
  "settings is: "
7284
  msgstr ""
7285
 
7286
+ #: admin/mscan/mscan.php:410
7287
  msgid ""
7288
  "Seconds. The MScan Log file contains extensive details about the estimated "
7289
  "scan time. Note: The Scan Time Estimate Tool does not affect or change any "
7291
  "to the estimated scan time."
7292
  msgstr ""
7293
 
7294
+ #: admin/mscan/mscan.php:479
7295
  msgid ""
7296
  "Skipped file scanning is turned On. The scan time estimate will be for "
7297
  "scanning skipped files only."
7298
  msgstr ""
7299
 
7300
+ #: admin/mscan/mscan.php:487
7301
  msgid ""
7302
  "Calculating Estimated Scan Time. Notes: The Scan Time Estimate Tool does not "
7303
  "affect or change any previous scan results except for the Total Scan Time, "
7306
  "the estimated scan time."
7307
  msgstr ""
7308
 
7309
+ #: admin/mscan/mscan.php:532
7310
  msgid ""
7311
  "Calculating Scan Time. You can leave the MScan page while a scan is in "
7312
  "progress and the scan will continue until it is completed or you can open "
7313
  "another Browser Tab/Window and leave this Browser Tab/Window open."
7314
  msgstr ""
7315
 
7316
+ #: admin/mscan/mscan.php:688
7317
  msgid "Click OK to start scanning or click Cancel."
7318
  msgstr ""
7319
 
7320
+ #: admin/mscan/mscan.php:695
7321
  msgid "Click OK to stop scanning or click Cancel."
7322
  msgstr ""
7323
 
7324
+ #: admin/mscan/mscan.php:702
7325
  msgid "MScan Options & Tools"
7326
  msgstr ""
7327
 
7328
+ #: admin/mscan/mscan.php:715
7329
  msgid "Save MScan Options"
7330
  msgstr ""
7331
 
7332
+ #: admin/mscan/mscan.php:796
7333
  msgid ""
7334
  "Skipped file scanning is turned On. There are no skipped files to be "
7335
  "scanned. Either there really are not any skipped files to scan or you have "
7336
  "not run a regular scan yet with the Skipped File Scan option turned Off."
7337
  msgstr ""
7338
 
7339
+ #: admin/mscan/mscan.php:804
7340
  msgid "MScan Options saved."
7341
  msgstr ""
7342
 
7343
+ #: admin/mscan/mscan.php:906
7344
  msgid "MScan Options"
7345
  msgstr ""
7346
 
7347
+ #: admin/mscan/mscan.php:907
7348
  msgid "MScan Tools"
7349
  msgstr ""
7350
 
7351
+ #: admin/mscan/mscan.php:920
7352
  msgid "Folder Name"
7353
  msgstr ""
7354
 
7355
+ #: admin/mscan/mscan.php:936
7356
  msgid "Folder is not readable"
7357
  msgstr ""
7358
 
7359
+ #: admin/mscan/mscan.php:949
7360
  msgid ""
7361
  "This folder contains another WordPress website. Click the MScan Read Me help "
7362
  "button above and read the \"Scanning Other WordPress Sites\" help section."
7363
  msgstr ""
7364
 
7365
+ #: admin/mscan/mscan.php:975
7366
  msgid "Max File Size Limit to Scan:"
7367
  msgstr ""
7368
 
7369
+ #: admin/mscan/mscan.php:979
7370
  msgid "Max Time Limit to Scan:"
7371
  msgstr ""
7372
 
7373
+ #: admin/mscan/mscan.php:983
7374
  msgid "Exclude Individual Folders"
7375
  msgstr ""
7376
 
7377
+ #: admin/mscan/mscan.php:983
7378
  msgid "Enter one folder path per line. Include folder slashes."
7379
  msgstr ""
7380
 
7381
+ #: admin/mscan/mscan.php:983
7382
  msgid "Example:"
7383
  msgstr ""
7384
 
7385
+ #: admin/mscan/mscan.php:983 admin/mscan/mscan.php:1001
7386
  msgid "Click the MScan Read Me help button for more help info."
7387
  msgstr ""
7388
 
7389
+ #: admin/mscan/mscan.php:991
7390
  msgid "Database Scan On"
7391
  msgstr ""
7392
 
7393
+ #: admin/mscan/mscan.php:992
7394
  msgid "Database Scan Off"
7395
  msgstr ""
7396
 
7397
+ #: admin/mscan/mscan.php:997
7398
  msgid "Image File Scan Off"
7399
  msgstr ""
7400
 
7401
+ #: admin/mscan/mscan.php:998
7402
  msgid "Image File Scan On"
7403
  msgstr ""
7404
 
7405
+ #: admin/mscan/mscan.php:1001
7406
  msgid ""
7407
  "When Skipped File Scan is On only skipped files will be scanned. Note: The "
7408
  "only MScan option setting that has any affect while Skipped File Scan is On "
7409
  "is Image File Scan On or Off."
7410
  msgstr ""
7411
 
7412
+ #: admin/mscan/mscan.php:1003
7413
  msgid "Skipped File Scan Off"
7414
  msgstr ""
7415
 
7416
+ #: admin/mscan/mscan.php:1004
7417
  msgid "Skipped File Scan On"
7418
  msgstr ""
7419
 
7420
+ #: admin/mscan/mscan.php:1009
7421
  msgid "Delete Tmp Files On"
7422
  msgstr ""
7423
 
7424
+ #: admin/mscan/mscan.php:1010
7425
  msgid "Delete Tmp Files Off"
7426
  msgstr ""
7427
 
7428
+ #: admin/mscan/mscan.php:1015
7429
  msgid "Scheduled Scan Off"
7430
  msgstr ""
7431
 
7432
+ #: admin/mscan/mscan.php:1016
7433
  msgid "Run Scan Every 60 Minutes"
7434
  msgstr ""
7435
 
7436
+ #: admin/mscan/mscan.php:1017
7437
  msgid "Run Scan Every 3 Hours"
7438
  msgstr ""
7439
 
7440
+ #: admin/mscan/mscan.php:1018
7441
  msgid "Run Scan Every 6 Hours"
7442
  msgstr ""
7443
 
7444
+ #: admin/mscan/mscan.php:1019
7445
  msgid "Run Scan Every 12 Hours"
7446
  msgstr ""
7447
 
7448
+ #: admin/mscan/mscan.php:1020
7449
  msgid "Run Scan Every 24 Hours"
7450
  msgstr ""
7451
 
7452
+ #: admin/mscan/mscan.php:1023
7453
  msgid "Click OK to save MScan Options or click Cancel"
7454
  msgstr ""
7455
 
7456
+ #: admin/mscan/mscan.php:1032
7457
  msgid ""
7458
  "IMPORTANT: You can stop the scan time estimate if it hangs or is taking too "
7459
  "long by clicking the Stop Scan button.\\n"
7472
  "OK to get a scan time estimate or click Cancel"
7473
  msgstr ""
7474
 
7475
+ #: admin/mscan/mscan.php:1037
7476
  msgid ""
7477
  "This tool allows you to delete all of the MScan Status option values.\\n"
7478
  "\\n-------------------------------------------------------------\\n\\nThe "
7484
  "OK to delete scan status option values or click Cancel"
7485
  msgstr ""
7486
 
7487
+ #: admin/mscan/mscan.php:1042
7488
  msgid ""
7489
  "Deleting all database scan data is a reset that deletes any/all changes you "
7490
  "have made and saved using the View|Ignore|Delete Suspicious Files and View|"
7493
  "OK to delete all database Scan Data or click Cancel"
7494
  msgstr ""
7495
 
7496
+ #: admin/mscan/mscan.php:1190
7497
  msgid " has been deleted."
7498
  msgstr ""
7499
 
7500
+ #: admin/mscan/mscan.php:1211
7501
  msgid ""
7502
  " Current Status has been changed to Ignored File and this file will not be "
7503
  "scanned in any future MScan Scans."
7504
  msgstr ""
7505
 
7506
+ #: admin/mscan/mscan.php:1232
7507
  msgid ""
7508
  " Ignored File Status has been removed. The previous Status of the file will "
7509
  "be displayed again and this file will be scanned in future MScan scans."
7510
  msgstr ""
7511
 
7512
+ #: admin/mscan/mscan.php:1254 admin/mscan/mscan.php:1263
7513
  msgid "Close File"
7514
  msgstr ""
7515
 
7516
+ #: admin/mscan/mscan.php:1254 admin/mscan/mscan.php:1263
7517
+ #: admin/mscan/mscan.php:1560
7518
  msgid "MScan Pattern Match"
7519
  msgstr ""
7520
 
7521
+ #: admin/mscan/mscan.php:1254
7522
  msgid ""
7523
  "Only the MScan Pattern Match is displayed for images instead of the image "
7524
  "file code."
7525
  msgstr ""
7526
 
7527
+ #: admin/mscan/mscan.php:1254
7528
  msgid ""
7529
  "Opening image files to view image file code does not work well in a Browser."
7530
  msgstr ""
7531
 
7532
+ #: admin/mscan/mscan.php:1254
7533
  msgid ""
7534
  "You can download suspicious image files and use a code editor like Notepad++ "
7535
  "to check image file code for any malicious code."
7536
  msgstr ""
7537
 
7538
+ #: admin/mscan/mscan.php:1254 admin/mscan/mscan.php:1263
7539
+ #: admin/mscan/mscan.php:1560
7540
  msgid ""
7541
  "If you are not sure what to check for or what is and is not malicious code "
7542
  "then click the MScan Read Me help button."
7543
  msgstr ""
7544
 
7545
+ #: admin/mscan/mscan.php:1263
7546
  msgid ""
7547
  "You can use your Browser's Search or Find feature to search the file "
7548
  "contents/code displayed below using the MScan Pattern Match above for the "
7549
  "suspicious code that was detected by MScan."
7550
  msgstr ""
7551
 
7552
+ #: admin/mscan/mscan.php:1263
7553
  msgid ""
7554
  "You can download suspicious files if you would like to check the file "
7555
  "contents/code more extensively with a code editor like Notepad++."
7556
  msgstr ""
7557
 
7558
+ #: admin/mscan/mscan.php:1291 admin/mscan/mscan.php:1582
7559
  msgid "Current Status"
7560
  msgstr ""
7561
 
7562
+ #: admin/mscan/mscan.php:1292
7563
  msgid "View<br>File"
7564
  msgstr ""
7565
 
7566
+ #: admin/mscan/mscan.php:1293
7567
  msgid "Ignore<br>File"
7568
  msgstr ""
7569
 
7570
+ #: admin/mscan/mscan.php:1294
7571
  msgid "Unignore<br>File"
7572
  msgstr ""
7573
 
7574
+ #: admin/mscan/mscan.php:1295
7575
  msgid "Delete<br>File"
7576
  msgstr ""
7577
 
7578
+ #: admin/mscan/mscan.php:1296 admin/system-info/system-info.php:905
7579
  #: admin/system-info/system-info.php:938
7580
  msgid "File Path"
7581
  msgstr ""
7582
 
7583
+ #: admin/mscan/mscan.php:1297 admin/mscan/mscan.php:1589
7584
  msgid "Pattern<br>Match"
7585
  msgstr ""
7586
 
7587
+ #: admin/mscan/mscan.php:1298 admin/mscan/mscan.php:1590
7588
  msgid "Scan<br>Time"
7589
  msgstr ""
7590
 
7591
+ #: admin/mscan/mscan.php:1311
7592
  msgid "Skipped File"
7593
  msgstr ""
7594
 
7595
+ #: admin/mscan/mscan.php:1311
7596
  msgid "Not Scanned"
7597
  msgstr ""
7598
 
7599
+ #: admin/mscan/mscan.php:1315 admin/mscan/mscan.php:1322
7600
  msgid "Ignored File"
7601
  msgstr ""
7602
 
7603
+ #: admin/mscan/mscan.php:1327
7604
  msgid "Suspicious File"
7605
  msgstr ""
7606
 
7607
+ #: admin/mscan/mscan.php:1333 admin/mscan/mscan.php:1611
7608
  msgid "View"
7609
  msgstr ""
7610
 
7611
+ #: admin/mscan/mscan.php:1334 admin/mscan/mscan.php:1612
7612
  msgid "Ignore"
7613
  msgstr ""
7614
 
7615
+ #: admin/mscan/mscan.php:1336 admin/mscan/mscan.php:1613
7616
  msgid "Unignore"
7617
  msgstr ""
7618
 
7619
+ #: admin/mscan/mscan.php:1347
7620
  msgid "No Suspicious Files were detected"
7621
  msgstr ""
7622
 
7623
+ #: admin/mscan/mscan.php:1361
7624
  msgid ""
7625
  "View File Option: Selecting the View File Checkbox Form option will display "
7626
  "the contents of the file that you have selected to view.\\n"
7640
  "OK to proceed or click Cancel"
7641
  msgstr ""
7642
 
7643
+ #: admin/mscan/mscan.php:1517
7644
  msgid "Current Status has been changed to Ignored for DB Row ID"
7645
  msgstr ""
7646
 
7647
+ #: admin/mscan/mscan.php:1517 admin/mscan/mscan.php:1536
7648
  msgid "in DB Column"
7649
  msgstr ""
7650
 
7651
+ #: admin/mscan/mscan.php:1517
7652
  msgid "This DB Entry will not be scanned in any future MScan Scans."
7653
  msgstr ""
7654
 
7655
+ #: admin/mscan/mscan.php:1536
7656
  msgid "The Ignored DB Entry Status has been removed for DB Row ID"
7657
  msgstr ""
7658
 
7659
+ #: admin/mscan/mscan.php:1536
7660
  msgid ""
7661
  "The previous Status of the DB Entry will be displayed again and this DB "
7662
  "Entry will be scanned in future MScan scans."
7663
  msgstr ""
7664
 
7665
+ #: admin/mscan/mscan.php:1555 admin/mscan/mscan.php:1560
7666
  msgid "Close"
7667
  msgstr ""
7668
 
7669
+ #: admin/mscan/mscan.php:1555
7670
  msgid "Pharma Hack DB Table and Column"
7671
  msgstr ""
7672
 
7673
+ #: admin/mscan/mscan.php:1555
7674
  msgid "Pharma Hack cleanup/removal steps"
7675
  msgstr ""
7676
 
7677
+ #: admin/mscan/mscan.php:1555
7678
  msgid ""
7679
  "Login to your web host control panel, login to your WP Database using "
7680
  "phpMyAdmin and delete these DB option name Rows below from the DB Table and "
7682
  "Rows so just delete any that you do see."
7683
  msgstr ""
7684
 
7685
+ #: admin/mscan/mscan.php:1560
7686
  msgid "DB Table, Column and Row ID"
7687
  msgstr ""
7688
 
7689
+ #: admin/mscan/mscan.php:1560
7690
  msgid "Steps to view the database data that MScan detected as suspicious"
7691
  msgstr ""
7692
 
7693
+ #: admin/mscan/mscan.php:1560
7694
  msgid ""
7695
  "Login to your web host control panel, login to your WP Database using "
7696
  "phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
7697
  "above. Note: Look for code that matches the MScan Pattern Match."
7698
  msgstr ""
7699
 
7700
+ #: admin/mscan/mscan.php:1583
7701
  msgid "View<br>DB Entry"
7702
  msgstr ""
7703
 
7704
+ #: admin/mscan/mscan.php:1584
7705
  msgid "Ignore<br>DB Entry"
7706
  msgstr ""
7707
 
7708
+ #: admin/mscan/mscan.php:1585
7709
  msgid "Unignore<br>DB Entry"
7710
  msgstr ""
7711
 
7712
+ #: admin/mscan/mscan.php:1586
7713
  msgid "DB Table"
7714
  msgstr ""
7715
 
7716
+ #: admin/mscan/mscan.php:1587
7717
  msgid "DB Column"
7718
  msgstr ""
7719
 
7720
+ #: admin/mscan/mscan.php:1588
7721
  msgid "DB Row ID"
7722
  msgstr ""
7723
 
7724
+ #: admin/mscan/mscan.php:1601
7725
  msgid "Ignored DB Entry"
7726
  msgstr ""
7727
 
7728
+ #: admin/mscan/mscan.php:1606
7729
  msgid "Suspicious DB Entry"
7730
  msgstr ""
7731
 
7732
+ #: admin/mscan/mscan.php:1624
7733
  msgid "No Suspicious DB Entries were detected"
7734
  msgstr ""
7735
 
7736
+ #: admin/mscan/mscan.php:1639
7737
  msgid ""
7738
  "View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
7739
  "display the contents of the DB Table, Column and Row ID that you have "
7751
  "OK to proceed or click Cancel"
7752
  msgstr ""
7753
 
7754
+ #: admin/mscan/mscan.php:1690
7755
  msgid "MScan Log ~ "
7756
  msgstr ""
7757
 
7758
+ #: admin/mscan/mscan.php:1690
7759
  msgid ""
7760
  "Logs MScan Settings, Completion Time, Memory Usage, Zip Backup File Name, "
7761
  "Timestamp..."
7762
  msgstr ""
7763
 
7764
+ #: admin/mscan/mscan.php:1721
7765
  msgid "Click the Reset Last Modified Time in DB button"
7766
  msgstr ""
7767
 
7768
+ #: admin/mscan/mscan.php:1721
7769
  msgid "to set the"
7770
  msgstr ""
7771
 
7772
+ #: admin/mscan/mscan.php:1726 admin/mscan/mscan.php:1731
7773
  msgid "Last Modified Time in DB:"
7774
  msgstr ""
7775
 
7776
+ #: admin/mscan/mscan.php:1744 admin/mscan/mscan.php:1747
7777
  msgid "MScan Log File Size: "
7778
  msgstr ""
7779
 
7780
+ #: admin/mscan/mscan.php:1747
7781
  msgid ""
7782
  "The S-Monitor Email Logging options will only send log files up to 2MB in "
7783
  "size."
7784
  msgstr ""
7785
 
7786
+ #: admin/mscan/mscan.php:1747
7787
  msgid ""
7788
  "Copy and paste the MScan Log file contents into a Notepad text file on your "
7789
  "computer and save it."
7790
  msgstr ""
7791
 
7792
+ #: admin/mscan/mscan.php:1758
7793
  msgid "MScan Log Last Modified Time:"
7794
  msgstr ""
7795
 
7796
+ #: admin/mscan/mscan.php:1760
7797
  msgid "Last Modified Time in File:"
7798
  msgstr ""
7799
 
7800
+ #: admin/mscan/mscan.php:1779
7801
  msgid ""
7802
  "Success! Your DB Backup Log has been deleted and replaced with a new blank "
7803
  "DB Backup Log file."
7804
  msgstr ""
7805
 
7806
+ #: admin/mscan/mscan.php:1789
7807
  msgid "Clicking OK will delete the contents of your MScan Log file."
7808
  msgstr ""
7809
 
7810
+ #: admin/mscan/mscan.php:1808
7811
  msgid ""
7812
  "The MScan Log File Was Not Found! Check that the file really exists here - /"
7813
  msgstr ""
7814
 
7815
+ #: admin/mscan/mscan.php:1808
7816
  msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
7817
  msgstr ""
7818
 
7819
+ #: admin/mscan/mscan.php:1827
7820
  msgid "File Open and Write test successful! Your MScan Log file is writable."
7821
  msgstr ""
7822
 
7823
+ #: admin/mscan/mscan.php:1839 admin/mscan/mscan.php:1843
7824
  msgid "Success! Your MScan Log file has been updated."
7825
  msgstr ""
7826
 
10262
  #: admin/wizard/wizard-functions.php:817 admin/wizard/wizard.php:627
10263
  #: admin/wizard/wizard.php:665 admin/wizard/wizard.php:723
10264
  #: admin/wizard/wizard.php:763 admin/wizard/wizard.php:811
10265
+ #: includes/general-functions.php:971
10266
  msgid " DB Option created or updated Successfully!"
10267
  msgstr ""
10268
 
11430
  "file."
11431
  msgstr ""
11432
 
11433
+ #: includes/general-functions.php:972
11434
  msgid " Hosting Account Root Folder Option setup or updated Successfully!"
11435
  msgstr ""
11436
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://wordpress.org/support/view/plugin-reviews/bulletproof-secur
4
  Tags: security, secure, scanner, login security, firewall, security plugin, wordpress security, login, malware, malware scanner, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
- Stable tag: 2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
4
  Tags: security, secure, scanner, login security, firewall, security plugin, wordpress security, login, malware, malware scanner, bruteforce, backup, exploit, infection, protection, virus, anti-virus, logout, spam, anti-spam
5
  Requires at least: 3.8
6
  Tested up to: 4.8
7
+ Stable tag: 2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10