Version Description
Download this release
Release Info
Developer | briancolinger |
Plugin | VaultPress |
Version | 1.5.4 |
Comparing to | |
See all releases |
Code changes from version 1.5.3 to 1.5.4
- readme.txt +1 -1
- vaultpress.php +3 -36
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, apokalyptik, briancolinger, josephscott, shaunandrews,
|
|
3 |
Tags: security, malware, virus, backups, scanning
|
4 |
Requires at least: 2.9.2
|
5 |
Tested up to: 3.8
|
6 |
-
Stable tag: 1.5.
|
7 |
License: GPLv2
|
8 |
|
9 |
VaultPress is a subscription service offering realtime backup, automated security scanning, and support from WordPress experts.
|
3 |
Tags: security, malware, virus, backups, scanning
|
4 |
Requires at least: 2.9.2
|
5 |
Tested up to: 3.8
|
6 |
+
Stable tag: 1.5.4
|
7 |
License: GPLv2
|
8 |
|
9 |
VaultPress is a subscription service offering realtime backup, automated security scanning, and support from WordPress experts.
|
vaultpress.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VaultPress
|
4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
5 |
* Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a>
|
6 |
-
* Version: 1.5.
|
7 |
* Author: Automattic
|
8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
9 |
* License: GPL2+
|
@@ -18,7 +18,7 @@ if ( !defined( 'ABSPATH' ) )
|
|
18 |
class VaultPress {
|
19 |
var $option_name = 'vaultpress';
|
20 |
var $db_version = 3;
|
21 |
-
var $plugin_version = '1.5.
|
22 |
|
23 |
function __construct() {
|
24 |
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
@@ -555,40 +555,7 @@ class VaultPress {
|
|
555 |
|
556 |
// file name patterns to ignore
|
557 |
function get_should_ignore_files( $return_defaults = false ) {
|
558 |
-
$defaults = array(
|
559 |
-
'@.*/404\.log\.txt$@',
|
560 |
-
'@.*/\.DS_Store$@',
|
561 |
-
'@.*/debug\.log$@',
|
562 |
-
'@.*\.timthumb\.txt$@',
|
563 |
-
'@.*timthumb[A-Za-z0-9]*$@',
|
564 |
-
'@.*wp-content/contents/cache/@',
|
565 |
-
'@.*wp-content/content/cache/@',
|
566 |
-
'@.*wp-content/cache/@',
|
567 |
-
'@.*wp-content/old-cache/@',
|
568 |
-
'@.*wp-content/w3tc/@',
|
569 |
-
'@.*owa/owa-data/caches/@',
|
570 |
-
'@.*gt-cache@',
|
571 |
-
'@.*/wpclicks/tracker/cache/@',
|
572 |
-
'@/wp-content/[^/]+cache.*/@',
|
573 |
-
'@(?<!plugins)\/cache@',
|
574 |
-
'@.*amember/data/new_rewrite@',
|
575 |
-
'@.*sucuri/blocks/@',
|
576 |
-
'@.*/_sucuribackup.*@',
|
577 |
-
'@.*sess_[0-9a-zA-Z]{32,}@',
|
578 |
-
'@.*wp-content/backups.*@',
|
579 |
-
'@.*wp-content/backupwordpress@',
|
580 |
-
'@.*wp-content/backup-[0-9a-zA-Z]+@',
|
581 |
-
'@.*wp-content/[0-9a-zA-Z]+-backups@',
|
582 |
-
'@.*mwp_backups/@',
|
583 |
-
'@.*managewp/backups/@',
|
584 |
-
'@.*wp-snapshots/@',
|
585 |
-
'@.*error_log.*@',
|
586 |
-
'@.*/error-log.*@',
|
587 |
-
'@.*/error\.log$@',
|
588 |
-
'@.*/captcha/tmp.*@',
|
589 |
-
'@.*\.mt_backup_[0-9a-z:_]*$@i',
|
590 |
-
'@.*vp-uploaded-restore-.*@',
|
591 |
-
);
|
592 |
if ( $return_defaults )
|
593 |
return $defaults;
|
594 |
$ignore_names = (array) $this->get_config( '_vp_config_should_ignore_files' );
|
3 |
* Plugin Name: VaultPress
|
4 |
* Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0
|
5 |
* Description: Protect your content, themes, plugins, and settings with <strong>realtime backup</strong> and <strong>automated security scanning</strong> from <a href="http://vaultpress.com/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">VaultPress</a>. Activate, enter your registration key, and never worry again. <a href="http://vaultpress.com/help/?utm_source=wp-admin&utm_medium=plugin-description&utm_campaign=1.0" rel="nofollow">Need some help?</a>
|
6 |
+
* Version: 1.5.4
|
7 |
* Author: Automattic
|
8 |
* Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0
|
9 |
* License: GPL2+
|
18 |
class VaultPress {
|
19 |
var $option_name = 'vaultpress';
|
20 |
var $db_version = 3;
|
21 |
+
var $plugin_version = '1.5.4';
|
22 |
|
23 |
function __construct() {
|
24 |
register_activation_hook( __FILE__, array( $this, 'activate' ) );
|
555 |
|
556 |
// file name patterns to ignore
|
557 |
function get_should_ignore_files( $return_defaults = false ) {
|
558 |
+
$defaults = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
if ( $return_defaults )
|
560 |
return $defaults;
|
561 |
$ignore_names = (array) $this->get_config( '_vp_config_should_ignore_files' );
|