Changeset 3460985
- Timestamp:
- 02/13/2026 06:31:55 PM (3 weeks ago)
- Location:
- collectchat
- Files:
-
- 11 added
- 2 edited
-
tags/2.4.9 (added)
-
tags/2.4.9/collect.php (added)
-
tags/2.4.9/deactivation-feedback (added)
-
tags/2.4.9/deactivation-feedback/css (added)
-
tags/2.4.9/deactivation-feedback/css/modal.css (added)
-
tags/2.4.9/deactivation-feedback/feedback-form.php (added)
-
tags/2.4.9/deactivation-feedback/register.php (added)
-
tags/2.4.9/meta.php (added)
-
tags/2.4.9/options.php (added)
-
tags/2.4.9/readme.txt (added)
-
tags/2.4.9/sidebar.php (added)
-
trunk/collect.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
collectchat/trunk/collect.php
r3404657 r3460985 2 2 /** 3 3 * Plugin Name: Collect.chat - Chatbot 4 * Version: 2.4. 84 * Version: 2.4.9 5 5 * Plugin URI: https://collect.chat 6 6 * Description: Chatbots are the simplest, easiest way to collect leads & data from visitors. Create free chatbot without coding using Collect.chat. Never miss an opportunity by engaging every site visitor. … … 327 327 } 328 328 329 // only users with unfiltered_html capability can save scripts 330 if (!current_user_can('unfiltered_html')) return $post_id; 331 329 332 $current_data = get_post_meta($post_id, '_inpost_head_script', true); 330 333 … … 384 387 } else { 385 388 if (current_user_can('unfiltered_html')) { 386 $arr[$i] = wp_kses($v, $allowed_html); // Script sanitization for users with the unfiltered_html capability389 $arr[$i] = wp_kses($v, $allowed_html); 387 390 } else { 388 return wp_kses_post($v); // Sanitize all content for other users391 $arr[$i] = wp_kses_post($v); 389 392 } 390 393 } -
collectchat/trunk/readme.txt
r3404657 r3460985 4 4 Requires at least: 4.5.0 5 5 Tested up to: 6.9 6 Stable tag: 2.4. 86 Stable tag: 2.4.9 7 7 License: GPLv3 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 454 454 * Bug fixes 455 455 456 = 2.4.9 = 457 * Security fix: Stored XSS vulnerability remediation 458 * Enforce server-side capability checks for script meta fields 459 456 460 = 2.4.8 = 457 461 * Support for WordPress 6.9
Note: See TracChangeset
for help on using the changeset viewer.