Make WordPress Core


Ignore:
Timestamp:
01/30/2024 03:15:17 PM (16 months ago)
Author:
jorbin
Message:

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.

Location:
branches/4.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1

  • branches/4.1/src/wp-admin/includes/class-wp-upgrader.php

    r38530 r57414  
    22932293            if ( isset( $file['error'] ) )
    22942294                wp_die( $file['error'] );
     2295
     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            }
    22952319
    22962320            $this->filename = $_FILES[$form]['name'];
Note: See TracChangeset for help on using the changeset viewer.