Plugin Directory

Changeset 3405694


Ignore:
Timestamp:
11/29/2025 09:00:53 AM (3 months ago)
Author:
smackcoders
Message:

Version 2.20 - Security fix update

Location:
wp-ultimate-exporter
Files:
30 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-ultimate-exporter/trunk/Readme.txt

    r3397789 r3405694  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 2.19
    9 Version: 2.19
     8Stable tag: 2.20
     9Version: 2.20
    1010Author URI: https://www.smackcoders.com/wp-ultimate-csv-importer-pro.html
    1111License: GPLv2 or later
     
    419419
    420420== Changelog ==
     421= 2.20 =
     422* Fixed: CSRF vulnerability in the parseData() export handler.
    421423
    422424= 2.19 =
     
    873875== Upgrade Notice ==
    874876
    875 = 2.19 =
    876 
    877 This update adds support for exporting Events Calendar data, making it easier to back up, migrate, or bulk-manage your event information. Update now to take advantage of the new export capabilities.
    878 
     877= 2.20 =
     878
     879Security Fix
  • wp-ultimate-exporter/trunk/exportExtensions/ExportExtension.php

    r3397789 r3405694  
    430430            }
    431431   
    432             // check_ajax_referer('smack-ultimate-csv-importer', 'securekey');
     432            check_ajax_referer('smack-ultimate-csv-importer', 'securekey');
     433           
    433434            if (!empty($_POST))
    434435            {
  • wp-ultimate-exporter/trunk/wp-ultimate-exporter.php

    r3397789 r3405694  
    1111 * @wordpress-plugin
    1212 * Plugin Name: WP Ultimate Exporter
    13  * Version:     2.19
     13 * Version:     2.20
    1414 * Plugin URI:  https://www.smackcoders.com/ultimate-exporter.html
    1515 * Description: Backup tool to export all your WordPress data as CSV file. eCommerce data of WooCommerce, eCommerce, Custom Post and Custom field information along with default WordPress modules.
     
    4040
    4141define('IMPORTER_VERSION', '7.33');
    42 define('EXPORTER_VERSION', '2.19');
     42define('EXPORTER_VERSION', '2.20');
    4343require_once('Plugin.php');
    4444require_once('SmackExporterInstall.php');
Note: See TracChangeset for help on using the changeset viewer.