Plugin Directory

Changeset 3232924


Ignore:
Timestamp:
01/31/2025 09:31:37 PM (11 months ago)
Author:
Milap
Message:

Fixed XSS Vulnerability for URL field

Location:
facebook-pagelike-widget
Files:
20 added
3 edited

Legend:

Unmodified
Added
Removed
  • facebook-pagelike-widget/trunk/facebook_widget.php

    r3033718 r3232924  
    22/**
    33 * @package Widget for Social Page Feeds
    4  * @version 6.4
     4 * @version 6.4.1
    55 */
    66/*
     
    99Description: This widget adds a Simple Facebook Page Like Widget into your WordPress website sidebar within few minutes.
    1010Author: Milap Patel
    11 Version: 6.4
     11Version: 6.4.1
    1212Author URI: https://patelmilap.wordpress.com/
    1313Text Domain: facebook-pagelike-widget
  • facebook-pagelike-widget/trunk/fb_class.php

    r3033718 r3232924  
    7171       
    7272        $instance['title']                          =   strip_tags( $new_instance['title'] );
    73         $instance['fb_url']                         =   strip_tags( $new_instance['fb_url'] );
     73        $instance['fb_url']                         =   strip_tags( htmlspecialchars($new_instance['fb_url']) );
    7474        $instance['width']                          =   strip_tags( $new_instance['width'] );
    7575        $instance['height']                         =   strip_tags( $new_instance['height'] );
  • facebook-pagelike-widget/trunk/readme.txt

    r3210572 r3232924  
    55Requires at least: 3.0.1
    66Tested up to: 6.7.1
    7 Stable tag: 6.4
     7Stable tag: 6.4.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    116116== Changelog ==
    117117
     118= Version 6.4.1 =
     119* Fixed XSS Vulnerability for URL field.
     120
    118121= Version 6.4 =
    119122* Removed the Custom CSS option from widget settings, as WordPress now includes its own Custom CSS option.
Note: See TracChangeset for help on using the changeset viewer.