Skip to content

Commit

Permalink
Updates fix for stored cross-site scripting from 0.90.0, now applied …
Browse files Browse the repository at this point in the history
…to all tags.

Bumps version to 0.90.2
  • Loading branch information
picandocodigo committed Dec 16, 2024
1 parent 0926387 commit 9dae245
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
7 changes: 0 additions & 7 deletions include/lcp-catlistdisplayer.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,6 @@ private function content_getter($type, $post, $tag = null, $css_class = null) {
$info = $this->catlist->get_content($post);
break;
case 'excerpt':
# Security vulnerability fix for Stored Cross-Site Scripting
# If a post has this excerpt: alert(/XSS/)
# Another post could use [catlist excerpt_tag='script' excerpt=yes]
# and the XSS would be triggered.
if ( $tag == 'script' ) {
$tag = null;
}
$info = $this->catlist->get_excerpt($post);
if ( ! empty( $info ) ) {
$info = preg_replace('/\[.*\]/', '', $info);
Expand Down
10 changes: 9 additions & 1 deletion include/lcp-wrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ public static function get_instance(){
* @return string
*/
private function assign_style($info, $tag = null, $css_class = null){
# Security vulnerability fix for Stored Cross-Site Scripting
# If a field stores some malicious JavaScript, it could be displayed with the 'script' tag, so
# that tag needs to be excluded.
# e.g. If a post has this excerpt: alert(/XSS/) another post could use:
# [catlist excerpt_tag='script' excerpt=yes]
# and the XSS would be triggered.
if ( $tag == 'script' ) {
$tag = null;
}
if (!empty($info)):
if (empty($tag) && !empty($css_class)):
$tag = "span";
Expand All @@ -53,7 +62,6 @@ private function assign_style($info, $tag = null, $css_class = null){
* @return string
*/
public function wrap($info, $tag=null, $css_class=null) {

$wrapped = '';

if (is_array($info)) {
Expand Down
2 changes: 1 addition & 1 deletion list-category-posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: List category posts
Plugin URI: https://github.com/picandocodigo/List-Category-Posts
Description: List Category Posts allows you to list posts by category in a post/page using the [catlist] shortcode. This shortcode accepts a category name or id, the order in which you want the posts to display, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
Version: 0.90.1
Version: 0.90.2
Author: Fernando Briano
Author URI: http://fernandobriano.com
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ Template system has changed. Custom templates should be stored in WordPress them

== Changelog ==

= 0.90.2 =

* Updates fix for stored cross-site scripting from 0.90.0, now applied to all tags. From this version onwards, script is not available to use as a tag when setting an element's tag in the shortcode.

= 0.90.1 =

* Fix PHP 8.2 deprecation notices
Expand Down

0 comments on commit 9dae245

Please sign in to comment.