Plugin Directory

Changeset 3082081

Timestamp:
05/06/2024 06:21:37 PM (3 months ago)
Author:
RavanH
Message:

fix unauthenticated file inclusion

Location:
xml-sitemap-feed/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • xml-sitemap-feed/trunk/inc/functions-public.php

    r3038192 r3082081  
    6767     */
    6868
    69     $parts = explode( '-', $feed, 3 );
     69    $parts = array();
     70    foreach ( \explode( '-', $feed, 3 ) as $part ) {
     71        $parts[] = basename( $part ); // Patch unauthenticated file inclusion - CVE-2024-4441 reported by Foxyyy.
     72    }
    7073
    7174    // Possible theme template file names.
  • xml-sitemap-feed/trunk/readme.txt

    r3060842 r3082081  
    66Requires PHP: 5.6
    77Tested up to: 6.4.3
    8 Stable tag: 5.4.8
     8Stable tag: 5.4.
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    296296== Upgrade Notice ==
    297297
    298 = 5.4.8 =
    299 Bugfix: Failing blog_public check.
     298= 5.4. =
     299.
    300300
    301301== Changelog ==
     302
     303
     304
     305
    302306
    303307= 5.4.8 =
  • xml-sitemap-feed/trunk/xml-sitemap.php

    r3060842 r3082081  
    44 * Plugin URI: https://status301.net/wordpress-plugins/xml-sitemap-feed/
    55 * Description: Feed the hungry spiders in compliance with the XML Sitemap and Google News protocols. Happy with the results? Please leave me a <strong><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ravanhagen%40gmail%2ecom&item_name=XML%20Sitemap%20Feed">tip</a></strong> for continued development and support. Thanks :)
    6  * Version: 5.4.8
     6 * Version: 5.4.
    77 * Text Domain: xml-sitemap-feed
    88 * Requires at least: 4.4
     
    1414 */
    1515
    16 define( 'XMLSF_VERSION', '5.4.8' );
     16define( 'XMLSF_VERSION', '5.4.' );
    1717
    1818/**
Note: See TracChangeset for help on using the changeset viewer.