Plugin Directory

Changeset 3448421


Ignore:
Timestamp:
01/28/2026 07:15:04 AM (2 months ago)
Author:
zohocrm
Message:

The security issue related to Broken Access Control has been fixed.

Location:
zoho-crm-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • zoho-crm-forms/trunk/Readme.txt

    r3445710 r3448421  
    99Stable tag: 1.8.1.6
    1010License: GPLv2 or later
    11 Version: 1.8.1.8
     11Version: 1.8.1.9
    1212License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1313
     
    3113111.8.1.7
    312312Wordpress latest version compatibility checking
    313 1.8.1.7
    314 Wordpress latest version compatibility checking
     3131.8.1.8
     314Wordpress latest version compatibility checking
     3151.8.1.9
     316The security issue related to Broken Access Control has been fixed.
     317
    315318
    316319== Upgrade notice ==
  • zoho-crm-forms/trunk/includes/crminterfunction.php

    r3185097 r3448421  
    3030
    3131    public static function zcfchooseplugin() {
    32 
     32         zcf_validate_general_nonce();
    3333        $selectedPlugin = 'crmformswpbuilder';
    3434        update_option('ZCFFormBuilderPluginActivated', $selectedPlugin);
     
    135135
    136136    public static function zcfsaveSyncValue() {
     137        zcf_validate_general_nonce();
    137138        $Sync_value = sanitize_text_field($_REQUEST['syncedvalue']);
    138139        update_option('Sync_value_on_off', $Sync_value);
     
    221222
    222223    public static function zcf_save_usersync_option() {
     224       zcf_validate_general_nonce();
    223225        $usersync_RR_value = sanitize_text_field($_REQUEST['user_rr_val']);
    224226        update_option('usersync_rr_value', $usersync_RR_value);
  • zoho-crm-forms/trunk/index.php

    r3445710 r3448421  
    44 * Plugin Name: Zoho CRM Lead Magnet
    55 * Description: Websites are one of the most important sources of leads for your business. That means your CRM system should be well integrated with your website to contextually capture each and every visitor to turn them into a lead.Introducing the Zoho CRM Lead Capture plugin for Wordpress. This lets you create webforms, embed them in your website, and automatically capture leads directly into your CRM with zero attenuation.Not only is the integration easy to set-up but it's also easy on your wallet.
    6  * Version: 1.8.1.8
     6 * Version: 1.8.1.9
    77 * ***************************************************************************************** */
    88if (!defined('ABSPATH'))
    99    exit;
    1010
    11         define( 'ZCF_VERSION', '1.8.1.8' );
     11        define( 'ZCF_VERSION', '1.8.1.9' );
    1212        define( 'ZCF_LBPLUGINFILE', __FILE__ );
    1313        define( 'ZCF_LBPLUGIN_URL', untrailingslashit( plugins_url( '', ZCF_LBPLUGINFILE ) ) );
Note: See TracChangeset for help on using the changeset viewer.