Changeset 980573
- Timestamp:
- 09/04/2014 09:12:09 PM (12 years ago)
- Location:
- vaultpress/trunk
- Files:
-
- 3 edited
-
class.vaultpress-hotfixes.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
vaultpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vaultpress/trunk/class.vaultpress-hotfixes.php
r941846 r980573 89 89 // Protect The MailPoet plugin (wysija-newsletters) from remote file upload. Affects versions <= 2.6.6 90 90 add_action( 'admin_init', array( $this , 'protect_wysija_newsletters_verify_capability' ), 1 ); 91 92 // Protect the Revolution Slider plugin (revslider) from local file inclusion. Affects versions < 4.2 93 add_action( 'init', array( $this , 'protect_revslider_lfi' ), 1 ); 91 94 } 92 95 … … 617 620 } 618 621 } 622 623 // Protect the Revolution Slider plugin (revslider) from local file inclusion. Affects versions < 4.2 624 function protect_revslider_lfi() { 625 if ( isset( $_GET['action'] ) && 'revslider_show_image' == $_GET['action'] ) { 626 $img = ''; 627 if ( isset( $_GET['img'] ) ) 628 $img = $_GET['img']; 629 if ( is_numeric( $img ) ) 630 return; 631 $validate = validate_file( $img ); 632 if ( 0 !== $validate ) 633 die( 'invalid file' ); 634 if ( !file_exists( $img ) ) 635 die( 'file does not exist' ); 636 } 637 } 619 638 } 620 639 -
vaultpress/trunk/readme.txt
r978194 r980573 4 4 Requires at least: 2.9.2 5 5 Tested up to: 4.0 6 Stable tag: 1.6. 46 Stable tag: 1.6.5 7 7 License: GPLv2 8 8 … … 52 52 53 53 == Changelog == 54 = 1.6.5 = 55 * Security: Add a new security hotfix. 56 54 57 = 1.6.4 = 55 58 * Bumping the "Tested up to" tag to 4.0 -
vaultpress/trunk/vaultpress.php
r978194 r980573 4 4 * Plugin URI: http://vaultpress.com/?utm_source=plugin-uri&utm_medium=plugin-description&utm_campaign=1.0 5 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.6. 46 * Version: 1.6.5 7 7 * Author: Automattic 8 8 * Author URI: http://vaultpress.com/?utm_source=author-uri&utm_medium=plugin-description&utm_campaign=1.0 … … 19 19 var $option_name = 'vaultpress'; 20 20 var $db_version = 3; 21 var $plugin_version = '1.6. 4';21 var $plugin_version = '1.6.5'; 22 22 23 23 function __construct() {
Note: See TracChangeset
for help on using the changeset viewer.