xss ?
-
hello,
After reading this :
https://make.www.ads-software.com/plugins/2015/04/20/fixing-add_query_arg-and-remove_query_arg-usage/do the files
./plugins/jw-player-plugin-for-wordpress/jwp6/jwp6-playlist-manager.php
and
./plugins/jw-player-plugin-for-wordpress/media/JWPlaylistManager.php
contains an XSS ?the code is
$page_links = paginate_links( array(
‘base’ => add_query_arg( ‘paged’, ‘%#%’ ),
‘format’ => ”,
‘prev_text’ => __(‘«’),
‘next_text’ => __(‘»’),
‘total’ => $total,
‘current’ => $paged,
‘add_args’ => array(‘playlist’ => $current_playlist, ‘orderby’ => $order_by, ‘order’ => $order)
));
and
<?php if ($page_links) { ?>
<div class=”tablenav”>
<div class=’tablenav-pages’>
<span style=”font-size: 13px;”><?php _e(“Available Media:”); ?></span>
<?php echo $page_links; ?>
</div>
</div>
<?php }?>page_links is not escaped
https://www.ads-software.com/plugins/jw-player-plugin-for-wordpress/
- The topic ‘xss ?’ is closed to new replies.