Plugin Directory

Changeset 3209805


Ignore:
Timestamp:
12/18/2024 11:07:29 AM (15 months ago)
Author:
visualmodo
Message:

1.5.9 -Dec 18 2024

  • Fixed - General Vulnerabilities.
Location:
borderless
Files:
210 added
3 edited

Legend:

Unmodified
Added
Removed
  • borderless/trunk/borderless.php

    r3203154 r3209805  
    55Plugin URI: https://visualmodo.com/borderless/
    66Description: One service packed with powerful tools to help you reach your purposes.
    7 Version: 1.5.8
     7Version: 1.5.9
    88Author: Visualmodo
    99Author URI: https://visualmodo.com
     
    2121/*-----------------------------------------------------------------------------------*/
    2222
    23 define( 'BORDERLESS__VERSION', '1.5.8' );
     23define( 'BORDERLESS__VERSION', '1.5.9' );
    2424define( 'BORDERLESS__DIR', plugin_dir_path( __FILE__ ) );
    2525define( 'BORDERLESS__URL', plugins_url( '/', __FILE__ ) );
  • borderless/trunk/modules/wpbakery/elements/infobox.php

    r3203154 r3209805  
    4343            'css_animation' => ''
    4444        ), $atts ) );
     45       
     46        // SECURITY: Ensure that only allowed tags are used in $title_tag
     47        $accepted_tags = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' );
     48        $title_tag = in_array( $title_tag, $accepted_tags, true ) ? $title_tag : 'h2';
     49
    4550        $output = '';
    4651
     
    151156    }
    152157}
    153 
    154158
    155159
  • borderless/trunk/readme.txt

    r3203154 r3209805  
    55Tested up to: 6.6.1
    66Requires PHP: 7.4
    7 Stable tag: 1.5.8
     7Stable tag: 1.5.9
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    8282== Changelog ==
    8383
     84= 1.5.9 -Dec 18 2024 =
     85* Fixed - General Vulnerabilities.
     86
    8487= 1.5.8 -Dec 06 2024 =
    8588* Fixed - General Vulnerabilities.
Note: See TracChangeset for help on using the changeset viewer.