Skip to content

Commit ae414a4

Browse files
committed
Grouped Backports to the 4.1 branch.
- Install: When populating options, maybe_serialize instead of always serialize. - Uploads: Check for and verify ZIP archives. Merges [57388] and [57389] to the 4.1 branch. Props costdev, peterwilsoncc, azaozz, tykoted, johnbillion, desrosj, afragen, jorbin, xknown. git-svn-id: https://develop.svn.wordpress.org/branches/4.1@57414 602fd350-edb4-49c9-b593-d223f7449a82
1 parent a6bf3eb commit ae414a4

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

src/wp-admin/includes/class-wp-upgrader.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2293,6 +2293,30 @@ public function __construct( $form, $urlholder ) {
22932293
if ( isset( $file['error'] ) )
22942294
wp_die( $file['error'] );
22952295

2296+
if ( 'pluginzip' === $form || 'themezip' === $form ) {
2297+
$archive_is_valid = false;
2298+
2299+
/** This filter is documented in wp-admin/includes/file.php */
2300+
if ( class_exists( 'ZipArchive', false ) && apply_filters( 'unzip_file_use_ziparchive', true ) ) {
2301+
$archive = new ZipArchive();
2302+
$archive_is_valid = $archive->open( $file['file'], ZIPARCHIVE::CHECKCONS );
2303+
2304+
if ( true === $archive_is_valid ) {
2305+
$archive->close();
2306+
}
2307+
} else {
2308+
require_once ABSPATH . 'wp-admin/includes/class-pclzip.php';
2309+
2310+
$archive = new PclZip( $file['file'] );
2311+
$archive_is_valid = is_array( $archive->properties() );
2312+
}
2313+
2314+
if ( true !== $archive_is_valid ) {
2315+
wp_delete_file( $file['file'] );
2316+
wp_die( __( 'Incompatible Archive.' ) );
2317+
}
2318+
}
2319+
22962320
$this->filename = $_FILES[$form]['name'];
22972321
$this->package = $file['file'];
22982322

src/wp-admin/includes/schema.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,10 +513,11 @@ function populate_options() {
513513
else
514514
$autoload = 'yes';
515515

516-
if ( is_array($value) )
517-
$value = serialize($value);
518516
if ( !empty($insert) )
519517
$insert .= ', ';
518+
519+
$value = maybe_serialize( sanitize_option( $option, $value ) );
520+
520521
$insert .= $wpdb->prepare( "(%s, %s, %s)", $option, $value, $autoload );
521522
}
522523

src/wp-admin/update.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@
129129

130130
check_admin_referer('plugin-upload');
131131

132+
if ( isset( $_FILES['pluginzip']['name'] ) && ! str_ends_with( strtolower( $_FILES['pluginzip']['name'] ), '.zip' ) ) {
133+
wp_die( __( 'Only .zip archives may be uploaded.' ) );
134+
}
135+
132136
$file_upload = new File_Upload_Upgrader('pluginzip', 'package');
133137

134138
$title = __('Upload Plugin');
@@ -234,6 +238,10 @@
234238

235239
check_admin_referer('theme-upload');
236240

241+
if ( isset( $_FILES['themezip']['name'] ) && ! str_ends_with( strtolower( $_FILES['themezip']['name'] ), '.zip' ) ) {
242+
wp_die( __( 'Only .zip archives may be uploaded.' ) );
243+
}
244+
237245
$file_upload = new File_Upload_Upgrader('themezip', 'package');
238246

239247
wp_enqueue_script( 'customize-loader' );

0 commit comments

Comments
 (0)