BulletProof Security - Version 4.9

Version Description

Download this release

Release Info

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

Code changes from version 4.8 to 4.9

403.php CHANGED
@@ -68,12 +68,12 @@ $gmt_offset = get_option( 'gmt_offset' ) * 3600;
68
  $post_limit = get_option('bulletproof_security_options_sec_log_post_limit');
69
  $query_string = parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY);
70
 
71
- if ( $post_limit['bps_security_log_post_none'] == '1' ) {
72
  $request_body = file_get_contents( 'php://input', NULL, NULL, 0, 5 );
73
 
74
  } else {
75
 
76
- if ( $post_limit['bps_security_log_post_limit'] == '1' ) {
77
  $request_body = file_get_contents( 'php://input', NULL, NULL, 0, 500 );
78
  } else {
79
  $request_body = file_get_contents( 'php://input', NULL, NULL, 0, 250000 ); // roughly 250KB Max Limit
68
  $post_limit = get_option('bulletproof_security_options_sec_log_post_limit');
69
  $query_string = parse_url($_SERVER['REQUEST_URI'], PHP_URL_QUERY);
70
 
71
+ if ( isset($post_limit['bps_security_log_post_none']) && $post_limit['bps_security_log_post_none'] == '1' ) {
72
  $request_body = file_get_contents( 'php://input', NULL, NULL, 0, 5 );
73
 
74
  } else {
75
 
76
+ if ( isset($post_limit['bps_security_log_post_none']) && $post_limit['bps_security_log_post_limit'] == '1' ) {
77
  $request_body = file_get_contents( 'php://input', NULL, NULL, 0, 500 );
78
  } else {
79
  $request_body = file_get_contents( 'php://input', NULL, NULL, 0, 250000 ); // roughly 250KB Max Limit
admin/core/core.php CHANGED
@@ -2191,6 +2191,7 @@ $text = '<h3><span class="blue-bold">'.__('The Complete Website Security Solutio
2191
 
2192
  <div class="pro-links">
2193
  <?php
 
2194
  echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.4', 'https://www.ait-pro.com/aitpro-blog/5689/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-4/' ).'<br>';
2195
  echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.3', 'https://www.ait-pro.com/aitpro-blog/5678/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-3/' ).'<br>';
2196
  echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.2', 'https://www.ait-pro.com/aitpro-blog/5674/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-2/' ).'<br>';
2191
 
2192
  <div class="pro-links">
2193
  <?php
2194
+ echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.5', 'https://www.ait-pro.com/aitpro-blog/5697/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-5/' ).'<br>';
2195
  echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.4', 'https://www.ait-pro.com/aitpro-blog/5689/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-4/' ).'<br>';
2196
  echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.3', 'https://www.ait-pro.com/aitpro-blog/5678/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-3/' ).'<br>';
2197
  echo sprintf( __( '<a href="%2$s" target="_blank" title="Link Opens in New Browser Window">Whats New in BPS Pro %1$s</a>' ), '15.2', 'https://www.ait-pro.com/aitpro-blog/5674/bulletproof-security-pro/whats-new-in-bulletproof-security-pro-15-2/' ).'<br>';
admin/htaccess/secure.htaccess CHANGED
@@ -1,4 +1,4 @@
1
- # BULLETPROOF 4.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 4.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 4.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 4.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/includes/admin.php CHANGED
@@ -430,8 +430,8 @@ global $blog_id;
430
  add_submenu_page('bulletproof-security/admin/core/core.php', __('Email|Log Settings', 'bulletproof-security'), __('Email|Log Settings', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/email-log-settings/email-log-settings.php' );
431
  add_submenu_page('bulletproof-security/admin/core/core.php', __('UI|UX Settings', 'bulletproof-security'), __('UI|UX Settings', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/theme-skin/theme-skin.php' );
432
  add_submenu_page('bulletproof-security/admin/core/core.php', __('Setup Wizard', 'bulletproof-security'), __('Setup Wizard', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/wizard/wizard.php' );
433
- // MScan Iframe Page: hidden submenu. Necessary to avoid the "you don't have permission to view this page" error message.
434
- add_submenu_page( null, __('MScan Iframe', 'bulletproof-security'), __('MScan Iframe', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/mscan/mscan-iframe.php' );
435
 
436
  // Do not display a submenu|link: jQuery UI Dialog Pop up Form Uninstaller Options for BPS free
437
  add_submenu_page( null, __('BPS Plugin Uninstall Options', 'bulletproof-security'), __('BPS Plugin Uninstall Options', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/includes/uninstall.php' );
430
  add_submenu_page('bulletproof-security/admin/core/core.php', __('Email|Log Settings', 'bulletproof-security'), __('Email|Log Settings', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/email-log-settings/email-log-settings.php' );
431
  add_submenu_page('bulletproof-security/admin/core/core.php', __('UI|UX Settings', 'bulletproof-security'), __('UI|UX Settings', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/theme-skin/theme-skin.php' );
432
  add_submenu_page('bulletproof-security/admin/core/core.php', __('Setup Wizard', 'bulletproof-security'), __('Setup Wizard', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/wizard/wizard.php' );
433
+ // MScan Scan Status Page: hidden submenu. Necessary to avoid the "you don't have permission to view this page" error message.
434
+ add_submenu_page( null, __('MScan Scan Status', 'bulletproof-security'), __('MScan Scan Status', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/mscan/mscan-scan-status.php' );
435
 
436
  // Do not display a submenu|link: jQuery UI Dialog Pop up Form Uninstaller Options for BPS free
437
  add_submenu_page( null, __('BPS Plugin Uninstall Options', 'bulletproof-security'), __('BPS Plugin Uninstall Options', 'bulletproof-security'), 'manage_options', 'bulletproof-security/admin/includes/uninstall.php' );
admin/mscan/{mscan-iframe.php → mscan-scan-status.php} RENAMED
@@ -1,13 +1,26 @@
 
 
 
 
 
 
1
  <style>
2
  body {background:white}
 
 
 
 
 
 
 
3
  div#bps-inpage-message{display:none}
4
  div.update-nag{display:none}
5
  div.notice{display:none}
6
  div#bps-status-display{display:none}
7
  div#query-monitor-main{visibility:hidden}
8
  div#MScan-Time-Container {z-index:999999999;position:relative;top:0px;left:0px;background-color:#fff}
9
- div#mscantimer {z-index:999999999;color:#000;font-size:13px!important;font-weight:600!important;line-height:18px;padding:4px 0px 0px 0px;position:relative;top:0px;left:0px;}
10
- #MscanProgressBar {z-index:999999999;position:relative;top:0px;left:0px;width:100%;height:25px;background-color:#e8e8e8;border-radius:2px;-webkit-box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.25);-moz-box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.25);box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.25);}
11
  #MscanBar {z-index:999999999;width:0%;height:25px;font-size:12px!important;font-weight:600!important;text-align:center;line-height:25px;color:white;}
12
  .mscan-progress-bar {z-index:999999999;width:0;height:100%;background:#0e8bcb;background:-moz-linear-gradient(top, #0e8bcb 0%, #08496b 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e8bcb), color-stop(100%,#08496b));background:-webkit-linear-gradient(top, #0e8bcb 0%,#08496b 100%);background:-o-linear-gradient(top, #0e8bcb 0%,#08496b 100%);background:-ms-linear-gradient(top, #0e8bcb 0%,#08496b 100%);background:linear-gradient(to bottom, #0e8bcb 0%,#08496b 100%);-webkit-transition:width 1s ease-in-out;-moz-transition:width 1s ease-in-out;-o-transition:width 1s ease-in-out;transition:width 1s ease-in-out;}
13
 
@@ -20,50 +33,66 @@ div#adminmenu, div#adminmenu .wp-submenu, div#adminmenuback, div#adminmenuwrap{d
20
  }
21
  </style>
22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  <?php
24
  // don't add any commented out CSS code in the CSS code above - The commented out code will still be processed.
25
  // Note if someone is displaying the BPS Pro status display in BPS plugin pages only it throws off the iframe section Don't adjust for that and don't use any CSS
26
  // because it causes other problems.
27
 
28
  // A typical site will load wp-load.php using $wp_load_file6.
 
29
  if ( ! function_exists( 'get_option' ) ) {
30
- $wp_load_file12 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))))))) . '/wp-load.php';
31
- $wp_load_file11 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))))))) . '/wp-load.php';
32
- $wp_load_file10 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))))) . '/wp-load.php';
33
- $wp_load_file9 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))))) . '/wp-load.php';
34
- $wp_load_file8 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))) . '/wp-load.php';
35
- $wp_load_file7 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))) . '/wp-load.php';
36
- $wp_load_file6 = dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))) . '/wp-load.php';
37
- $wp_load_file5 = dirname(dirname(dirname(dirname(dirname(__FILE__))))) . '/wp-load.php';
38
- $wp_load_file4 = dirname(dirname(dirname(dirname(__FILE__)))) . '/wp-load.php';
39
- $wp_load_file3 = dirname(dirname(dirname(__FILE__))) . '/wp-load.php';
40
- $wp_load_file2 = dirname(dirname(__FILE__)) . '/wp-load.php';
41
  $wp_load_file1 = dirname(__FILE__) . '/wp-load.php';
 
 
 
 
 
 
 
 
 
 
 
42
 
43
- if ( file_exists( $wp_load_file12 ) ) {
44
- require_once $wp_load_file12;
45
- } elseif ( file_exists( $wp_load_file11 ) ) {
46
- require_once $wp_load_file11;
47
- } elseif ( file_exists( $wp_load_file10 ) ) {
48
- require_once $wp_load_file10;
49
- } elseif ( file_exists( $wp_load_file9 ) ) {
50
- require_once $wp_load_file9;
51
- } elseif ( file_exists( $wp_load_file8 ) ) {
52
- require_once $wp_load_file8;
53
- } elseif ( file_exists( $wp_load_file7 ) ) {
54
- require_once $wp_load_file7;
55
- } elseif ( file_exists( $wp_load_file6 ) ) {
56
- require_once $wp_load_file6;
57
- } elseif ( file_exists( $wp_load_file5 ) ) {
58
- require_once $wp_load_file5;
59
- } elseif ( file_exists( $wp_load_file4 ) ) {
60
- require_once $wp_load_file4;
61
- } elseif ( file_exists( $wp_load_file3 ) ) {
62
- require_once $wp_load_file3;
63
  } elseif ( file_exists( $wp_load_file2 ) ) {
64
  require_once $wp_load_file2;
65
- } elseif ( file_exists( $wp_load_file1 ) ) {
66
- require_once $wp_load_file1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  } else {
68
  echo '<strong><font color="#fb0101">BPS cannot find and load the WordPress wp-load.php file. MScan cannot be used on this website until that problem is fixed.</font></strong>';
69
  exit();
@@ -211,17 +240,20 @@ if ( isset($MScan_status['bps_mscan_status']) && $MScan_status['bps_mscan_status
211
 
212
  if ( dbScanI == 1 ) {
213
  document.getElementById("mscantimer").innerHTML = "Scan Completed [" + timeStampI + "] : Total Scan Time: " + hourFloorFI + ":" + minuteFloorFI + ":" + secondFloorFI + " : Total Files Scanned: " + totalFilesI + " : Skipped Files: " + skippedFilesI + " : Suspicious Files: " + suspectI + " : Suspicious DB Entries: " + suspectDBI + "<br />" + "To view the detailed Scan Report click the View Report button below. Please view the Scan Report before clicking the Suspicious Files and DB Entries accordion tabs below.";
 
214
  console.log( "Status: 4 : Future Time < Time : Skipped Files: Off : DB Scan: On" );
215
 
216
  } else {
217
 
218
  document.getElementById("mscantimer").innerHTML = "Scan Completed [" + timeStampI + "] : Total Scan Time: " + hourFloorFI + ":" + minuteFloorFI + ":" + secondFloorFI + " : Total Files Scanned: " + totalFilesI + " : Skipped Files: " + skippedFilesI + " : Suspicious Files: " + suspectI + "<br />" + "To view the detailed Scan Report click the View Report button below. Please view the Scan Report before clicking the Suspicious Files and DB Entries accordion tabs below.";
 
219
  console.log( "Status: 4 : Future Time < Time : Skipped Files: Off : DB Scan: Off" );
220
  }
221
  }
222
 
223
  if ( mscanStatusI == 4 && skippedScanI == 1 ) {
224
  document.getElementById("mscantimer").innerHTML = "Skipped File Scan Completed [" + timeStampI + "] : Total Scan Time: " + hourFloorFI + ":" + minuteFloorFI + ":" + secondFloorFI + " : Total Files Scanned: " + totalFilesI + " : Suspicious Files: " + suspectSkipI + "<br />" + "To view the detailed Scan Report click the View Report button below. Please view the Scan Report before clicking the Suspicious Files and DB Entries accordion tabs below.";
 
225
  console.log( "Status: 4 : Future Time < Time : Skipped Files: On : DB Scan: NA" );
226
  }
227
  }
@@ -330,11 +362,13 @@ function MScanTimer() {
330
  // Clicking MScan Reset sets scanStart to a blank value. scanStop != "stop" prevents an endless reload loop from occurring.
331
  if ( mscanStatus == 4 && futureTime < currentTime && totalFiles == "" && scanStart != "" && scanStop != "stop" ) {
332
  window.location.reload(true);
 
333
  console.log( "Status: 4 : Future Time < Time : Total Files: blank : Start: not blank : Stop: not stop" );
334
  }
335
 
336
  if ( mscanStatus == 3 && futureTime < currentTime ) {
337
  window.location.reload(true);
 
338
  document.getElementById("mscantimer").innerHTML = ScanCompleted;
339
  console.log( "Status: 3 : Future Time < Time : Scan Completed" );
340
  }
@@ -353,4 +387,6 @@ function MScanTimer() {
353
  }
354
  }
355
  /* ]]> */
356
- </script>
 
 
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
+ <title>MScan Scan Status</title>
6
+
7
  <style>
8
  body {background:white}
9
+ html.wp-toolbar{padding:0px}
10
+ #wpcontent{margin-left:0px}
11
+ #wpadminbar{display:none}
12
+ #adminmenuback{display:none}
13
+ #adminmenuwrap{display:none}
14
+ #footer-thankyou{display:none}
15
+ div#wpfooter{display:none}
16
  div#bps-inpage-message{display:none}
17
  div.update-nag{display:none}
18
  div.notice{display:none}
19
  div#bps-status-display{display:none}
20
  div#query-monitor-main{visibility:hidden}
21
  div#MScan-Time-Container {z-index:999999999;position:relative;top:0px;left:0px;background-color:#fff}
22
+ div#mscantimer {z-index:999999999;color:#000;font-size:13px!important;font-weight:600!important;line-height:18px;padding:4px 5px 0px 0px;position:relative;top:0px;left:0px;}
23
+ #MscanProgressBar {z-index:999999999;position:relative;top:0px;left:0px;width:98%;height:25px;background-color:#e8e8e8;border-radius:2px;-webkit-box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.25);-moz-box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.25);box-shadow:inset 0 2px 3px rgba(0, 0, 0, 0.25);}
24
  #MscanBar {z-index:999999999;width:0%;height:25px;font-size:12px!important;font-weight:600!important;text-align:center;line-height:25px;color:white;}
25
  .mscan-progress-bar {z-index:999999999;width:0;height:100%;background:#0e8bcb;background:-moz-linear-gradient(top, #0e8bcb 0%, #08496b 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e8bcb), color-stop(100%,#08496b));background:-webkit-linear-gradient(top, #0e8bcb 0%,#08496b 100%);background:-o-linear-gradient(top, #0e8bcb 0%,#08496b 100%);background:-ms-linear-gradient(top, #0e8bcb 0%,#08496b 100%);background:linear-gradient(to bottom, #0e8bcb 0%,#08496b 100%);-webkit-transition:width 1s ease-in-out;-moz-transition:width 1s ease-in-out;-o-transition:width 1s ease-in-out;transition:width 1s ease-in-out;}
26
 
33
  }
34
  </style>
35
 
36
+ <script type="text/javascript">
37
+ <!--
38
+ function AutoRefreshOnce( m ) {
39
+
40
+ // The hash is not seen on initial page load, but is seen after the first reload.
41
+ if ( !window.location.hash ) {
42
+ window.location = window.location + '#loaded';
43
+ setTimeout( "location.reload(true);", m );
44
+ }
45
+ }
46
+ //-->
47
+ </script>
48
+ </head>
49
+
50
+ <body onload="JavaScript:AutoRefreshOnce(1000);">
51
  <?php
52
  // don't add any commented out CSS code in the CSS code above - The commented out code will still be processed.
53
  // Note if someone is displaying the BPS Pro status display in BPS plugin pages only it throws off the iframe section Don't adjust for that and don't use any CSS
54
  // because it causes other problems.
55
 
56
  // A typical site will load wp-load.php using $wp_load_file6.
57
+ // The conditions need to check for the nearest wp-load.php file to load the correct file for the site.
58
  if ( ! function_exists( 'get_option' ) ) {
 
 
 
 
 
 
 
 
 
 
 
59
  $wp_load_file1 = dirname(__FILE__) . '/wp-load.php';
60
+ $wp_load_file2 = dirname(dirname(__FILE__)) . '/wp-load.php';
61
+ $wp_load_file3 = dirname(dirname(dirname(__FILE__))) . '/wp-load.php';
62
+ $wp_load_file4 = dirname(dirname(dirname(dirname(__FILE__)))) . '/wp-load.php';
63
+ $wp_load_file5 = dirname(dirname(dirname(dirname(dirname(__FILE__))))) . '/wp-load.php';
64
+ $wp_load_file6 = dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))) . '/wp-load.php';
65
+ $wp_load_file7 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))) . '/wp-load.php';
66
+ $wp_load_file8 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))) . '/wp-load.php';
67
+ $wp_load_file9 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))))) . '/wp-load.php';
68
+ $wp_load_file10 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))))) . '/wp-load.php';
69
+ $wp_load_file11 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__))))))))))) . '/wp-load.php';
70
+ $wp_load_file12 = dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))))))))) . '/wp-load.php';
71
 
72
+ if ( file_exists( $wp_load_file1 ) ) {
73
+ require_once $wp_load_file1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  } elseif ( file_exists( $wp_load_file2 ) ) {
75
  require_once $wp_load_file2;
76
+ } elseif ( file_exists( $wp_load_file3 ) ) {
77
+ require_once $wp_load_file3;
78
+ } elseif ( file_exists( $wp_load_file4 ) ) {
79
+ require_once $wp_load_file4;
80
+ } elseif ( file_exists( $wp_load_file5 ) ) {
81
+ require_once $wp_load_file5;
82
+ } elseif ( file_exists( $wp_load_file6 ) ) {
83
+ require_once $wp_load_file6;
84
+ } elseif ( file_exists( $wp_load_file7 ) ) {
85
+ require_once $wp_load_file7;
86
+ } elseif ( file_exists( $wp_load_file8 ) ) {
87
+ require_once $wp_load_file8;
88
+ } elseif ( file_exists( $wp_load_file9 ) ) {
89
+ require_once $wp_load_file9;
90
+ } elseif ( file_exists( $wp_load_file10 ) ) {
91
+ require_once $wp_load_file10;
92
+ } elseif ( file_exists( $wp_load_file11 ) ) {
93
+ require_once $wp_load_file11;
94
+ } elseif ( file_exists( $wp_load_file12 ) ) {
95
+ require_once $wp_load_file12;
96
  } else {
97
  echo '<strong><font color="#fb0101">BPS cannot find and load the WordPress wp-load.php file. MScan cannot be used on this website until that problem is fixed.</font></strong>';
98
  exit();
240
 
241
  if ( dbScanI == 1 ) {
242
  document.getElementById("mscantimer").innerHTML = "Scan Completed [" + timeStampI + "] : Total Scan Time: " + hourFloorFI + ":" + minuteFloorFI + ":" + secondFloorFI + " : Total Files Scanned: " + totalFilesI + " : Skipped Files: " + skippedFilesI + " : Suspicious Files: " + suspectI + " : Suspicious DB Entries: " + suspectDBI + "<br />" + "To view the detailed Scan Report click the View Report button below. Please view the Scan Report before clicking the Suspicious Files and DB Entries accordion tabs below.";
243
+ window.opener.location.reload();
244
  console.log( "Status: 4 : Future Time < Time : Skipped Files: Off : DB Scan: On" );
245
 
246
  } else {
247
 
248
  document.getElementById("mscantimer").innerHTML = "Scan Completed [" + timeStampI + "] : Total Scan Time: " + hourFloorFI + ":" + minuteFloorFI + ":" + secondFloorFI + " : Total Files Scanned: " + totalFilesI + " : Skipped Files: " + skippedFilesI + " : Suspicious Files: " + suspectI + "<br />" + "To view the detailed Scan Report click the View Report button below. Please view the Scan Report before clicking the Suspicious Files and DB Entries accordion tabs below.";
249
+ window.opener.location.reload();
250
  console.log( "Status: 4 : Future Time < Time : Skipped Files: Off : DB Scan: Off" );
251
  }
252
  }
253
 
254
  if ( mscanStatusI == 4 && skippedScanI == 1 ) {
255
  document.getElementById("mscantimer").innerHTML = "Skipped File Scan Completed [" + timeStampI + "] : Total Scan Time: " + hourFloorFI + ":" + minuteFloorFI + ":" + secondFloorFI + " : Total Files Scanned: " + totalFilesI + " : Suspicious Files: " + suspectSkipI + "<br />" + "To view the detailed Scan Report click the View Report button below. Please view the Scan Report before clicking the Suspicious Files and DB Entries accordion tabs below.";
256
+ window.opener.location.reload();
257
  console.log( "Status: 4 : Future Time < Time : Skipped Files: On : DB Scan: NA" );
258
  }
259
  }
362
  // Clicking MScan Reset sets scanStart to a blank value. scanStop != "stop" prevents an endless reload loop from occurring.
363
  if ( mscanStatus == 4 && futureTime < currentTime && totalFiles == "" && scanStart != "" && scanStop != "stop" ) {
364
  window.location.reload(true);
365
+ //window.location=window.location;
366
  console.log( "Status: 4 : Future Time < Time : Total Files: blank : Start: not blank : Stop: not stop" );
367
  }
368
 
369
  if ( mscanStatus == 3 && futureTime < currentTime ) {
370
  window.location.reload(true);
371
+ //window.opener.location.reload();
372
  document.getElementById("mscantimer").innerHTML = ScanCompleted;
373
  console.log( "Status: 3 : Future Time < Time : Scan Completed" );
374
  }
387
  }
388
  }
389
  /* ]]> */
390
+ </script>
391
+ </body>
392
+ </html>
admin/mscan/mscan.php CHANGED
@@ -232,53 +232,19 @@ bpsPro_Core_mscan_deny_all();
232
 
233
  <style>
234
  #bps-container div.mscan-report-row-small{font-size:1em;margin:0px 0px 10px 0px}
235
-
236
- @media screen and (max-width: 495px){
237
- div#bps-mscan-iframe-container{height:150px}
238
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:0px;height:195px;margin-top:-47px;width:100%;}
239
- }
240
- @media screen and (min-width: 496px) and (max-width: 916px){
241
- div#bps-mscan-iframe-container{height:80px}
242
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:0px;height:125px;margin-top:-47px;width:100%;}
243
- }
244
- @media screen and (min-width: 917px) and (max-width: 960px){
245
- div#bps-mscan-iframe-container{height:80px}
246
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-45px;height:125px;margin-top:-32px;width:100%;}
247
- }
248
- @media screen and (min-width: 961px) and (max-width: 1043px){
249
- div#bps-mscan-iframe-container{height:80px}
250
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:0px;height:140px;margin-top:-47px;width:100%;}
251
- }
252
- @media screen and (min-width: 1044px) and (max-width: 1185px){
253
- div#bps-mscan-iframe-container{height:80px}
254
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-45px;height:140px;margin-top:-35px;width:100%;}
255
- }
256
- @media screen and (min-width: 1186px) and (max-width: 1221px){
257
- div#bps-mscan-iframe-container{height:60px}
258
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-45px;height:125px;margin-top:-35px;width:100%;}
259
- }
260
- @media screen and (min-width: 1222px) and (max-width: 1304px){
261
- div#bps-mscan-iframe-container{height:80px}
262
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-170px;height:140px;margin-top:-35px;width:100%;}
263
- }
264
- @media screen and (min-width: 1305px) and (max-width: 1370px){
265
- div#bps-mscan-iframe-container{height:70px}
266
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-170px;height:130px;margin-top:-35px;width:100%;}
267
- }
268
- @media screen and (min-width: 1371px) and (max-width: 1599px){
269
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-170px;height:110px;margin-top:-35px;width:100%;}
270
- }
271
- @media screen and (min-width: 1600px){
272
- iframe#bps-mscan-iframe-contents{border:0px none;margin-left:-170px;height:110px;margin-top:-32px;width:100%;}
273
- }
274
  </style>
275
 
276
- <!-- Note if someone is displaying BPS Pro status display in BPS plugin pages only it throws off the iframe section Don't adjust for that and don't use any CSS -->
277
- <!-- because it causes other problems. For BPS free I will probably need to change the position of the iframe since all BPS free stuff is displayed inpage -->
278
- <div id="bps-mscan-iframe-container" style="border:none;overflow:hidden;margin:15px auto;max-width:1400px;">
279
- <iframe id="bps-mscan-iframe-contents" scrolling="no" src="<?php echo get_site_url(null, '/wp-admin/admin.php?page=bulletproof-security%2Fadmin%2Fmscan%2Fmscan-iframe.php', null); ?>" style="">
280
- </iframe>
281
- </div>
 
 
 
 
 
282
 
283
  <?php
284
  // Form Processing: Reset MScan: Deletes the bpspro_mscan DB table, saves blank values for the MScan Status DB options.
@@ -546,7 +512,7 @@ bpsPro_mscan_displayed_messages();
546
  <td>
547
  <form name="MScanStart" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/mscan/mscan.php' ); ?>" method="post">
548
  <?php wp_nonce_field('bulletproof_security_mscan_start'); ?>
549
- <input type="submit" id="bps-mscan-start-button" name="Submit-MScan-Start" style="margin:0px 5px 15px 0px;" value="<?php esc_attr_e('Start Scan', 'bulletproof-security') ?>" class="button bps-button" onclick="return confirm('<?php $text = __('Click OK to start scanning or click Cancel.', 'bulletproof-security'); echo $text; ?>')" />
550
  </form>
551
  </td>
552
  <td>
232
 
233
  <style>
234
  #bps-container div.mscan-report-row-small{font-size:1em;margin:0px 0px 10px 0px}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  </style>
236
 
237
+ <script>
238
+ var MscanStatusWindow;
239
+
240
+ function openWin() {
241
+ MscanStatusWindow = window.open("<?php echo get_site_url(null, '/wp-admin/admin.php?page=bulletproof-security%2Fadmin%2Fmscan%2Fmscan-scan-status.php', null); ?>", "_blank", "toolbar=no,status=yes,titlebar=yes,scrollbars=no,resizable=yes,top=200,left=200,width=1000,height=100");
242
+ }
243
+
244
+ function closeWin() {
245
+ MscanStatusWindow.close();
246
+ }
247
+ </script>
248
 
249
  <?php
250
  // Form Processing: Reset MScan: Deletes the bpspro_mscan DB table, saves blank values for the MScan Status DB options.
512
  <td>
513
  <form name="MScanStart" action="<?php echo admin_url( 'admin.php?page=bulletproof-security/admin/mscan/mscan.php' ); ?>" method="post">
514
  <?php wp_nonce_field('bulletproof_security_mscan_start'); ?>
515
+ <input type="submit" id="bps-mscan-start-button" name="Submit-MScan-Start" style="margin:0px 5px 15px 0px;" value="<?php esc_attr_e('Start Scan', 'bulletproof-security') ?>" class="button bps-button" onclick="openWin()" />
516
  </form>
517
  </td>
518
  <td>
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 &bull; WP Automatic Update Options (BPS MU Tools must-use plugin) &bull; Force Strong Passwords.
8
- Version: 4.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, $plugin_hashes, $theme_hashes;
35
 
36
- define( 'BULLETPROOF_VERSION', '4.8' );
37
- $bps_last_version = '4.7';
38
- $bps_version = '4.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 &bull; WP Automatic Update Options (BPS MU Tools must-use plugin) &bull; Force Strong Passwords.
8
+ Version: 4.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, $plugin_hashes, $theme_hashes;
35
 
36
+ define( 'BULLETPROOF_VERSION', '4.9' );
37
+ $bps_last_version = '4.8';
38
+ $bps_version = '4.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>';
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: 2021-05-09 13: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"
@@ -1821,7 +1821,7 @@ msgstr ""
1821
  #: admin/db-backup-security/db-backup-security.php:1739
1822
  #: admin/email-log-settings/email-log-settings.php:70 admin/login/login.php:187
1823
  #: admin/maintenance/maintenance.php:171 admin/mscan/mscan.php:203
1824
- #: admin/mscan/mscan.php:3493 admin/security-log/security-log.php:210
1825
  #: admin/system-info/system-info.php:73 admin/theme-skin/theme-skin.php:75
1826
  #: admin/theme-skin/theme-skin.php:251
1827
  msgid "Help &amp; FAQ"
@@ -1916,8 +1916,8 @@ msgstr ""
1916
  #: admin/email-log-settings/email-log-settings.php:84 admin/login/login.php:210
1917
  #: admin/login/login.php:837 admin/login/login.php:1169
1918
  #: admin/login/login.php:1709 admin/maintenance/maintenance.php:202
1919
- #: admin/mscan/mscan.php:216 admin/mscan/mscan.php:1997
1920
- #: admin/mscan/mscan.php:2204 admin/mscan/mscan.php:2890
1921
  #: admin/security-log/security-log.php:224 admin/system-info/system-info.php:81
1922
  #: admin/theme-skin/theme-skin.php:90 admin/wizard/wizard.php:1113
1923
  #: admin/wizard/wizard.php:1182 admin/wizard/wizard.php:1694
@@ -2589,7 +2589,7 @@ msgstr ""
2589
 
2590
  #: admin/core/core.php:2063
2591
  #: admin/db-backup-security/db-backup-security.php:1743
2592
- #: admin/mscan/mscan.php:3497 admin/theme-skin/theme-skin.php:255
2593
  msgid "Whats New in "
2594
  msgstr ""
2595
 
@@ -2720,7 +2720,7 @@ msgstr ""
2720
  #: admin/db-backup-security/db-backup-security.php:1747
2721
  #: admin/email-log-settings/email-log-settings.php:216
2722
  #: admin/login/login.php:1830 admin/maintenance/maintenance.php:2140
2723
- #: admin/mscan/mscan.php:3500 admin/security-log/security-log.php:812
2724
  #: admin/system-info/system-info.php:1135 admin/theme-skin/theme-skin.php:258
2725
  msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
2726
  msgstr ""
@@ -2977,35 +2977,35 @@ msgstr ""
2977
 
2978
  #: admin/core/core.php:2194 admin/core/core.php:2195 admin/core/core.php:2196
2979
  #: admin/core/core.php:2197 admin/core/core.php:2198 admin/core/core.php:2199
2980
- #: admin/core/core.php:2200 admin/core/core.php:2201 admin/core/core.php:2207
2981
  #: admin/core/core.php:2208 admin/core/core.php:2209 admin/core/core.php:2210
2982
- #: admin/core/core.php:2211 admin/core/core.php:2212 admin/core/core.php:2218
2983
  #: admin/core/core.php:2219 admin/core/core.php:2220 admin/core/core.php:2221
2984
- #: admin/core/core.php:2226 admin/core/core.php:2227 admin/core/core.php:2228
2985
- #: admin/core/core.php:2229 admin/core/core.php:2230 admin/core/core.php:2235
2986
  #: admin/core/core.php:2236 admin/core/core.php:2237 admin/core/core.php:2238
2987
  #: admin/core/core.php:2239 admin/core/core.php:2240 admin/core/core.php:2241
2988
- #: admin/core/core.php:2242 admin/core/core.php:2243 admin/core/core.php:2248
2989
  #: admin/core/core.php:2249 admin/core/core.php:2250 admin/core/core.php:2251
2990
  #: admin/core/core.php:2252 admin/core/core.php:2253 admin/core/core.php:2254
2991
  #: admin/core/core.php:2255 admin/core/core.php:2256 admin/core/core.php:2257
2992
  #: admin/core/core.php:2258 admin/core/core.php:2259 admin/core/core.php:2260
2993
- #: admin/core/core.php:2266 admin/core/core.php:2267 admin/core/core.php:2268
2994
  #: admin/core/core.php:2269 admin/core/core.php:2270 admin/core/core.php:2271
2995
  #: admin/core/core.php:2272 admin/core/core.php:2273 admin/core/core.php:2274
2996
  #: admin/core/core.php:2275 admin/core/core.php:2276 admin/core/core.php:2277
2997
- #: admin/core/core.php:2278 admin/core/core.php:2279 admin/core/core.php:2285
2998
  #: admin/core/core.php:2286 admin/core/core.php:2287 admin/core/core.php:2288
2999
  #: admin/core/core.php:2289 admin/core/core.php:2290 admin/core/core.php:2291
3000
  #: admin/core/core.php:2292 admin/core/core.php:2293 admin/core/core.php:2294
3001
  #: admin/core/core.php:2295 admin/core/core.php:2296 admin/core/core.php:2297
3002
- #: admin/core/core.php:2303 admin/core/core.php:2304 admin/core/core.php:2305
3003
  #: admin/core/core.php:2306 admin/core/core.php:2307 admin/core/core.php:2308
3004
  #: admin/core/core.php:2309 admin/core/core.php:2310 admin/core/core.php:2311
3005
- #: admin/core/core.php:2312 admin/core/core.php:2318 admin/core/core.php:2319
3006
  #: admin/core/core.php:2320 admin/core/core.php:2321 admin/core/core.php:2322
3007
  #: admin/core/core.php:2323 admin/core/core.php:2324 admin/core/core.php:2325
3008
- #: admin/core/core.php:2326 admin/core/core.php:2327
3009
  #, php-format
3010
  msgid ""
3011
  "<a href=\"%2$s\" target=\"_blank\" title=\"Link Opens in New Browser Window"
@@ -3748,7 +3748,7 @@ msgstr ""
3748
  #: admin/db-backup-security/db-backup-security.php:896
3749
  #: admin/login/login.php:580 admin/login/login.php:609
3750
  #: admin/login/login.php:681 admin/login/login.php:710
3751
- #: admin/mscan/mscan.php:1630 admin/mscan/mscan.php:3013
3752
  msgid "Delete"
3753
  msgstr ""
3754
 
@@ -3847,7 +3847,7 @@ msgid "Backup Job Settings|Independent Options"
3847
  msgstr ""
3848
 
3849
  #: admin/db-backup-security/db-backup-security.php:992
3850
- #: admin/mscan/mscan.php:930
3851
  msgid "All"
3852
  msgstr ""
3853
 
@@ -4314,7 +4314,7 @@ msgid ""
4314
  msgstr ""
4315
 
4316
  #: admin/db-backup-security/db-backup-security.php:1267
4317
- #: admin/mscan/mscan.php:2049
4318
  msgid ""
4319
  "Then click the Delete Log button to delete the contents of this Log file."
4320
  msgstr ""
@@ -4334,7 +4334,7 @@ msgid "Clicking OK will delete the contents of your DB Backup Log file."
4334
  msgstr ""
4335
 
4336
  #: admin/db-backup-security/db-backup-security.php:1304
4337
- #: admin/mscan/mscan.php:2093 admin/security-log/security-log.php:492
4338
  msgid "Click OK to Delete the Log file contents or click Cancel."
4339
  msgstr ""
4340
 
@@ -4484,12 +4484,12 @@ msgid ""
4484
  msgstr ""
4485
 
4486
  #: admin/db-backup-security/db-backup-security.php:1744
4487
- #: admin/mscan/mscan.php:3498 admin/theme-skin/theme-skin.php:256
4488
  msgid "BPS Pro Features & Version Release Dates"
4489
  msgstr ""
4490
 
4491
  #: admin/db-backup-security/db-backup-security.php:1745
4492
- #: admin/mscan/mscan.php:3499 admin/theme-skin/theme-skin.php:257
4493
  msgid "Video Tutorials"
4494
  msgstr ""
4495
 
@@ -4751,7 +4751,7 @@ msgid "Setup Wizard"
4751
  msgstr ""
4752
 
4753
  #: admin/includes/admin.php:434
4754
- msgid "MScan Iframe"
4755
  msgstr ""
4756
 
4757
  #: admin/includes/admin.php:437 admin/includes/admin.php:445
@@ -4889,8 +4889,8 @@ msgstr ""
4889
 
4890
  #: admin/login/login.php:232 admin/login/login.php:329
4891
  #: admin/login/login.php:649 admin/login/login.php:750
4892
- #: admin/mscan/mscan.php:1438 admin/mscan/mscan.php:1660
4893
- #: admin/mscan/mscan.php:1782 admin/mscan/mscan.php:1941
4894
  msgid "Submit"
4895
  msgstr ""
4896
 
@@ -5119,7 +5119,7 @@ msgid ""
5119
  msgstr ""
5120
 
5121
  #: admin/login/login.php:649 admin/login/login.php:750
5122
- #: admin/mscan/mscan.php:1661 admin/mscan/mscan.php:1942
5123
  msgid "Clear|Refresh"
5124
  msgstr ""
5125
 
@@ -7465,7 +7465,7 @@ msgid ""
7465
  "will be deleted."
7466
  msgstr ""
7467
 
7468
- #: admin/mscan/mscan-help-text.php:32 admin/mscan/mscan.php:916
7469
  msgid "Website Folders & Files To Scan"
7470
  msgstr ""
7471
 
@@ -7504,7 +7504,7 @@ msgid ""
7504
  "than 300 seconds."
7505
  msgstr ""
7506
 
7507
- #: admin/mscan/mscan-help-text.php:38 admin/mscan/mscan.php:1024
7508
  msgid "Exclude Individual Folders"
7509
  msgstr ""
7510
 
@@ -7521,7 +7521,7 @@ msgid ""
7521
  "particular cache folder under the wp-content folder."
7522
  msgstr ""
7523
 
7524
- #: admin/mscan/mscan-help-text.php:40 admin/mscan/mscan.php:1030
7525
  msgid "Scan Database"
7526
  msgstr ""
7527
 
@@ -7531,7 +7531,7 @@ msgid ""
7531
  "suspicious code."
7532
  msgstr ""
7533
 
7534
- #: admin/mscan/mscan-help-text.php:42 admin/mscan/mscan.php:1036
7535
  msgid "Scan Skipped Files Only"
7536
  msgstr ""
7537
 
@@ -7544,7 +7544,7 @@ msgid ""
7544
  "to On."
7545
  msgstr ""
7546
 
7547
- #: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:1042
7548
  msgid "Automatically Delete /tmp Files"
7549
  msgstr ""
7550
 
@@ -7554,7 +7554,7 @@ msgid ""
7554
  "commonly hide hacker files in the /tmp folder."
7555
  msgstr ""
7556
 
7557
- #: admin/mscan/mscan-help-text.php:46 admin/mscan/mscan.php:1048
7558
  msgid "Exclude /tmp Files"
7559
  msgstr ""
7560
 
@@ -7654,7 +7654,7 @@ msgid ""
7654
  "convention: tmeme-name-child.x.x.zip."
7655
  msgstr ""
7656
 
7657
- #: admin/mscan/mscan-help-text.php:60 admin/mscan/mscan.php:1365
7658
  msgid "View|Ignore|Delete Suspicious Files"
7659
  msgstr ""
7660
 
@@ -7669,7 +7669,7 @@ msgid ""
7669
  "ignored file it will be scanned in future scans."
7670
  msgstr ""
7671
 
7672
- #: admin/mscan/mscan-help-text.php:62 admin/mscan/mscan.php:1712
7673
  msgid "View|Ignore Suspicious DB Entries"
7674
  msgstr ""
7675
 
@@ -7702,7 +7702,7 @@ msgstr ""
7702
  msgid "MScan Logging"
7703
  msgstr ""
7704
 
7705
- #: admin/mscan/mscan-help-text.php:69 admin/mscan/mscan.php:1992
7706
  msgid "Logs extensive details about each scan that you run."
7707
  msgstr ""
7708
 
@@ -7806,18 +7806,18 @@ msgstr ""
7806
  msgid "MScan 2.0"
7807
  msgstr ""
7808
 
7809
- #: admin/mscan/mscan.php:200 admin/mscan/mscan.php:1997
7810
- #: admin/mscan/mscan.php:1999
7811
  msgid "MScan Log"
7812
  msgstr ""
7813
 
7814
- #: admin/mscan/mscan.php:201 admin/mscan/mscan.php:2204
7815
- #: admin/mscan/mscan.php:2206
7816
  msgid "MScan Report"
7817
  msgstr ""
7818
 
7819
- #: admin/mscan/mscan.php:202 admin/mscan/mscan.php:2890
7820
- #: admin/mscan/mscan.php:2892
7821
  msgid "MScan Saved Reports"
7822
  msgstr ""
7823
 
@@ -7841,13 +7841,13 @@ msgstr ""
7841
  msgid "BPS Pro Troubleshooting Steps"
7842
  msgstr ""
7843
 
7844
- #: admin/mscan/mscan.php:343
7845
  msgid ""
7846
  "MScan scan results and data has been deleted. Your MScan option settings "
7847
  "have not been deleted."
7848
  msgstr ""
7849
 
7850
- #: admin/mscan/mscan.php:360
7851
  msgid ""
7852
  "MScan Plugin and Theme file hashes have been deleted. New Plugin and Theme "
7853
  "file hashes will be created the next time you run a scan. You should also "
@@ -7855,22 +7855,22 @@ msgid ""
7855
  "settings have not been deleted."
7856
  msgstr ""
7857
 
7858
- #: admin/mscan/mscan.php:402 admin/mscan/mscan.php:422
7859
- #: admin/mscan/mscan.php:706
7860
  msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
7861
  msgstr ""
7862
 
7863
- #: admin/mscan/mscan.php:406
7864
  msgid ""
7865
  "MScan scanning has been stopped. Note: The Stop Scan button also stops the "
7866
  "Scan Time Estimate Tool from calculating estimated scan time."
7867
  msgstr ""
7868
 
7869
- #: admin/mscan/mscan.php:528
7870
  msgid "First Time Scan or the Delete File Hashes Tool was used"
7871
  msgstr ""
7872
 
7873
- #: admin/mscan/mscan.php:528
7874
  msgid ""
7875
  "You will only see this message the first time you do a scan or if you use "
7876
  "the Delete Files Hashes Tool. In order to make sure all Plugin and Theme "
@@ -7878,40 +7878,36 @@ msgid ""
7878
  "scan. You can run a new scan after this scan has completed."
7879
  msgstr ""
7880
 
7881
- #: admin/mscan/mscan.php:549
7882
- msgid "Click OK to start scanning or click Cancel."
7883
- msgstr ""
7884
-
7885
- #: admin/mscan/mscan.php:555
7886
  msgid "Click OK to stop scanning or click Cancel."
7887
  msgstr ""
7888
 
7889
- #: admin/mscan/mscan.php:567
7890
  msgid ""
7891
  "Click OK to reset/delete all MScan scan results and data or click Cancel. "
7892
  "Note: MScan option settings will not be reset/deleted."
7893
  msgstr ""
7894
 
7895
- #: admin/mscan/mscan.php:575
7896
  msgid "MScan Options & Tools"
7897
  msgstr ""
7898
 
7899
- #: admin/mscan/mscan.php:587
7900
  msgid "Save MScan Options"
7901
  msgstr ""
7902
 
7903
- #: admin/mscan/mscan.php:710
7904
  msgid ""
7905
  "Skipped file scanning is turned On. There are no skipped files to be "
7906
  "scanned. Either there really are not any skipped files to scan or you have "
7907
  "not run a regular scan yet with the Skipped File Scan option turned Off."
7908
  msgstr ""
7909
 
7910
- #: admin/mscan/mscan.php:714
7911
  msgid "Warning: "
7912
  msgstr ""
7913
 
7914
- #: admin/mscan/mscan.php:714
7915
  msgid ""
7916
  "On some web hosts (Known host issues: SiteGround, Cyon) turning On the "
7917
  "\"Automatically Delete /tmp Files\" option setting will cause your website/"
@@ -7922,31 +7918,31 @@ msgid ""
7922
  "the names of those tmp files to exclude."
7923
  msgstr ""
7924
 
7925
- #: admin/mscan/mscan.php:718
7926
  msgid "MScan Options saved."
7927
  msgstr ""
7928
 
7929
- #: admin/mscan/mscan.php:916
7930
  msgid "Files are not displayed, but will be scanned"
7931
  msgstr ""
7932
 
7933
- #: admin/mscan/mscan.php:917
7934
  msgid "MScan Options"
7935
  msgstr ""
7936
 
7937
- #: admin/mscan/mscan.php:918
7938
  msgid "MScan Tools"
7939
  msgstr ""
7940
 
7941
- #: admin/mscan/mscan.php:931
7942
  msgid "Folder Name"
7943
  msgstr ""
7944
 
7945
- #: admin/mscan/mscan.php:950
7946
  msgid "Folder is not readable"
7947
  msgstr ""
7948
 
7949
- #: admin/mscan/mscan.php:981
7950
  msgid ""
7951
  "This folder contains another WordPress website. This checkbox cannot be "
7952
  "checked. To scan that site run MScan from that site. Click the MScan Read Me "
@@ -7954,95 +7950,95 @@ msgid ""
7954
  "section."
7955
  msgstr ""
7956
 
7957
- #: admin/mscan/mscan.php:1015
7958
  msgid "Max File Size Limit to Scan:"
7959
  msgstr ""
7960
 
7961
- #: admin/mscan/mscan.php:1020
7962
  msgid "Max Time Limit to Scan:"
7963
  msgstr ""
7964
 
7965
- #: admin/mscan/mscan.php:1024
7966
  msgid "Enter one folder path per line. Include folder slashes."
7967
  msgstr ""
7968
 
7969
- #: admin/mscan/mscan.php:1024 admin/mscan/mscan.php:1048
7970
  msgid "Example:"
7971
  msgstr ""
7972
 
7973
- #: admin/mscan/mscan.php:1024 admin/mscan/mscan.php:1036
7974
- #: admin/mscan/mscan.php:1048
7975
  msgid "Click the MScan Read Me help button for more help info."
7976
  msgstr ""
7977
 
7978
- #: admin/mscan/mscan.php:1032
7979
  msgid "Database Scan On"
7980
  msgstr ""
7981
 
7982
- #: admin/mscan/mscan.php:1033
7983
  msgid "Database Scan Off"
7984
  msgstr ""
7985
 
7986
- #: admin/mscan/mscan.php:1036
7987
  msgid ""
7988
  "When Skipped File Scan is On only skipped files will be scanned. Note: No "
7989
  "other MScan option settings have any effect while Skipped File Scan is set "
7990
  "to On."
7991
  msgstr ""
7992
 
7993
- #: admin/mscan/mscan.php:1038
7994
  msgid "Skipped File Scan Off"
7995
  msgstr ""
7996
 
7997
- #: admin/mscan/mscan.php:1039
7998
  msgid "Skipped File Scan On"
7999
  msgstr ""
8000
 
8001
- #: admin/mscan/mscan.php:1044
8002
  msgid "Delete Tmp Files Off"
8003
  msgstr ""
8004
 
8005
- #: admin/mscan/mscan.php:1045
8006
  msgid "Delete Tmp Files On"
8007
  msgstr ""
8008
 
8009
- #: admin/mscan/mscan.php:1048
8010
  msgid "Enter one file name per line."
8011
  msgstr ""
8012
 
8013
- #: admin/mscan/mscan.php:1054
8014
  msgid "Scheduled Scan Frequency (BPS Pro only)"
8015
  msgstr ""
8016
 
8017
- #: admin/mscan/mscan.php:1056
8018
  msgid "Scheduled Scan Off"
8019
  msgstr ""
8020
 
8021
- #: admin/mscan/mscan.php:1057
8022
  msgid "Run Scan Every 60 Minutes"
8023
  msgstr ""
8024
 
8025
- #: admin/mscan/mscan.php:1058
8026
  msgid "Run Scan Every 3 Hours"
8027
  msgstr ""
8028
 
8029
- #: admin/mscan/mscan.php:1059
8030
  msgid "Run Scan Every 6 Hours"
8031
  msgstr ""
8032
 
8033
- #: admin/mscan/mscan.php:1060
8034
  msgid "Run Scan Every 12 Hours"
8035
  msgstr ""
8036
 
8037
- #: admin/mscan/mscan.php:1061
8038
  msgid "Run Scan Every 24 Hours"
8039
  msgstr ""
8040
 
8041
- #: admin/mscan/mscan.php:1064
8042
  msgid "Click OK to save MScan Options or click Cancel"
8043
  msgstr ""
8044
 
8045
- #: admin/mscan/mscan.php:1080
8046
  msgid ""
8047
  "CAUTION: Please click the MScan Read Me help button before using this tool. "
8048
  "This tool allows you to delete the Plugin and Theme file hashes.\\n"
@@ -8053,61 +8049,61 @@ msgid ""
8053
  "OK to delete Plugin and Theme file hashes or click Cancel"
8054
  msgstr ""
8055
 
8056
- #: admin/mscan/mscan.php:1090
8057
  msgid ""
8058
  "Clicking OK will upload Plugin Zip files to the /wp-content/bps-backup/"
8059
  "plugin-hashes/ folder. The zip files will be extracted, MD5 file hashes will "
8060
  "be created and the zip files will be deleted."
8061
  msgstr ""
8062
 
8063
- #: admin/mscan/mscan.php:1090
8064
  msgid ""
8065
  "Zip files MUST be named using this exact format: plugin-name.x.x.zip where x "
8066
  "is the actual current version number of the plugin in the zip file."
8067
  msgstr ""
8068
 
8069
- #: admin/mscan/mscan.php:1090
8070
  msgid "Click OK to upload Plugin Zip files or click Cancel."
8071
  msgstr ""
8072
 
8073
- #: admin/mscan/mscan.php:1100
8074
  msgid ""
8075
  "Clicking OK will upload Theme Zip files to the /wp-content/bps-backup/theme-"
8076
  "hashes/ folder. The zip files will be extracted, MD5 file hashes will be "
8077
  "created and the zip files will be deleted."
8078
  msgstr ""
8079
 
8080
- #: admin/mscan/mscan.php:1100
8081
  msgid ""
8082
  "Zip files MUST be named using this exact format: theme-name.x.x.zip where x "
8083
  "is the actual current version number of the theme in the zip file."
8084
  msgstr ""
8085
 
8086
- #: admin/mscan/mscan.php:1100
8087
  msgid "Click OK to upload Theme Zip files or click Cancel."
8088
  msgstr ""
8089
 
8090
- #: admin/mscan/mscan.php:1143
8091
  msgid "Plugin Zip File Upload Successful: "
8092
  msgstr ""
8093
 
8094
- #: admin/mscan/mscan.php:1206 admin/mscan/mscan.php:1320
8095
  msgid "Error: Zip File Upload Failed: "
8096
  msgstr ""
8097
 
8098
- #: admin/mscan/mscan.php:1206 admin/mscan/mscan.php:1320
8099
  msgid "Unable to move this uploaded zip file: "
8100
  msgstr ""
8101
 
8102
- #: admin/mscan/mscan.php:1206 admin/mscan/mscan.php:1320
8103
  msgid " to this folder: "
8104
  msgstr ""
8105
 
8106
- #: admin/mscan/mscan.php:1212 admin/mscan/mscan.php:1326
8107
  msgid "File Extension/Type or Filename Error: "
8108
  msgstr ""
8109
 
8110
- #: admin/mscan/mscan.php:1212
8111
  msgid ""
8112
  " is either not a .zip file or the .zip file is not named correctly. Only ."
8113
  "zip files are allowed to be uploaded. Zip files MUST be named using this "
@@ -8115,21 +8111,21 @@ msgid ""
8115
  "version of the plugin in the zip file."
8116
  msgstr ""
8117
 
8118
- #: admin/mscan/mscan.php:1218 admin/mscan/mscan.php:1332
8119
  msgid "Error: No zip file chosen: "
8120
  msgstr ""
8121
 
8122
- #: admin/mscan/mscan.php:1218
8123
  msgid ""
8124
  "You need to choose zip files before clicking the Upload Plugin Zip Files "
8125
  "button."
8126
  msgstr ""
8127
 
8128
- #: admin/mscan/mscan.php:1257
8129
  msgid "Theme Zip File Upload Successful: "
8130
  msgstr ""
8131
 
8132
- #: admin/mscan/mscan.php:1326
8133
  msgid ""
8134
  " is either not a .zip file or the .zip file is not named correctly. Only ."
8135
  "zip files are allowed to be uploaded. Zip files MUST be named using this "
@@ -8137,182 +8133,182 @@ msgid ""
8137
  "version of the theme in the zip file."
8138
  msgstr ""
8139
 
8140
- #: admin/mscan/mscan.php:1332
8141
  msgid ""
8142
  "You need to choose zip files before clicking the Upload Theme Zip Files "
8143
  "button."
8144
  msgstr ""
8145
 
8146
- #: admin/mscan/mscan.php:1479
8147
  msgid " has been deleted."
8148
  msgstr ""
8149
 
8150
- #: admin/mscan/mscan.php:1500
8151
  msgid ""
8152
  " Current Status has been changed to Ignored File and this file will not be "
8153
  "scanned in any future MScan Scans."
8154
  msgstr ""
8155
 
8156
- #: admin/mscan/mscan.php:1521
8157
  msgid ""
8158
  " Ignored File Status has been removed. The previous Status of the file will "
8159
  "be displayed again and this file will be scanned in future MScan scans."
8160
  msgstr ""
8161
 
8162
- #: admin/mscan/mscan.php:1543 admin/mscan/mscan.php:1552
8163
  msgid "Close File"
8164
  msgstr ""
8165
 
8166
- #: admin/mscan/mscan.php:1543 admin/mscan/mscan.php:1552
8167
- #: admin/mscan/mscan.php:1859
8168
  msgid "MScan Pattern Match"
8169
  msgstr ""
8170
 
8171
- #: admin/mscan/mscan.php:1543
8172
  msgid ""
8173
  "Only the MScan Pattern Match is displayed for images instead of the image "
8174
  "file code."
8175
  msgstr ""
8176
 
8177
- #: admin/mscan/mscan.php:1543
8178
  msgid ""
8179
  "Opening image files to view image file code does not work well in a Browser."
8180
  msgstr ""
8181
 
8182
- #: admin/mscan/mscan.php:1543
8183
  msgid ""
8184
  "You can download suspicious image files and use a code editor like Notepad++ "
8185
  "to check image file code for any malicious code."
8186
  msgstr ""
8187
 
8188
- #: admin/mscan/mscan.php:1543 admin/mscan/mscan.php:1552
8189
- #: admin/mscan/mscan.php:1859
8190
  msgid ""
8191
  "If you are not sure what to check for or what is and is not malicious code "
8192
  "then click the MScan Read Me help button."
8193
  msgstr ""
8194
 
8195
- #: admin/mscan/mscan.php:1552
8196
  msgid ""
8197
  "You can use your Browser's Search or Find feature to search the file "
8198
  "contents/code displayed below using the MScan Pattern Match above for the "
8199
  "suspicious code that was detected by MScan."
8200
  msgstr ""
8201
 
8202
- #: admin/mscan/mscan.php:1552
8203
  msgid ""
8204
  "You can download suspicious files if you would like to check the file "
8205
  "contents/code more extensively with a code editor like Notepad++."
8206
  msgstr ""
8207
 
8208
- #: admin/mscan/mscan.php:1567 admin/mscan/mscan.php:2544
8209
- #: admin/mscan/mscan.php:3366
8210
  msgid ""
8211
  "File hash comparison scan results are 100% accurate. WP Core, Plugin and "
8212
  "Theme files are scanned using file hash comparison scanning."
8213
  msgstr ""
8214
 
8215
- #: admin/mscan/mscan.php:1567 admin/mscan/mscan.php:2544
8216
- #: admin/mscan/mscan.php:3366
8217
  msgid ""
8218
  "Pattern matching scan results are less accurate and will usually detect some "
8219
  "false positive matches. All other files that are not WP Core, Plugin and "
8220
  "Theme files are scanned using pattern matching scanning."
8221
  msgstr ""
8222
 
8223
- #: admin/mscan/mscan.php:1567
8224
  msgid ""
8225
  "You can View, Ignore and Delete files detected as suspicious using the Form "
8226
  "below. Before deleting any files make a backup of those files on your "
8227
  "computer not on your hosting account."
8228
  msgstr ""
8229
 
8230
- #: admin/mscan/mscan.php:1567 admin/mscan/mscan.php:2544
8231
- #: admin/mscan/mscan.php:3366
8232
  msgid ""
8233
  "And of course check the file contents of suspicious files to see if they "
8234
  "contain hacker code or are false positive matches. Use the Ignore File "
8235
  "checkbox option to ignore false postive matches."
8236
  msgstr ""
8237
 
8238
- #: admin/mscan/mscan.php:1567 admin/mscan/mscan.php:2544
8239
- #: admin/mscan/mscan.php:3366
8240
  msgid ""
8241
  "When you ignore a file it will no longer be scanned in any future scans. "
8242
  "When you unignore an ignored file it will be scanned in future scans."
8243
  msgstr ""
8244
 
8245
- #: admin/mscan/mscan.php:1583 admin/mscan/mscan.php:1884
8246
- #: admin/mscan/mscan.php:2559 admin/mscan/mscan.php:2637
8247
- #: admin/mscan/mscan.php:3373 admin/mscan/mscan.php:3419
8248
  msgid "Current Status"
8249
  msgstr ""
8250
 
8251
- #: admin/mscan/mscan.php:1584
8252
  msgid "View<br>File"
8253
  msgstr ""
8254
 
8255
- #: admin/mscan/mscan.php:1585
8256
  msgid "Ignore<br>File"
8257
  msgstr ""
8258
 
8259
- #: admin/mscan/mscan.php:1586
8260
  msgid "Unignore<br>File"
8261
  msgstr ""
8262
 
8263
- #: admin/mscan/mscan.php:1587
8264
  msgid "Delete<br>File"
8265
  msgstr ""
8266
 
8267
- #: admin/mscan/mscan.php:1588 admin/mscan/mscan.php:2560
8268
- #: admin/mscan/mscan.php:3374 admin/system-info/system-info.php:948
8269
  #: admin/system-info/system-info.php:988
8270
  msgid "File Path"
8271
  msgstr ""
8272
 
8273
- #: admin/mscan/mscan.php:1589
8274
  msgid "File Hash or<br>Pattern Match"
8275
  msgstr ""
8276
 
8277
- #: admin/mscan/mscan.php:1590 admin/mscan/mscan.php:1892
8278
  msgid "Scan<br>Time"
8279
  msgstr ""
8280
 
8281
- #: admin/mscan/mscan.php:1603 admin/mscan/mscan.php:2575
8282
  msgid "Skipped File"
8283
  msgstr ""
8284
 
8285
- #: admin/mscan/mscan.php:1603 admin/mscan/mscan.php:2575
8286
  msgid "Not Scanned"
8287
  msgstr ""
8288
 
8289
- #: admin/mscan/mscan.php:1607 admin/mscan/mscan.php:1614
8290
- #: admin/mscan/mscan.php:2579 admin/mscan/mscan.php:2586
8291
  msgid "Ignored File"
8292
  msgstr ""
8293
 
8294
- #: admin/mscan/mscan.php:1619 admin/mscan/mscan.php:2591
8295
  msgid "Suspicious File"
8296
  msgstr ""
8297
 
8298
- #: admin/mscan/mscan.php:1625 admin/mscan/mscan.php:1913
8299
- #: admin/mscan/mscan.php:3012
8300
  msgid "View"
8301
  msgstr ""
8302
 
8303
- #: admin/mscan/mscan.php:1626 admin/mscan/mscan.php:1914
8304
  msgid "Ignore"
8305
  msgstr ""
8306
 
8307
- #: admin/mscan/mscan.php:1628 admin/mscan/mscan.php:1915
8308
  msgid "Unignore"
8309
  msgstr ""
8310
 
8311
- #: admin/mscan/mscan.php:1646 admin/mscan/mscan.php:2614
8312
  msgid "No Suspicious Files were detected"
8313
  msgstr ""
8314
 
8315
- #: admin/mscan/mscan.php:1660
8316
  msgid ""
8317
  "View File Option: Selecting the View File Checkbox Form option will display "
8318
  "the contents of the file that you have selected to view.\\n"
@@ -8332,45 +8328,45 @@ msgid ""
8332
  "OK to proceed or click Cancel"
8333
  msgstr ""
8334
 
8335
- #: admin/mscan/mscan.php:1816
8336
  msgid "Current Status has been changed to Ignored for DB Row ID"
8337
  msgstr ""
8338
 
8339
- #: admin/mscan/mscan.php:1816 admin/mscan/mscan.php:1835
8340
  msgid "in DB Column"
8341
  msgstr ""
8342
 
8343
- #: admin/mscan/mscan.php:1816
8344
  msgid "This DB Entry will not be scanned in any future MScan Scans."
8345
  msgstr ""
8346
 
8347
- #: admin/mscan/mscan.php:1835
8348
  msgid "The Ignored DB Entry Status has been removed for DB Row ID"
8349
  msgstr ""
8350
 
8351
- #: admin/mscan/mscan.php:1835
8352
  msgid ""
8353
  "The previous Status of the DB Entry will be displayed again and this DB "
8354
  "Entry will be scanned in future MScan scans."
8355
  msgstr ""
8356
 
8357
- #: admin/mscan/mscan.php:1854 admin/mscan/mscan.php:1859
8358
  msgid "Close"
8359
  msgstr ""
8360
 
8361
- #: admin/mscan/mscan.php:1854
8362
  msgid "Pharma Hack DB Table and Column"
8363
  msgstr ""
8364
 
8365
- #: admin/mscan/mscan.php:1854
8366
  msgid "Pharma Hack cleanup/removal steps"
8367
  msgstr ""
8368
 
8369
- #: admin/mscan/mscan.php:1854
8370
  msgid "Edit your theme's header.php file and delete this code: "
8371
  msgstr ""
8372
 
8373
- #: admin/mscan/mscan.php:1854
8374
  msgid ""
8375
  "Delete this file in your theme's root folder: nav.php. Login to your web "
8376
  "host control panel, login to your WP Database using phpMyAdmin and delete "
@@ -8379,102 +8375,102 @@ msgid ""
8379
  "any that you do see."
8380
  msgstr ""
8381
 
8382
- #: admin/mscan/mscan.php:1859
8383
  msgid "DB Table, Column and Row ID"
8384
  msgstr ""
8385
 
8386
- #: admin/mscan/mscan.php:1859
8387
  msgid "Steps to view the database data that MScan detected as suspicious"
8388
  msgstr ""
8389
 
8390
- #: admin/mscan/mscan.php:1859
8391
  msgid ""
8392
  "Login to your web host control panel, login to your WP Database using "
8393
  "phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
8394
  "above. Note: Look for code that matches the MScan Pattern Match."
8395
  msgstr ""
8396
 
8397
- #: admin/mscan/mscan.php:1870 admin/mscan/mscan.php:2624
8398
- #: admin/mscan/mscan.php:3410
8399
  msgid "Database scanning uses pattern matching scanning."
8400
  msgstr ""
8401
 
8402
- #: admin/mscan/mscan.php:1870 admin/mscan/mscan.php:2624
8403
- #: admin/mscan/mscan.php:3410
8404
  msgid ""
8405
  "Pattern matching scan results will usually detect some false positive "
8406
  "matches."
8407
  msgstr ""
8408
 
8409
- #: admin/mscan/mscan.php:1870
8410
  msgid ""
8411
  "This form allows you to view, ignore or unignore suspicious DB Entries. "
8412
  "Note: The view option displays the DB Table, Column, Row ID and the MScan "
8413
  "Pattern Match that was detected by the MScan scan."
8414
  msgstr ""
8415
 
8416
- #: admin/mscan/mscan.php:1870
8417
  msgid "Before deleting any database data make a backup of your database."
8418
  msgstr ""
8419
 
8420
- #: admin/mscan/mscan.php:1870 admin/mscan/mscan.php:2624
8421
- #: admin/mscan/mscan.php:3410
8422
  msgid ""
8423
  "Use phpMyAdmin or a similar tool to check your database Row where the "
8424
  "suspicious code was found."
8425
  msgstr ""
8426
 
8427
- #: admin/mscan/mscan.php:1870 admin/mscan/mscan.php:2624
8428
- #: admin/mscan/mscan.php:3410
8429
  msgid ""
8430
  "When you ignore a DB Entry it will no longer be scanned in any future scans. "
8431
  "When you unignore an ignored DB Entry it will be scanned in future scans."
8432
  msgstr ""
8433
 
8434
- #: admin/mscan/mscan.php:1885
8435
  msgid "View<br>DB Entry"
8436
  msgstr ""
8437
 
8438
- #: admin/mscan/mscan.php:1886
8439
  msgid "Ignore<br>DB Entry"
8440
  msgstr ""
8441
 
8442
- #: admin/mscan/mscan.php:1887
8443
  msgid "Unignore<br>DB Entry"
8444
  msgstr ""
8445
 
8446
- #: admin/mscan/mscan.php:1888 admin/mscan/mscan.php:2638
8447
- #: admin/mscan/mscan.php:3420
8448
  msgid "DB Table"
8449
  msgstr ""
8450
 
8451
- #: admin/mscan/mscan.php:1889 admin/mscan/mscan.php:2639
8452
- #: admin/mscan/mscan.php:3421
8453
  msgid "DB Column"
8454
  msgstr ""
8455
 
8456
- #: admin/mscan/mscan.php:1890 admin/mscan/mscan.php:2640
8457
- #: admin/mscan/mscan.php:3422
8458
  msgid "DB Row ID"
8459
  msgstr ""
8460
 
8461
- #: admin/mscan/mscan.php:1891
8462
  msgid "Pattern<br>Match"
8463
  msgstr ""
8464
 
8465
- #: admin/mscan/mscan.php:1903 admin/mscan/mscan.php:2653
8466
  msgid "Ignored DB Entry"
8467
  msgstr ""
8468
 
8469
- #: admin/mscan/mscan.php:1908 admin/mscan/mscan.php:2658
8470
  msgid "Suspicious DB Entry"
8471
  msgstr ""
8472
 
8473
- #: admin/mscan/mscan.php:1926 admin/mscan/mscan.php:2675
8474
  msgid "No Suspicious DB Entries were detected"
8475
  msgstr ""
8476
 
8477
- #: admin/mscan/mscan.php:1941
8478
  msgid ""
8479
  "View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
8480
  "display the contents of the DB Table, Column and Row ID that you have "
@@ -8492,196 +8488,196 @@ msgid ""
8492
  "OK to proceed or click Cancel"
8493
  msgstr ""
8494
 
8495
- #: admin/mscan/mscan.php:1992
8496
  msgid "MScan Log ~ "
8497
  msgstr ""
8498
 
8499
- #: admin/mscan/mscan.php:2023
8500
  msgid "Click the Reset Last Modified Time in DB button"
8501
  msgstr ""
8502
 
8503
- #: admin/mscan/mscan.php:2023
8504
  msgid "to set the"
8505
  msgstr ""
8506
 
8507
- #: admin/mscan/mscan.php:2028 admin/mscan/mscan.php:2033
8508
  msgid "Last Modified Time in DB:"
8509
  msgstr ""
8510
 
8511
- #: admin/mscan/mscan.php:2046 admin/mscan/mscan.php:2049
8512
  msgid "MScan Log File Size: "
8513
  msgstr ""
8514
 
8515
- #: admin/mscan/mscan.php:2049
8516
  msgid ""
8517
  "The S-Monitor Email Logging options will only send log files up to 2MB in "
8518
  "size."
8519
  msgstr ""
8520
 
8521
- #: admin/mscan/mscan.php:2049
8522
  msgid ""
8523
  "Copy and paste the MScan Log file contents into a Notepad text file on your "
8524
  "computer and save it."
8525
  msgstr ""
8526
 
8527
- #: admin/mscan/mscan.php:2062
8528
  msgid "MScan Log Last Modified Time:"
8529
  msgstr ""
8530
 
8531
- #: admin/mscan/mscan.php:2064
8532
  msgid "Last Modified Time in File:"
8533
  msgstr ""
8534
 
8535
- #: admin/mscan/mscan.php:2083
8536
  msgid ""
8537
  "Success! Your MScan Log has been deleted and replaced with a new blank MScan "
8538
  "Log file."
8539
  msgstr ""
8540
 
8541
- #: admin/mscan/mscan.php:2093
8542
  msgid "Clicking OK will delete the contents of your MScan Log file."
8543
  msgstr ""
8544
 
8545
- #: admin/mscan/mscan.php:2112
8546
  msgid ""
8547
  "The MScan Log File Was Not Found! Check that the file really exists here - /"
8548
  msgstr ""
8549
 
8550
- #: admin/mscan/mscan.php:2112
8551
  msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
8552
  msgstr ""
8553
 
8554
- #: admin/mscan/mscan.php:2131
8555
  msgid "File Open and Write test successful! Your MScan Log file is writable."
8556
  msgstr ""
8557
 
8558
- #: admin/mscan/mscan.php:2143 admin/mscan/mscan.php:2147
8559
  msgid "Success! Your MScan Log file has been updated."
8560
  msgstr ""
8561
 
8562
- #: admin/mscan/mscan.php:2199
8563
  msgid "MScan Report ~ "
8564
  msgstr ""
8565
 
8566
- #: admin/mscan/mscan.php:2199
8567
  msgid ""
8568
  "Displays the current scan results data. Click the Save MScan Report button "
8569
  "to save MScan Reports."
8570
  msgstr ""
8571
 
8572
- #: admin/mscan/mscan.php:2212
8573
  msgid "Click OK to save the MScan Report or click Cancel."
8574
  msgstr ""
8575
 
8576
- #: admin/mscan/mscan.php:2233
8577
  msgid ""
8578
  "No Scan Results To Display: No scans have been run yet or you clicked the "
8579
  "MScan Reset button."
8580
  msgstr ""
8581
 
8582
- #: admin/mscan/mscan.php:2247
8583
  msgid "Scan Date|Time: "
8584
  msgstr ""
8585
 
8586
- #: admin/mscan/mscan.php:2250
8587
  msgid "Website: "
8588
  msgstr ""
8589
 
8590
- #: admin/mscan/mscan.php:2253
8591
  msgid "Scan Completion Time: "
8592
  msgstr ""
8593
 
8594
- #: admin/mscan/mscan.php:2256
8595
  msgid "Total Files Scanned: "
8596
  msgstr ""
8597
 
8598
- #: admin/mscan/mscan.php:2259
8599
  msgid "Total Skipped Files: "
8600
  msgstr ""
8601
 
8602
- #: admin/mscan/mscan.php:2268
8603
  msgid "Total Suspicious Files: "
8604
  msgstr ""
8605
 
8606
- #: admin/mscan/mscan.php:2277
8607
  msgid "Total Suspicious DB Entries: "
8608
  msgstr ""
8609
 
8610
- #: admin/mscan/mscan.php:2280 admin/mscan/mscan.php:3330
8611
  msgid "MScan Option Settings: "
8612
  msgstr ""
8613
 
8614
- #: admin/mscan/mscan.php:2294 admin/mscan/mscan.php:2297
8615
  msgid "Website Folders & Files To Scan: "
8616
  msgstr ""
8617
 
8618
- #: admin/mscan/mscan.php:2297 admin/mscan/mscan.php:2308
8619
- #: admin/mscan/mscan.php:2335
8620
  msgid "None"
8621
  msgstr ""
8622
 
8623
- #: admin/mscan/mscan.php:2305 admin/mscan/mscan.php:2308
8624
  msgid "Excluded Folders: "
8625
  msgstr ""
8626
 
8627
- #: admin/mscan/mscan.php:2312
8628
  msgid "Max File Size Limit to Scan: "
8629
  msgstr ""
8630
 
8631
- #: admin/mscan/mscan.php:2315
8632
  msgid "Max Time Limit to Scan: "
8633
  msgstr ""
8634
 
8635
- #: admin/mscan/mscan.php:2318
8636
  msgid "Scan Database: "
8637
  msgstr ""
8638
 
8639
- #: admin/mscan/mscan.php:2321
8640
  msgid "Scan Skipped Files Only: "
8641
  msgstr ""
8642
 
8643
- #: admin/mscan/mscan.php:2324
8644
  msgid "Automatically Delete /tmp Files: "
8645
  msgstr ""
8646
 
8647
- #: admin/mscan/mscan.php:2332 admin/mscan/mscan.php:2335
8648
  msgid "Exclude /tmp Files: "
8649
  msgstr ""
8650
 
8651
- #: admin/mscan/mscan.php:2353
8652
  msgid "Scheduled Scan Frequency: "
8653
  msgstr ""
8654
 
8655
- #: admin/mscan/mscan.php:2356 admin/mscan/mscan.php:3341
8656
  msgid "WP Core|Plugin|Theme File Hashes: "
8657
  msgstr ""
8658
 
8659
- #: admin/mscan/mscan.php:2366
8660
  msgid "WP Core Hash File Version: "
8661
  msgstr ""
8662
 
8663
- #: admin/mscan/mscan.php:2366
8664
  msgid "WP Installed Version: "
8665
  msgstr ""
8666
 
8667
- #: admin/mscan/mscan.php:2371 admin/mscan/mscan.php:2391
8668
- #: admin/mscan/mscan.php:2492
8669
  msgid "Error|Problem: "
8670
  msgstr ""
8671
 
8672
- #: admin/mscan/mscan.php:2371
8673
  msgid "The WP Core Hash File Does Not Exist"
8674
  msgstr ""
8675
 
8676
- #: admin/mscan/mscan.php:2385 admin/mscan/mscan.php:3344
8677
  msgid "Plugin File Hashes: "
8678
  msgstr ""
8679
 
8680
- #: admin/mscan/mscan.php:2391
8681
  msgid "The Plugin Hash File Does Not Exist"
8682
  msgstr ""
8683
 
8684
- #: admin/mscan/mscan.php:2451
8685
  msgid ""
8686
  "File hashes do not exist for this plugin. This plugin's files were not "
8687
  "scanned. If you would like to scan this plugin's files then use the \"Upload "
@@ -8690,7 +8686,7 @@ msgid ""
8690
  "\"Upload Plugin Zip Files\" help section for more help info."
8691
  msgstr ""
8692
 
8693
- #: admin/mscan/mscan.php:2453
8694
  msgid ""
8695
  "File hashes do not exist for this theme. This theme's files were not "
8696
  "scanned. If you would like to scan this themes's files then use the \"Upload "
@@ -8699,43 +8695,43 @@ msgid ""
8699
  "Theme Zip Files\" help section for more help info."
8700
  msgstr ""
8701
 
8702
- #: admin/mscan/mscan.php:2461 admin/mscan/mscan.php:2471
8703
- #: admin/mscan/mscan.php:2477
8704
  msgid " Plugin Hash File Version: "
8705
  msgstr ""
8706
 
8707
- #: admin/mscan/mscan.php:2461 admin/mscan/mscan.php:2471
8708
- #: admin/mscan/mscan.php:2477 admin/mscan/mscan.php:2514
8709
- #: admin/mscan/mscan.php:2523 admin/mscan/mscan.php:2529
8710
  msgid " Installed Version: "
8711
  msgstr ""
8712
 
8713
- #: admin/mscan/mscan.php:2477
8714
  msgid "No File Hashes for This Plugin"
8715
  msgstr ""
8716
 
8717
- #: admin/mscan/mscan.php:2486 admin/mscan/mscan.php:3352
8718
  msgid "Theme File Hashes: "
8719
  msgstr ""
8720
 
8721
- #: admin/mscan/mscan.php:2492
8722
  msgid "The Theme Hash File Does Not Exist"
8723
  msgstr ""
8724
 
8725
- #: admin/mscan/mscan.php:2514 admin/mscan/mscan.php:2523
8726
- #: admin/mscan/mscan.php:2529
8727
  msgid " Theme Hash File Version: "
8728
  msgstr ""
8729
 
8730
- #: admin/mscan/mscan.php:2529
8731
  msgid "No File Hashes for This Theme"
8732
  msgstr ""
8733
 
8734
- #: admin/mscan/mscan.php:2541 admin/mscan/mscan.php:3363
8735
  msgid "Scan Results "
8736
  msgstr ""
8737
 
8738
- #: admin/mscan/mscan.php:2544 admin/mscan/mscan.php:3366
8739
  msgid ""
8740
  "You can View, Ignore and Delete files detected as suspicious using the View|"
8741
  "Ignore|Delete Suspicious Files Form on the MScan 2.0 tab page. Before "
@@ -8743,100 +8739,100 @@ msgid ""
8743
  "hosting account."
8744
  msgstr ""
8745
 
8746
- #: admin/mscan/mscan.php:2561 admin/mscan/mscan.php:3375
8747
  msgid "File Hash or Pattern Match"
8748
  msgstr ""
8749
 
8750
- #: admin/mscan/mscan.php:2562 admin/mscan/mscan.php:2642
8751
- #: admin/mscan/mscan.php:3376 admin/mscan/mscan.php:3424
8752
  msgid "Scan Time"
8753
  msgstr ""
8754
 
8755
- #: admin/mscan/mscan.php:2624 admin/mscan/mscan.php:3410
8756
  msgid ""
8757
  "You can View, Ignore and Unignore suspicious DB Entries using the View|"
8758
  "Ignore Suspicious DB Entries Form on the MScan 2.0 tab page. Before deleting "
8759
  "any database data make a backup of your database."
8760
  msgstr ""
8761
 
8762
- #: admin/mscan/mscan.php:2641 admin/mscan/mscan.php:3423
8763
  msgid "Pattern Match"
8764
  msgstr ""
8765
 
8766
- #: admin/mscan/mscan.php:2752 admin/mscan/mscan.php:2862
8767
  msgid ""
8768
  "The MScan Report was saved successfully. Saved MScan Reports can be viewed "
8769
  "on the MScan Saved Reports tab page."
8770
  msgstr ""
8771
 
8772
- #: admin/mscan/mscan.php:2785
8773
  msgid "The MScan Report was not saved"
8774
  msgstr ""
8775
 
8776
- #: admin/mscan/mscan.php:2785
8777
  msgid ""
8778
  "The maximum number of Reports that can be saved is 20 Reports. In order to "
8779
  "save the current Report you will need to delete an older saved Report."
8780
  msgstr ""
8781
 
8782
- #: admin/mscan/mscan.php:2885
8783
  msgid "MScan Saved Reports ~ "
8784
  msgstr ""
8785
 
8786
- #: admin/mscan/mscan.php:2885
8787
  msgid "Saved reports can be viewed or deleted."
8788
  msgstr ""
8789
 
8790
- #: admin/mscan/mscan.php:2901
8791
  msgid ""
8792
  "No Saved MScan Reports To Display: No MScan Reports have been saved yet."
8793
  msgstr ""
8794
 
8795
- #: admin/mscan/mscan.php:2990
8796
  msgid "MScan Saved Reports Form"
8797
  msgstr ""
8798
 
8799
- #: admin/mscan/mscan.php:2999
8800
  msgid "Report Date"
8801
  msgstr ""
8802
 
8803
- #: admin/mscan/mscan.php:3000
8804
  msgid "View Report"
8805
  msgstr ""
8806
 
8807
- #: admin/mscan/mscan.php:3001
8808
  msgid "Delete Report"
8809
  msgstr ""
8810
 
8811
- #: admin/mscan/mscan.php:3022 admin/mscan/mscan.php:3048
8812
  msgid "View|Delete Reports"
8813
  msgstr ""
8814
 
8815
- #: admin/mscan/mscan.php:3022
8816
  msgid "Click OK to proceed or click Cancel"
8817
  msgstr ""
8818
 
8819
- #: admin/mscan/mscan.php:3067
8820
  msgid "You did not select an MScan Report to view or delete"
8821
  msgstr ""
8822
 
8823
- #: admin/mscan/mscan.php:3067
8824
  msgid ""
8825
  "Click the checkbox for the MScan Report that you would like to view or "
8826
  "delete and then click the View|Delete Reports button."
8827
  msgstr ""
8828
 
8829
- #: admin/mscan/mscan.php:3228
8830
  msgid "Report: "
8831
  msgstr ""
8832
 
8833
- #: admin/mscan/mscan.php:3228
8834
  msgid ""
8835
  " has been deleted. Refresh/reload the page to see current MScan Saved "
8836
  "Reports Form data."
8837
  msgstr ""
8838
 
8839
- #: admin/mscan/mscan.php:3236
8840
  msgid ""
8841
  "The MScan Saved Report scan data is displayed below the MScan Saved Reports "
8842
  "Form."
3
  msgstr ""
4
  "Project-Id-Version: bulletproof-security\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2021-06-07 11:57-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"
1821
  #: admin/db-backup-security/db-backup-security.php:1739
1822
  #: admin/email-log-settings/email-log-settings.php:70 admin/login/login.php:187
1823
  #: admin/maintenance/maintenance.php:171 admin/mscan/mscan.php:203
1824
+ #: admin/mscan/mscan.php:3473 admin/security-log/security-log.php:210
1825
  #: admin/system-info/system-info.php:73 admin/theme-skin/theme-skin.php:75
1826
  #: admin/theme-skin/theme-skin.php:251
1827
  msgid "Help &amp; FAQ"
1916
  #: admin/email-log-settings/email-log-settings.php:84 admin/login/login.php:210
1917
  #: admin/login/login.php:837 admin/login/login.php:1169
1918
  #: admin/login/login.php:1709 admin/maintenance/maintenance.php:202
1919
+ #: admin/mscan/mscan.php:216 admin/mscan/mscan.php:1963
1920
+ #: admin/mscan/mscan.php:2184 admin/mscan/mscan.php:2870
1921
  #: admin/security-log/security-log.php:224 admin/system-info/system-info.php:81
1922
  #: admin/theme-skin/theme-skin.php:90 admin/wizard/wizard.php:1113
1923
  #: admin/wizard/wizard.php:1182 admin/wizard/wizard.php:1694
2589
 
2590
  #: admin/core/core.php:2063
2591
  #: admin/db-backup-security/db-backup-security.php:1743
2592
+ #: admin/mscan/mscan.php:3477 admin/theme-skin/theme-skin.php:255
2593
  msgid "Whats New in "
2594
  msgstr ""
2595
 
2720
  #: admin/db-backup-security/db-backup-security.php:1747
2721
  #: admin/email-log-settings/email-log-settings.php:216
2722
  #: admin/login/login.php:1830 admin/maintenance/maintenance.php:2140
2723
+ #: admin/mscan/mscan.php:3480 admin/security-log/security-log.php:812
2724
  #: admin/system-info/system-info.php:1135 admin/theme-skin/theme-skin.php:258
2725
  msgid "Forum: Search, Troubleshooting Steps & Post Questions For Assistance"
2726
  msgstr ""
2977
 
2978
  #: admin/core/core.php:2194 admin/core/core.php:2195 admin/core/core.php:2196
2979
  #: admin/core/core.php:2197 admin/core/core.php:2198 admin/core/core.php:2199
2980
+ #: admin/core/core.php:2200 admin/core/core.php:2201 admin/core/core.php:2202
2981
  #: admin/core/core.php:2208 admin/core/core.php:2209 admin/core/core.php:2210
2982
+ #: admin/core/core.php:2211 admin/core/core.php:2212 admin/core/core.php:2213
2983
  #: admin/core/core.php:2219 admin/core/core.php:2220 admin/core/core.php:2221
2984
+ #: admin/core/core.php:2222 admin/core/core.php:2227 admin/core/core.php:2228
2985
+ #: admin/core/core.php:2229 admin/core/core.php:2230 admin/core/core.php:2231
2986
  #: admin/core/core.php:2236 admin/core/core.php:2237 admin/core/core.php:2238
2987
  #: admin/core/core.php:2239 admin/core/core.php:2240 admin/core/core.php:2241
2988
+ #: admin/core/core.php:2242 admin/core/core.php:2243 admin/core/core.php:2244
2989
  #: admin/core/core.php:2249 admin/core/core.php:2250 admin/core/core.php:2251
2990
  #: admin/core/core.php:2252 admin/core/core.php:2253 admin/core/core.php:2254
2991
  #: admin/core/core.php:2255 admin/core/core.php:2256 admin/core/core.php:2257
2992
  #: admin/core/core.php:2258 admin/core/core.php:2259 admin/core/core.php:2260
2993
+ #: admin/core/core.php:2261 admin/core/core.php:2267 admin/core/core.php:2268
2994
  #: admin/core/core.php:2269 admin/core/core.php:2270 admin/core/core.php:2271
2995
  #: admin/core/core.php:2272 admin/core/core.php:2273 admin/core/core.php:2274
2996
  #: admin/core/core.php:2275 admin/core/core.php:2276 admin/core/core.php:2277
2997
+ #: admin/core/core.php:2278 admin/core/core.php:2279 admin/core/core.php:2280
2998
  #: admin/core/core.php:2286 admin/core/core.php:2287 admin/core/core.php:2288
2999
  #: admin/core/core.php:2289 admin/core/core.php:2290 admin/core/core.php:2291
3000
  #: admin/core/core.php:2292 admin/core/core.php:2293 admin/core/core.php:2294
3001
  #: admin/core/core.php:2295 admin/core/core.php:2296 admin/core/core.php:2297
3002
+ #: admin/core/core.php:2298 admin/core/core.php:2304 admin/core/core.php:2305
3003
  #: admin/core/core.php:2306 admin/core/core.php:2307 admin/core/core.php:2308
3004
  #: admin/core/core.php:2309 admin/core/core.php:2310 admin/core/core.php:2311
3005
+ #: admin/core/core.php:2312 admin/core/core.php:2313 admin/core/core.php:2319
3006
  #: admin/core/core.php:2320 admin/core/core.php:2321 admin/core/core.php:2322
3007
  #: admin/core/core.php:2323 admin/core/core.php:2324 admin/core/core.php:2325
3008
+ #: admin/core/core.php:2326 admin/core/core.php:2327 admin/core/core.php:2328
3009
  #, php-format
3010
  msgid ""
3011
  "<a href=\"%2$s\" target=\"_blank\" title=\"Link Opens in New Browser Window"
3748
  #: admin/db-backup-security/db-backup-security.php:896
3749
  #: admin/login/login.php:580 admin/login/login.php:609
3750
  #: admin/login/login.php:681 admin/login/login.php:710
3751
+ #: admin/mscan/mscan.php:1596 admin/mscan/mscan.php:2993
3752
  msgid "Delete"
3753
  msgstr ""
3754
 
3847
  msgstr ""
3848
 
3849
  #: admin/db-backup-security/db-backup-security.php:992
3850
+ #: admin/mscan/mscan.php:896
3851
  msgid "All"
3852
  msgstr ""
3853
 
4314
  msgstr ""
4315
 
4316
  #: admin/db-backup-security/db-backup-security.php:1267
4317
+ #: admin/mscan/mscan.php:2015
4318
  msgid ""
4319
  "Then click the Delete Log button to delete the contents of this Log file."
4320
  msgstr ""
4334
  msgstr ""
4335
 
4336
  #: admin/db-backup-security/db-backup-security.php:1304
4337
+ #: admin/mscan/mscan.php:2073 admin/security-log/security-log.php:492
4338
  msgid "Click OK to Delete the Log file contents or click Cancel."
4339
  msgstr ""
4340
 
4484
  msgstr ""
4485
 
4486
  #: admin/db-backup-security/db-backup-security.php:1744
4487
+ #: admin/mscan/mscan.php:3478 admin/theme-skin/theme-skin.php:256
4488
  msgid "BPS Pro Features & Version Release Dates"
4489
  msgstr ""
4490
 
4491
  #: admin/db-backup-security/db-backup-security.php:1745
4492
+ #: admin/mscan/mscan.php:3479 admin/theme-skin/theme-skin.php:257
4493
  msgid "Video Tutorials"
4494
  msgstr ""
4495
 
4751
  msgstr ""
4752
 
4753
  #: admin/includes/admin.php:434
4754
+ msgid "MScan Scan Status"
4755
  msgstr ""
4756
 
4757
  #: admin/includes/admin.php:437 admin/includes/admin.php:445
4889
 
4890
  #: admin/login/login.php:232 admin/login/login.php:329
4891
  #: admin/login/login.php:649 admin/login/login.php:750
4892
+ #: admin/mscan/mscan.php:1404 admin/mscan/mscan.php:1626
4893
+ #: admin/mscan/mscan.php:1748 admin/mscan/mscan.php:1907
4894
  msgid "Submit"
4895
  msgstr ""
4896
 
5119
  msgstr ""
5120
 
5121
  #: admin/login/login.php:649 admin/login/login.php:750
5122
+ #: admin/mscan/mscan.php:1627 admin/mscan/mscan.php:1908
5123
  msgid "Clear|Refresh"
5124
  msgstr ""
5125
 
7465
  "will be deleted."
7466
  msgstr ""
7467
 
7468
+ #: admin/mscan/mscan-help-text.php:32 admin/mscan/mscan.php:882
7469
  msgid "Website Folders & Files To Scan"
7470
  msgstr ""
7471
 
7504
  "than 300 seconds."
7505
  msgstr ""
7506
 
7507
+ #: admin/mscan/mscan-help-text.php:38 admin/mscan/mscan.php:990
7508
  msgid "Exclude Individual Folders"
7509
  msgstr ""
7510
 
7521
  "particular cache folder under the wp-content folder."
7522
  msgstr ""
7523
 
7524
+ #: admin/mscan/mscan-help-text.php:40 admin/mscan/mscan.php:996
7525
  msgid "Scan Database"
7526
  msgstr ""
7527
 
7531
  "suspicious code."
7532
  msgstr ""
7533
 
7534
+ #: admin/mscan/mscan-help-text.php:42 admin/mscan/mscan.php:1002
7535
  msgid "Scan Skipped Files Only"
7536
  msgstr ""
7537
 
7544
  "to On."
7545
  msgstr ""
7546
 
7547
+ #: admin/mscan/mscan-help-text.php:44 admin/mscan/mscan.php:1008
7548
  msgid "Automatically Delete /tmp Files"
7549
  msgstr ""
7550
 
7554
  "commonly hide hacker files in the /tmp folder."
7555
  msgstr ""
7556
 
7557
+ #: admin/mscan/mscan-help-text.php:46 admin/mscan/mscan.php:1014
7558
  msgid "Exclude /tmp Files"
7559
  msgstr ""
7560
 
7654
  "convention: tmeme-name-child.x.x.zip."
7655
  msgstr ""
7656
 
7657
+ #: admin/mscan/mscan-help-text.php:60 admin/mscan/mscan.php:1331
7658
  msgid "View|Ignore|Delete Suspicious Files"
7659
  msgstr ""
7660
 
7669
  "ignored file it will be scanned in future scans."
7670
  msgstr ""
7671
 
7672
+ #: admin/mscan/mscan-help-text.php:62 admin/mscan/mscan.php:1678
7673
  msgid "View|Ignore Suspicious DB Entries"
7674
  msgstr ""
7675
 
7702
  msgid "MScan Logging"
7703
  msgstr ""
7704
 
7705
+ #: admin/mscan/mscan-help-text.php:69 admin/mscan/mscan.php:1958
7706
  msgid "Logs extensive details about each scan that you run."
7707
  msgstr ""
7708
 
7806
  msgid "MScan 2.0"
7807
  msgstr ""
7808
 
7809
+ #: admin/mscan/mscan.php:200 admin/mscan/mscan.php:1963
7810
+ #: admin/mscan/mscan.php:1965
7811
  msgid "MScan Log"
7812
  msgstr ""
7813
 
7814
+ #: admin/mscan/mscan.php:201 admin/mscan/mscan.php:2184
7815
+ #: admin/mscan/mscan.php:2186
7816
  msgid "MScan Report"
7817
  msgstr ""
7818
 
7819
+ #: admin/mscan/mscan.php:202 admin/mscan/mscan.php:2870
7820
+ #: admin/mscan/mscan.php:2872
7821
  msgid "MScan Saved Reports"
7822
  msgstr ""
7823
 
7841
  msgid "BPS Pro Troubleshooting Steps"
7842
  msgstr ""
7843
 
7844
+ #: admin/mscan/mscan.php:309
7845
  msgid ""
7846
  "MScan scan results and data has been deleted. Your MScan option settings "
7847
  "have not been deleted."
7848
  msgstr ""
7849
 
7850
+ #: admin/mscan/mscan.php:326
7851
  msgid ""
7852
  "MScan Plugin and Theme file hashes have been deleted. New Plugin and Theme "
7853
  "file hashes will be created the next time you run a scan. You should also "
7855
  "settings have not been deleted."
7856
  msgstr ""
7857
 
7858
+ #: admin/mscan/mscan.php:368 admin/mscan/mscan.php:388
7859
+ #: admin/mscan/mscan.php:672
7860
  msgid "Skipped file scanning is turned On. Only skipped files will be scanned."
7861
  msgstr ""
7862
 
7863
+ #: admin/mscan/mscan.php:372
7864
  msgid ""
7865
  "MScan scanning has been stopped. Note: The Stop Scan button also stops the "
7866
  "Scan Time Estimate Tool from calculating estimated scan time."
7867
  msgstr ""
7868
 
7869
+ #: admin/mscan/mscan.php:494
7870
  msgid "First Time Scan or the Delete File Hashes Tool was used"
7871
  msgstr ""
7872
 
7873
+ #: admin/mscan/mscan.php:494
7874
  msgid ""
7875
  "You will only see this message the first time you do a scan or if you use "
7876
  "the Delete Files Hashes Tool. In order to make sure all Plugin and Theme "
7878
  "scan. You can run a new scan after this scan has completed."
7879
  msgstr ""
7880
 
7881
+ #: admin/mscan/mscan.php:521
 
 
 
 
7882
  msgid "Click OK to stop scanning or click Cancel."
7883
  msgstr ""
7884
 
7885
+ #: admin/mscan/mscan.php:533
7886
  msgid ""
7887
  "Click OK to reset/delete all MScan scan results and data or click Cancel. "
7888
  "Note: MScan option settings will not be reset/deleted."
7889
  msgstr ""
7890
 
7891
+ #: admin/mscan/mscan.php:541
7892
  msgid "MScan Options & Tools"
7893
  msgstr ""
7894
 
7895
+ #: admin/mscan/mscan.php:553
7896
  msgid "Save MScan Options"
7897
  msgstr ""
7898
 
7899
+ #: admin/mscan/mscan.php:676
7900
  msgid ""
7901
  "Skipped file scanning is turned On. There are no skipped files to be "
7902
  "scanned. Either there really are not any skipped files to scan or you have "
7903
  "not run a regular scan yet with the Skipped File Scan option turned Off."
7904
  msgstr ""
7905
 
7906
+ #: admin/mscan/mscan.php:680
7907
  msgid "Warning: "
7908
  msgstr ""
7909
 
7910
+ #: admin/mscan/mscan.php:680
7911
  msgid ""
7912
  "On some web hosts (Known host issues: SiteGround, Cyon) turning On the "
7913
  "\"Automatically Delete /tmp Files\" option setting will cause your website/"
7918
  "the names of those tmp files to exclude."
7919
  msgstr ""
7920
 
7921
+ #: admin/mscan/mscan.php:684
7922
  msgid "MScan Options saved."
7923
  msgstr ""
7924
 
7925
+ #: admin/mscan/mscan.php:882
7926
  msgid "Files are not displayed, but will be scanned"
7927
  msgstr ""
7928
 
7929
+ #: admin/mscan/mscan.php:883
7930
  msgid "MScan Options"
7931
  msgstr ""
7932
 
7933
+ #: admin/mscan/mscan.php:884
7934
  msgid "MScan Tools"
7935
  msgstr ""
7936
 
7937
+ #: admin/mscan/mscan.php:897
7938
  msgid "Folder Name"
7939
  msgstr ""
7940
 
7941
+ #: admin/mscan/mscan.php:916
7942
  msgid "Folder is not readable"
7943
  msgstr ""
7944
 
7945
+ #: admin/mscan/mscan.php:947
7946
  msgid ""
7947
  "This folder contains another WordPress website. This checkbox cannot be "
7948
  "checked. To scan that site run MScan from that site. Click the MScan Read Me "
7950
  "section."
7951
  msgstr ""
7952
 
7953
+ #: admin/mscan/mscan.php:981
7954
  msgid "Max File Size Limit to Scan:"
7955
  msgstr ""
7956
 
7957
+ #: admin/mscan/mscan.php:986
7958
  msgid "Max Time Limit to Scan:"
7959
  msgstr ""
7960
 
7961
+ #: admin/mscan/mscan.php:990
7962
  msgid "Enter one folder path per line. Include folder slashes."
7963
  msgstr ""
7964
 
7965
+ #: admin/mscan/mscan.php:990 admin/mscan/mscan.php:1014
7966
  msgid "Example:"
7967
  msgstr ""
7968
 
7969
+ #: admin/mscan/mscan.php:990 admin/mscan/mscan.php:1002
7970
+ #: admin/mscan/mscan.php:1014
7971
  msgid "Click the MScan Read Me help button for more help info."
7972
  msgstr ""
7973
 
7974
+ #: admin/mscan/mscan.php:998
7975
  msgid "Database Scan On"
7976
  msgstr ""
7977
 
7978
+ #: admin/mscan/mscan.php:999
7979
  msgid "Database Scan Off"
7980
  msgstr ""
7981
 
7982
+ #: admin/mscan/mscan.php:1002
7983
  msgid ""
7984
  "When Skipped File Scan is On only skipped files will be scanned. Note: No "
7985
  "other MScan option settings have any effect while Skipped File Scan is set "
7986
  "to On."
7987
  msgstr ""
7988
 
7989
+ #: admin/mscan/mscan.php:1004
7990
  msgid "Skipped File Scan Off"
7991
  msgstr ""
7992
 
7993
+ #: admin/mscan/mscan.php:1005
7994
  msgid "Skipped File Scan On"
7995
  msgstr ""
7996
 
7997
+ #: admin/mscan/mscan.php:1010
7998
  msgid "Delete Tmp Files Off"
7999
  msgstr ""
8000
 
8001
+ #: admin/mscan/mscan.php:1011
8002
  msgid "Delete Tmp Files On"
8003
  msgstr ""
8004
 
8005
+ #: admin/mscan/mscan.php:1014
8006
  msgid "Enter one file name per line."
8007
  msgstr ""
8008
 
8009
+ #: admin/mscan/mscan.php:1020
8010
  msgid "Scheduled Scan Frequency (BPS Pro only)"
8011
  msgstr ""
8012
 
8013
+ #: admin/mscan/mscan.php:1022
8014
  msgid "Scheduled Scan Off"
8015
  msgstr ""
8016
 
8017
+ #: admin/mscan/mscan.php:1023
8018
  msgid "Run Scan Every 60 Minutes"
8019
  msgstr ""
8020
 
8021
+ #: admin/mscan/mscan.php:1024
8022
  msgid "Run Scan Every 3 Hours"
8023
  msgstr ""
8024
 
8025
+ #: admin/mscan/mscan.php:1025
8026
  msgid "Run Scan Every 6 Hours"
8027
  msgstr ""
8028
 
8029
+ #: admin/mscan/mscan.php:1026
8030
  msgid "Run Scan Every 12 Hours"
8031
  msgstr ""
8032
 
8033
+ #: admin/mscan/mscan.php:1027
8034
  msgid "Run Scan Every 24 Hours"
8035
  msgstr ""
8036
 
8037
+ #: admin/mscan/mscan.php:1030
8038
  msgid "Click OK to save MScan Options or click Cancel"
8039
  msgstr ""
8040
 
8041
+ #: admin/mscan/mscan.php:1046
8042
  msgid ""
8043
  "CAUTION: Please click the MScan Read Me help button before using this tool. "
8044
  "This tool allows you to delete the Plugin and Theme file hashes.\\n"
8049
  "OK to delete Plugin and Theme file hashes or click Cancel"
8050
  msgstr ""
8051
 
8052
+ #: admin/mscan/mscan.php:1056
8053
  msgid ""
8054
  "Clicking OK will upload Plugin Zip files to the /wp-content/bps-backup/"
8055
  "plugin-hashes/ folder. The zip files will be extracted, MD5 file hashes will "
8056
  "be created and the zip files will be deleted."
8057
  msgstr ""
8058
 
8059
+ #: admin/mscan/mscan.php:1056
8060
  msgid ""
8061
  "Zip files MUST be named using this exact format: plugin-name.x.x.zip where x "
8062
  "is the actual current version number of the plugin in the zip file."
8063
  msgstr ""
8064
 
8065
+ #: admin/mscan/mscan.php:1056
8066
  msgid "Click OK to upload Plugin Zip files or click Cancel."
8067
  msgstr ""
8068
 
8069
+ #: admin/mscan/mscan.php:1066
8070
  msgid ""
8071
  "Clicking OK will upload Theme Zip files to the /wp-content/bps-backup/theme-"
8072
  "hashes/ folder. The zip files will be extracted, MD5 file hashes will be "
8073
  "created and the zip files will be deleted."
8074
  msgstr ""
8075
 
8076
+ #: admin/mscan/mscan.php:1066
8077
  msgid ""
8078
  "Zip files MUST be named using this exact format: theme-name.x.x.zip where x "
8079
  "is the actual current version number of the theme in the zip file."
8080
  msgstr ""
8081
 
8082
+ #: admin/mscan/mscan.php:1066
8083
  msgid "Click OK to upload Theme Zip files or click Cancel."
8084
  msgstr ""
8085
 
8086
+ #: admin/mscan/mscan.php:1109
8087
  msgid "Plugin Zip File Upload Successful: "
8088
  msgstr ""
8089
 
8090
+ #: admin/mscan/mscan.php:1172 admin/mscan/mscan.php:1286
8091
  msgid "Error: Zip File Upload Failed: "
8092
  msgstr ""
8093
 
8094
+ #: admin/mscan/mscan.php:1172 admin/mscan/mscan.php:1286
8095
  msgid "Unable to move this uploaded zip file: "
8096
  msgstr ""
8097
 
8098
+ #: admin/mscan/mscan.php:1172 admin/mscan/mscan.php:1286
8099
  msgid " to this folder: "
8100
  msgstr ""
8101
 
8102
+ #: admin/mscan/mscan.php:1178 admin/mscan/mscan.php:1292
8103
  msgid "File Extension/Type or Filename Error: "
8104
  msgstr ""
8105
 
8106
+ #: admin/mscan/mscan.php:1178
8107
  msgid ""
8108
  " is either not a .zip file or the .zip file is not named correctly. Only ."
8109
  "zip files are allowed to be uploaded. Zip files MUST be named using this "
8111
  "version of the plugin in the zip file."
8112
  msgstr ""
8113
 
8114
+ #: admin/mscan/mscan.php:1184 admin/mscan/mscan.php:1298
8115
  msgid "Error: No zip file chosen: "
8116
  msgstr ""
8117
 
8118
+ #: admin/mscan/mscan.php:1184
8119
  msgid ""
8120
  "You need to choose zip files before clicking the Upload Plugin Zip Files "
8121
  "button."
8122
  msgstr ""
8123
 
8124
+ #: admin/mscan/mscan.php:1223
8125
  msgid "Theme Zip File Upload Successful: "
8126
  msgstr ""
8127
 
8128
+ #: admin/mscan/mscan.php:1292
8129
  msgid ""
8130
  " is either not a .zip file or the .zip file is not named correctly. Only ."
8131
  "zip files are allowed to be uploaded. Zip files MUST be named using this "
8133
  "version of the theme in the zip file."
8134
  msgstr ""
8135
 
8136
+ #: admin/mscan/mscan.php:1298
8137
  msgid ""
8138
  "You need to choose zip files before clicking the Upload Theme Zip Files "
8139
  "button."
8140
  msgstr ""
8141
 
8142
+ #: admin/mscan/mscan.php:1445
8143
  msgid " has been deleted."
8144
  msgstr ""
8145
 
8146
+ #: admin/mscan/mscan.php:1466
8147
  msgid ""
8148
  " Current Status has been changed to Ignored File and this file will not be "
8149
  "scanned in any future MScan Scans."
8150
  msgstr ""
8151
 
8152
+ #: admin/mscan/mscan.php:1487
8153
  msgid ""
8154
  " Ignored File Status has been removed. The previous Status of the file will "
8155
  "be displayed again and this file will be scanned in future MScan scans."
8156
  msgstr ""
8157
 
8158
+ #: admin/mscan/mscan.php:1509 admin/mscan/mscan.php:1518
8159
  msgid "Close File"
8160
  msgstr ""
8161
 
8162
+ #: admin/mscan/mscan.php:1509 admin/mscan/mscan.php:1518
8163
+ #: admin/mscan/mscan.php:1825
8164
  msgid "MScan Pattern Match"
8165
  msgstr ""
8166
 
8167
+ #: admin/mscan/mscan.php:1509
8168
  msgid ""
8169
  "Only the MScan Pattern Match is displayed for images instead of the image "
8170
  "file code."
8171
  msgstr ""
8172
 
8173
+ #: admin/mscan/mscan.php:1509
8174
  msgid ""
8175
  "Opening image files to view image file code does not work well in a Browser."
8176
  msgstr ""
8177
 
8178
+ #: admin/mscan/mscan.php:1509
8179
  msgid ""
8180
  "You can download suspicious image files and use a code editor like Notepad++ "
8181
  "to check image file code for any malicious code."
8182
  msgstr ""
8183
 
8184
+ #: admin/mscan/mscan.php:1509 admin/mscan/mscan.php:1518
8185
+ #: admin/mscan/mscan.php:1825
8186
  msgid ""
8187
  "If you are not sure what to check for or what is and is not malicious code "
8188
  "then click the MScan Read Me help button."
8189
  msgstr ""
8190
 
8191
+ #: admin/mscan/mscan.php:1518
8192
  msgid ""
8193
  "You can use your Browser's Search or Find feature to search the file "
8194
  "contents/code displayed below using the MScan Pattern Match above for the "
8195
  "suspicious code that was detected by MScan."
8196
  msgstr ""
8197
 
8198
+ #: admin/mscan/mscan.php:1518
8199
  msgid ""
8200
  "You can download suspicious files if you would like to check the file "
8201
  "contents/code more extensively with a code editor like Notepad++."
8202
  msgstr ""
8203
 
8204
+ #: admin/mscan/mscan.php:1533 admin/mscan/mscan.php:2524
8205
+ #: admin/mscan/mscan.php:3346
8206
  msgid ""
8207
  "File hash comparison scan results are 100% accurate. WP Core, Plugin and "
8208
  "Theme files are scanned using file hash comparison scanning."
8209
  msgstr ""
8210
 
8211
+ #: admin/mscan/mscan.php:1533 admin/mscan/mscan.php:2524
8212
+ #: admin/mscan/mscan.php:3346
8213
  msgid ""
8214
  "Pattern matching scan results are less accurate and will usually detect some "
8215
  "false positive matches. All other files that are not WP Core, Plugin and "
8216
  "Theme files are scanned using pattern matching scanning."
8217
  msgstr ""
8218
 
8219
+ #: admin/mscan/mscan.php:1533
8220
  msgid ""
8221
  "You can View, Ignore and Delete files detected as suspicious using the Form "
8222
  "below. Before deleting any files make a backup of those files on your "
8223
  "computer not on your hosting account."
8224
  msgstr ""
8225
 
8226
+ #: admin/mscan/mscan.php:1533 admin/mscan/mscan.php:2524
8227
+ #: admin/mscan/mscan.php:3346
8228
  msgid ""
8229
  "And of course check the file contents of suspicious files to see if they "
8230
  "contain hacker code or are false positive matches. Use the Ignore File "
8231
  "checkbox option to ignore false postive matches."
8232
  msgstr ""
8233
 
8234
+ #: admin/mscan/mscan.php:1533 admin/mscan/mscan.php:2524
8235
+ #: admin/mscan/mscan.php:3346
8236
  msgid ""
8237
  "When you ignore a file it will no longer be scanned in any future scans. "
8238
  "When you unignore an ignored file it will be scanned in future scans."
8239
  msgstr ""
8240
 
8241
+ #: admin/mscan/mscan.php:1549 admin/mscan/mscan.php:1850
8242
+ #: admin/mscan/mscan.php:2539 admin/mscan/mscan.php:2617
8243
+ #: admin/mscan/mscan.php:3353 admin/mscan/mscan.php:3399
8244
  msgid "Current Status"
8245
  msgstr ""
8246
 
8247
+ #: admin/mscan/mscan.php:1550
8248
  msgid "View<br>File"
8249
  msgstr ""
8250
 
8251
+ #: admin/mscan/mscan.php:1551
8252
  msgid "Ignore<br>File"
8253
  msgstr ""
8254
 
8255
+ #: admin/mscan/mscan.php:1552
8256
  msgid "Unignore<br>File"
8257
  msgstr ""
8258
 
8259
+ #: admin/mscan/mscan.php:1553
8260
  msgid "Delete<br>File"
8261
  msgstr ""
8262
 
8263
+ #: admin/mscan/mscan.php:1554 admin/mscan/mscan.php:2540
8264
+ #: admin/mscan/mscan.php:3354 admin/system-info/system-info.php:948
8265
  #: admin/system-info/system-info.php:988
8266
  msgid "File Path"
8267
  msgstr ""
8268
 
8269
+ #: admin/mscan/mscan.php:1555
8270
  msgid "File Hash or<br>Pattern Match"
8271
  msgstr ""
8272
 
8273
+ #: admin/mscan/mscan.php:1556 admin/mscan/mscan.php:1858
8274
  msgid "Scan<br>Time"
8275
  msgstr ""
8276
 
8277
+ #: admin/mscan/mscan.php:1569 admin/mscan/mscan.php:2555
8278
  msgid "Skipped File"
8279
  msgstr ""
8280
 
8281
+ #: admin/mscan/mscan.php:1569 admin/mscan/mscan.php:2555
8282
  msgid "Not Scanned"
8283
  msgstr ""
8284
 
8285
+ #: admin/mscan/mscan.php:1573 admin/mscan/mscan.php:1580
8286
+ #: admin/mscan/mscan.php:2559 admin/mscan/mscan.php:2566
8287
  msgid "Ignored File"
8288
  msgstr ""
8289
 
8290
+ #: admin/mscan/mscan.php:1585 admin/mscan/mscan.php:2571
8291
  msgid "Suspicious File"
8292
  msgstr ""
8293
 
8294
+ #: admin/mscan/mscan.php:1591 admin/mscan/mscan.php:1879
8295
+ #: admin/mscan/mscan.php:2992
8296
  msgid "View"
8297
  msgstr ""
8298
 
8299
+ #: admin/mscan/mscan.php:1592 admin/mscan/mscan.php:1880
8300
  msgid "Ignore"
8301
  msgstr ""
8302
 
8303
+ #: admin/mscan/mscan.php:1594 admin/mscan/mscan.php:1881
8304
  msgid "Unignore"
8305
  msgstr ""
8306
 
8307
+ #: admin/mscan/mscan.php:1612 admin/mscan/mscan.php:2594
8308
  msgid "No Suspicious Files were detected"
8309
  msgstr ""
8310
 
8311
+ #: admin/mscan/mscan.php:1626
8312
  msgid ""
8313
  "View File Option: Selecting the View File Checkbox Form option will display "
8314
  "the contents of the file that you have selected to view.\\n"
8328
  "OK to proceed or click Cancel"
8329
  msgstr ""
8330
 
8331
+ #: admin/mscan/mscan.php:1782
8332
  msgid "Current Status has been changed to Ignored for DB Row ID"
8333
  msgstr ""
8334
 
8335
+ #: admin/mscan/mscan.php:1782 admin/mscan/mscan.php:1801
8336
  msgid "in DB Column"
8337
  msgstr ""
8338
 
8339
+ #: admin/mscan/mscan.php:1782
8340
  msgid "This DB Entry will not be scanned in any future MScan Scans."
8341
  msgstr ""
8342
 
8343
+ #: admin/mscan/mscan.php:1801
8344
  msgid "The Ignored DB Entry Status has been removed for DB Row ID"
8345
  msgstr ""
8346
 
8347
+ #: admin/mscan/mscan.php:1801
8348
  msgid ""
8349
  "The previous Status of the DB Entry will be displayed again and this DB "
8350
  "Entry will be scanned in future MScan scans."
8351
  msgstr ""
8352
 
8353
+ #: admin/mscan/mscan.php:1820 admin/mscan/mscan.php:1825
8354
  msgid "Close"
8355
  msgstr ""
8356
 
8357
+ #: admin/mscan/mscan.php:1820
8358
  msgid "Pharma Hack DB Table and Column"
8359
  msgstr ""
8360
 
8361
+ #: admin/mscan/mscan.php:1820
8362
  msgid "Pharma Hack cleanup/removal steps"
8363
  msgstr ""
8364
 
8365
+ #: admin/mscan/mscan.php:1820
8366
  msgid "Edit your theme's header.php file and delete this code: "
8367
  msgstr ""
8368
 
8369
+ #: admin/mscan/mscan.php:1820
8370
  msgid ""
8371
  "Delete this file in your theme's root folder: nav.php. Login to your web "
8372
  "host control panel, login to your WP Database using phpMyAdmin and delete "
8375
  "any that you do see."
8376
  msgstr ""
8377
 
8378
+ #: admin/mscan/mscan.php:1825
8379
  msgid "DB Table, Column and Row ID"
8380
  msgstr ""
8381
 
8382
+ #: admin/mscan/mscan.php:1825
8383
  msgid "Steps to view the database data that MScan detected as suspicious"
8384
  msgstr ""
8385
 
8386
+ #: admin/mscan/mscan.php:1825
8387
  msgid ""
8388
  "Login to your web host control panel, login to your WP Database using "
8389
  "phpMyAdmin and check the data in the DB Table, Column and Row ID shown "
8390
  "above. Note: Look for code that matches the MScan Pattern Match."
8391
  msgstr ""
8392
 
8393
+ #: admin/mscan/mscan.php:1836 admin/mscan/mscan.php:2604
8394
+ #: admin/mscan/mscan.php:3390
8395
  msgid "Database scanning uses pattern matching scanning."
8396
  msgstr ""
8397
 
8398
+ #: admin/mscan/mscan.php:1836 admin/mscan/mscan.php:2604
8399
+ #: admin/mscan/mscan.php:3390
8400
  msgid ""
8401
  "Pattern matching scan results will usually detect some false positive "
8402
  "matches."
8403
  msgstr ""
8404
 
8405
+ #: admin/mscan/mscan.php:1836
8406
  msgid ""
8407
  "This form allows you to view, ignore or unignore suspicious DB Entries. "
8408
  "Note: The view option displays the DB Table, Column, Row ID and the MScan "
8409
  "Pattern Match that was detected by the MScan scan."
8410
  msgstr ""
8411
 
8412
+ #: admin/mscan/mscan.php:1836
8413
  msgid "Before deleting any database data make a backup of your database."
8414
  msgstr ""
8415
 
8416
+ #: admin/mscan/mscan.php:1836 admin/mscan/mscan.php:2604
8417
+ #: admin/mscan/mscan.php:3390
8418
  msgid ""
8419
  "Use phpMyAdmin or a similar tool to check your database Row where the "
8420
  "suspicious code was found."
8421
  msgstr ""
8422
 
8423
+ #: admin/mscan/mscan.php:1836 admin/mscan/mscan.php:2604
8424
+ #: admin/mscan/mscan.php:3390
8425
  msgid ""
8426
  "When you ignore a DB Entry it will no longer be scanned in any future scans. "
8427
  "When you unignore an ignored DB Entry it will be scanned in future scans."
8428
  msgstr ""
8429
 
8430
+ #: admin/mscan/mscan.php:1851
8431
  msgid "View<br>DB Entry"
8432
  msgstr ""
8433
 
8434
+ #: admin/mscan/mscan.php:1852
8435
  msgid "Ignore<br>DB Entry"
8436
  msgstr ""
8437
 
8438
+ #: admin/mscan/mscan.php:1853
8439
  msgid "Unignore<br>DB Entry"
8440
  msgstr ""
8441
 
8442
+ #: admin/mscan/mscan.php:1854 admin/mscan/mscan.php:2618
8443
+ #: admin/mscan/mscan.php:3400
8444
  msgid "DB Table"
8445
  msgstr ""
8446
 
8447
+ #: admin/mscan/mscan.php:1855 admin/mscan/mscan.php:2619
8448
+ #: admin/mscan/mscan.php:3401
8449
  msgid "DB Column"
8450
  msgstr ""
8451
 
8452
+ #: admin/mscan/mscan.php:1856 admin/mscan/mscan.php:2620
8453
+ #: admin/mscan/mscan.php:3402
8454
  msgid "DB Row ID"
8455
  msgstr ""
8456
 
8457
+ #: admin/mscan/mscan.php:1857
8458
  msgid "Pattern<br>Match"
8459
  msgstr ""
8460
 
8461
+ #: admin/mscan/mscan.php:1869 admin/mscan/mscan.php:2633
8462
  msgid "Ignored DB Entry"
8463
  msgstr ""
8464
 
8465
+ #: admin/mscan/mscan.php:1874 admin/mscan/mscan.php:2638
8466
  msgid "Suspicious DB Entry"
8467
  msgstr ""
8468
 
8469
+ #: admin/mscan/mscan.php:1892 admin/mscan/mscan.php:2655
8470
  msgid "No Suspicious DB Entries were detected"
8471
  msgstr ""
8472
 
8473
+ #: admin/mscan/mscan.php:1907
8474
  msgid ""
8475
  "View DB Entry Option: Selecting the View DB Entry Checkbox Form option will "
8476
  "display the contents of the DB Table, Column and Row ID that you have "
8488
  "OK to proceed or click Cancel"
8489
  msgstr ""
8490
 
8491
+ #: admin/mscan/mscan.php:1958
8492
  msgid "MScan Log ~ "
8493
  msgstr ""
8494
 
8495
+ #: admin/mscan/mscan.php:1989
8496
  msgid "Click the Reset Last Modified Time in DB button"
8497
  msgstr ""
8498
 
8499
+ #: admin/mscan/mscan.php:1989
8500
  msgid "to set the"
8501
  msgstr ""
8502
 
8503
+ #: admin/mscan/mscan.php:1994 admin/mscan/mscan.php:1999
8504
  msgid "Last Modified Time in DB:"
8505
  msgstr ""
8506
 
8507
+ #: admin/mscan/mscan.php:2012 admin/mscan/mscan.php:2015
8508
  msgid "MScan Log File Size: "
8509
  msgstr ""
8510
 
8511
+ #: admin/mscan/mscan.php:2015
8512
  msgid ""
8513
  "The S-Monitor Email Logging options will only send log files up to 2MB in "
8514
  "size."
8515
  msgstr ""
8516
 
8517
+ #: admin/mscan/mscan.php:2015
8518
  msgid ""
8519
  "Copy and paste the MScan Log file contents into a Notepad text file on your "
8520
  "computer and save it."
8521
  msgstr ""
8522
 
8523
+ #: admin/mscan/mscan.php:2028
8524
  msgid "MScan Log Last Modified Time:"
8525
  msgstr ""
8526
 
8527
+ #: admin/mscan/mscan.php:2030
8528
  msgid "Last Modified Time in File:"
8529
  msgstr ""
8530
 
8531
+ #: admin/mscan/mscan.php:2063
8532
  msgid ""
8533
  "Success! Your MScan Log has been deleted and replaced with a new blank MScan "
8534
  "Log file."
8535
  msgstr ""
8536
 
8537
+ #: admin/mscan/mscan.php:2073
8538
  msgid "Clicking OK will delete the contents of your MScan Log file."
8539
  msgstr ""
8540
 
8541
+ #: admin/mscan/mscan.php:2092
8542
  msgid ""
8543
  "The MScan Log File Was Not Found! Check that the file really exists here - /"
8544
  msgstr ""
8545
 
8546
+ #: admin/mscan/mscan.php:2092
8547
  msgid "/bps-backup/logs/mscan_log.txt and is named correctly."
8548
  msgstr ""
8549
 
8550
+ #: admin/mscan/mscan.php:2111
8551
  msgid "File Open and Write test successful! Your MScan Log file is writable."
8552
  msgstr ""
8553
 
8554
+ #: admin/mscan/mscan.php:2123 admin/mscan/mscan.php:2127
8555
  msgid "Success! Your MScan Log file has been updated."
8556
  msgstr ""
8557
 
8558
+ #: admin/mscan/mscan.php:2179
8559
  msgid "MScan Report ~ "
8560
  msgstr ""
8561
 
8562
+ #: admin/mscan/mscan.php:2179
8563
  msgid ""
8564
  "Displays the current scan results data. Click the Save MScan Report button "
8565
  "to save MScan Reports."
8566
  msgstr ""
8567
 
8568
+ #: admin/mscan/mscan.php:2192
8569
  msgid "Click OK to save the MScan Report or click Cancel."
8570
  msgstr ""
8571
 
8572
+ #: admin/mscan/mscan.php:2213
8573
  msgid ""
8574
  "No Scan Results To Display: No scans have been run yet or you clicked the "
8575
  "MScan Reset button."
8576
  msgstr ""
8577
 
8578
+ #: admin/mscan/mscan.php:2227
8579
  msgid "Scan Date|Time: "
8580
  msgstr ""
8581
 
8582
+ #: admin/mscan/mscan.php:2230
8583
  msgid "Website: "
8584
  msgstr ""
8585
 
8586
+ #: admin/mscan/mscan.php:2233
8587
  msgid "Scan Completion Time: "
8588
  msgstr ""
8589
 
8590
+ #: admin/mscan/mscan.php:2236
8591
  msgid "Total Files Scanned: "
8592
  msgstr ""
8593
 
8594
+ #: admin/mscan/mscan.php:2239
8595
  msgid "Total Skipped Files: "
8596
  msgstr ""
8597
 
8598
+ #: admin/mscan/mscan.php:2248
8599
  msgid "Total Suspicious Files: "
8600
  msgstr ""
8601
 
8602
+ #: admin/mscan/mscan.php:2257
8603
  msgid "Total Suspicious DB Entries: "
8604
  msgstr ""
8605
 
8606
+ #: admin/mscan/mscan.php:2260 admin/mscan/mscan.php:3310
8607
  msgid "MScan Option Settings: "
8608
  msgstr ""
8609
 
8610
+ #: admin/mscan/mscan.php:2274 admin/mscan/mscan.php:2277
8611
  msgid "Website Folders & Files To Scan: "
8612
  msgstr ""
8613
 
8614
+ #: admin/mscan/mscan.php:2277 admin/mscan/mscan.php:2288
8615
+ #: admin/mscan/mscan.php:2315
8616
  msgid "None"
8617
  msgstr ""
8618
 
8619
+ #: admin/mscan/mscan.php:2285 admin/mscan/mscan.php:2288
8620
  msgid "Excluded Folders: "
8621
  msgstr ""
8622
 
8623
+ #: admin/mscan/mscan.php:2292
8624
  msgid "Max File Size Limit to Scan: "
8625
  msgstr ""
8626
 
8627
+ #: admin/mscan/mscan.php:2295
8628
  msgid "Max Time Limit to Scan: "
8629
  msgstr ""
8630
 
8631
+ #: admin/mscan/mscan.php:2298
8632
  msgid "Scan Database: "
8633
  msgstr ""
8634
 
8635
+ #: admin/mscan/mscan.php:2301
8636
  msgid "Scan Skipped Files Only: "
8637
  msgstr ""
8638
 
8639
+ #: admin/mscan/mscan.php:2304
8640
  msgid "Automatically Delete /tmp Files: "
8641
  msgstr ""
8642
 
8643
+ #: admin/mscan/mscan.php:2312 admin/mscan/mscan.php:2315
8644
  msgid "Exclude /tmp Files: "
8645
  msgstr ""
8646
 
8647
+ #: admin/mscan/mscan.php:2333
8648
  msgid "Scheduled Scan Frequency: "
8649
  msgstr ""
8650
 
8651
+ #: admin/mscan/mscan.php:2336 admin/mscan/mscan.php:3321
8652
  msgid "WP Core|Plugin|Theme File Hashes: "
8653
  msgstr ""
8654
 
8655
+ #: admin/mscan/mscan.php:2346
8656
  msgid "WP Core Hash File Version: "
8657
  msgstr ""
8658
 
8659
+ #: admin/mscan/mscan.php:2346
8660
  msgid "WP Installed Version: "
8661
  msgstr ""
8662
 
8663
+ #: admin/mscan/mscan.php:2351 admin/mscan/mscan.php:2371
8664
+ #: admin/mscan/mscan.php:2472
8665
  msgid "Error|Problem: "
8666
  msgstr ""
8667
 
8668
+ #: admin/mscan/mscan.php:2351
8669
  msgid "The WP Core Hash File Does Not Exist"
8670
  msgstr ""
8671
 
8672
+ #: admin/mscan/mscan.php:2365 admin/mscan/mscan.php:3324
8673
  msgid "Plugin File Hashes: "
8674
  msgstr ""
8675
 
8676
+ #: admin/mscan/mscan.php:2371
8677
  msgid "The Plugin Hash File Does Not Exist"
8678
  msgstr ""
8679
 
8680
+ #: admin/mscan/mscan.php:2431
8681
  msgid ""
8682
  "File hashes do not exist for this plugin. This plugin's files were not "
8683
  "scanned. If you would like to scan this plugin's files then use the \"Upload "
8686
  "\"Upload Plugin Zip Files\" help section for more help info."
8687
  msgstr ""
8688
 
8689
+ #: admin/mscan/mscan.php:2433
8690
  msgid ""
8691
  "File hashes do not exist for this theme. This theme's files were not "
8692
  "scanned. If you would like to scan this themes's files then use the \"Upload "
8695
  "Theme Zip Files\" help section for more help info."
8696
  msgstr ""
8697
 
8698
+ #: admin/mscan/mscan.php:2441 admin/mscan/mscan.php:2451
8699
+ #: admin/mscan/mscan.php:2457
8700
  msgid " Plugin Hash File Version: "
8701
  msgstr ""
8702
 
8703
+ #: admin/mscan/mscan.php:2441 admin/mscan/mscan.php:2451
8704
+ #: admin/mscan/mscan.php:2457 admin/mscan/mscan.php:2494
8705
+ #: admin/mscan/mscan.php:2503 admin/mscan/mscan.php:2509
8706
  msgid " Installed Version: "
8707
  msgstr ""
8708
 
8709
+ #: admin/mscan/mscan.php:2457
8710
  msgid "No File Hashes for This Plugin"
8711
  msgstr ""
8712
 
8713
+ #: admin/mscan/mscan.php:2466 admin/mscan/mscan.php:3332
8714
  msgid "Theme File Hashes: "
8715
  msgstr ""
8716
 
8717
+ #: admin/mscan/mscan.php:2472
8718
  msgid "The Theme Hash File Does Not Exist"
8719
  msgstr ""
8720
 
8721
+ #: admin/mscan/mscan.php:2494 admin/mscan/mscan.php:2503
8722
+ #: admin/mscan/mscan.php:2509
8723
  msgid " Theme Hash File Version: "
8724
  msgstr ""
8725
 
8726
+ #: admin/mscan/mscan.php:2509
8727
  msgid "No File Hashes for This Theme"
8728
  msgstr ""
8729
 
8730
+ #: admin/mscan/mscan.php:2521 admin/mscan/mscan.php:3343
8731
  msgid "Scan Results "
8732
  msgstr ""
8733
 
8734
+ #: admin/mscan/mscan.php:2524 admin/mscan/mscan.php:3346
8735
  msgid ""
8736
  "You can View, Ignore and Delete files detected as suspicious using the View|"
8737
  "Ignore|Delete Suspicious Files Form on the MScan 2.0 tab page. Before "
8739
  "hosting account."
8740
  msgstr ""
8741
 
8742
+ #: admin/mscan/mscan.php:2541 admin/mscan/mscan.php:3355
8743
  msgid "File Hash or Pattern Match"
8744
  msgstr ""
8745
 
8746
+ #: admin/mscan/mscan.php:2542 admin/mscan/mscan.php:2622
8747
+ #: admin/mscan/mscan.php:3356 admin/mscan/mscan.php:3404
8748
  msgid "Scan Time"
8749
  msgstr ""
8750
 
8751
+ #: admin/mscan/mscan.php:2604 admin/mscan/mscan.php:3390
8752
  msgid ""
8753
  "You can View, Ignore and Unignore suspicious DB Entries using the View|"
8754
  "Ignore Suspicious DB Entries Form on the MScan 2.0 tab page. Before deleting "
8755
  "any database data make a backup of your database."
8756
  msgstr ""
8757
 
8758
+ #: admin/mscan/mscan.php:2621 admin/mscan/mscan.php:3403
8759
  msgid "Pattern Match"
8760
  msgstr ""
8761
 
8762
+ #: admin/mscan/mscan.php:2732 admin/mscan/mscan.php:2842
8763
  msgid ""
8764
  "The MScan Report was saved successfully. Saved MScan Reports can be viewed "
8765
  "on the MScan Saved Reports tab page."
8766
  msgstr ""
8767
 
8768
+ #: admin/mscan/mscan.php:2765
8769
  msgid "The MScan Report was not saved"
8770
  msgstr ""
8771
 
8772
+ #: admin/mscan/mscan.php:2765
8773
  msgid ""
8774
  "The maximum number of Reports that can be saved is 20 Reports. In order to "
8775
  "save the current Report you will need to delete an older saved Report."
8776
  msgstr ""
8777
 
8778
+ #: admin/mscan/mscan.php:2865
8779
  msgid "MScan Saved Reports ~ "
8780
  msgstr ""
8781
 
8782
+ #: admin/mscan/mscan.php:2865
8783
  msgid "Saved reports can be viewed or deleted."
8784
  msgstr ""
8785
 
8786
+ #: admin/mscan/mscan.php:2881
8787
  msgid ""
8788
  "No Saved MScan Reports To Display: No MScan Reports have been saved yet."
8789
  msgstr ""
8790
 
8791
+ #: admin/mscan/mscan.php:2970
8792
  msgid "MScan Saved Reports Form"
8793
  msgstr ""
8794
 
8795
+ #: admin/mscan/mscan.php:2979
8796
  msgid "Report Date"
8797
  msgstr ""
8798
 
8799
+ #: admin/mscan/mscan.php:2980
8800
  msgid "View Report"
8801
  msgstr ""
8802
 
8803
+ #: admin/mscan/mscan.php:2981
8804
  msgid "Delete Report"
8805
  msgstr ""
8806
 
8807
+ #: admin/mscan/mscan.php:3002 admin/mscan/mscan.php:3028
8808
  msgid "View|Delete Reports"
8809
  msgstr ""
8810
 
8811
+ #: admin/mscan/mscan.php:3002
8812
  msgid "Click OK to proceed or click Cancel"
8813
  msgstr ""
8814
 
8815
+ #: admin/mscan/mscan.php:3047
8816
  msgid "You did not select an MScan Report to view or delete"
8817
  msgstr ""
8818
 
8819
+ #: admin/mscan/mscan.php:3047
8820
  msgid ""
8821
  "Click the checkbox for the MScan Report that you would like to view or "
8822
  "delete and then click the View|Delete Reports button."
8823
  msgstr ""
8824
 
8825
+ #: admin/mscan/mscan.php:3208
8826
  msgid "Report: "
8827
  msgstr ""
8828
 
8829
+ #: admin/mscan/mscan.php:3208
8830
  msgid ""
8831
  " has been deleted. Refresh/reload the page to see current MScan Saved "
8832
  "Reports Form data."
8833
  msgstr ""
8834
 
8835
+ #: admin/mscan/mscan.php:3216
8836
  msgid ""
8837
  "The MScan Saved Report scan data is displayed below the MScan Saved Reports "
8838
  "Form."
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: AITpro
3
  Donate link: https://wordpress.org/support/view/plugin-reviews/bulletproof-security?rate=5#postform
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.7
7
- Stable tag: 4.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
3
  Donate link: https://wordpress.org/support/view/plugin-reviews/bulletproof-security?rate=5#postform
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.7.2
7
+ Stable tag: 4.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10