Skip to content

Commit

Permalink
Grouped Backports to the 4.9 branch.
Browse files Browse the repository at this point in the history
- Install: When populating options, maybe_serialize instead of always serialize.
- Uploads: Check for and verify ZIP archives.

Merges [57388] and [57389] to the 4.9 branch.

Props costdev, peterwilsoncc, azaozz, tykoted, johnbillion, desrosj, afragen, jorbin, xknown.


git-svn-id: https://develop.svn.wordpress.org/branches/4.9@57406 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
aaronjorbin committed Jan 30, 2024
1 parent 8fef283 commit 8c25ac7
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
24 changes: 24 additions & 0 deletions src/wp-admin/includes/class-file-upload-upgrader.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,30 @@ public function __construct( $form, $urlholder ) {
if ( isset( $file['error'] ) )
wp_die( $file['error'] );

if ( 'pluginzip' === $form || 'themezip' === $form ) {
$archive_is_valid = false;

/** This filter is documented in wp-admin/includes/file.php */
if ( class_exists( 'ZipArchive', false ) && apply_filters( 'unzip_file_use_ziparchive', true ) ) {
$archive = new ZipArchive();
$archive_is_valid = $archive->open( $file['file'], ZIPARCHIVE::CHECKCONS );

if ( true === $archive_is_valid ) {
$archive->close();
}
} else {
require_once ABSPATH . 'wp-admin/includes/class-pclzip.php';

$archive = new PclZip( $file['file'] );
$archive_is_valid = is_array( $archive->properties() );
}

if ( true !== $archive_is_valid ) {
wp_delete_file( $file['file'] );
wp_die( __( 'Incompatible Archive.' ) );
}
}

$this->filename = $_FILES[$form]['name'];
$this->package = $file['file'];

Expand Down
5 changes: 3 additions & 2 deletions src/wp-admin/includes/schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -552,10 +552,11 @@ function populate_options() {
else
$autoload = 'yes';

if ( is_array($value) )
$value = serialize($value);
if ( !empty($insert) )
$insert .= ', ';

$value = maybe_serialize( sanitize_option( $option, $value ) );

$insert .= $wpdb->prepare( "(%s, %s, %s)", $option, $value, $autoload );
}

Expand Down
8 changes: 8 additions & 0 deletions src/wp-admin/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@

check_admin_referer('plugin-upload');

if ( isset( $_FILES['pluginzip']['name'] ) && ! str_ends_with( strtolower( $_FILES['pluginzip']['name'] ), '.zip' ) ) {
wp_die( __( 'Only .zip archives may be uploaded.' ) );
}

$file_upload = new File_Upload_Upgrader('pluginzip', 'package');

$title = __('Upload Plugin');
Expand Down Expand Up @@ -249,6 +253,10 @@

check_admin_referer('theme-upload');

if ( isset( $_FILES['themezip']['name'] ) && ! str_ends_with( strtolower( $_FILES['themezip']['name'] ), '.zip' ) ) {
wp_die( __( 'Only .zip archives may be uploaded.' ) );
}

$file_upload = new File_Upload_Upgrader('themezip', 'package');

$title = __('Upload Theme');
Expand Down

0 comments on commit 8c25ac7

Please sign in to comment.