Changeset 3273163
- Timestamp:
- 04/15/2025 08:37:08 AM (11 months ago)
- Location:
- webtexttool/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/partials/social/wtt-social-image-settings.php (modified) (1 diff)
-
core/class-webtexttool-social.php (modified) (1 diff)
-
webtexttool.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
webtexttool/trunk/README.txt
r3246258 r3273163 4 4 Requires at least: 3.5 or higher 5 5 Tested up to: 6.7 6 Stable tag: 3.6. 26 Stable tag: 3.6.3 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 84 84 85 85 == Changelog == 86 87 = 3.6.3 = 88 89 Release Date: April 15th, 2025 90 91 * Fix: Properly escaped Open Graph image URL input field to prevent potential XSS vulnerabilities. Credits to @nblirwn 86 92 87 93 = 3.6.2 = -
webtexttool/trunk/admin/partials/social/wtt-social-image-settings.php
r1608237 r3273163 1 1 <div id="social-image-settings"> 2 2 <label class="select" for="opengraph_image">Use default image:</label> 3 <input type="text" id="opengraph_image" name="wtt_social[opengraph_image]" value="<?php echo (($wtt_social['opengraph_image']) <> '') ? $wtt_social['opengraph_image']: '' ?>">3 <input type="text" id="opengraph_image" name="wtt_social[opengraph_image]" value="<?php echo (($wtt_social['opengraph_image']) <> '') ? esc_attr($wtt_social['opengraph_image']) : '' ?>"> 4 4 <input id="wtt_opengraph-image_button" class="wtt_image_upload_button button" 5 5 type="button" value="Upload image"> -
webtexttool/trunk/core/class-webtexttool-social.php
r3043558 r3273163 1033 1033 if (!$imageIsDone) { 1034 1034 if (!empty($wtt_social['og_image_use_default']) && $wtt_social['og_image_use_default'] == "on") { 1035 $openGraphImage = $wtt_social['opengraph_image'];1035 $openGraphImage = htmlspecialchars($wtt_social['opengraph_image'],ENT_QUOTES,'UTF-8' ); 1036 1036 } else { 1037 1037 $openGraphImage = ''; -
webtexttool/trunk/webtexttool.php
r3246258 r3273163 7 7 * Plugin URI: https://www.textmetrics.com 8 8 * Description: Textmetrics is the easiest way to create SEO proof content to rank higher and get more traffic. Realtime optimization, keyword research and more. 9 * Version: 3.6. 29 * Version: 3.6.3 10 10 * Author: Textmetrics 11 11 * Author URI: https://www.textmetrics.com … … 16 16 */ 17 17 18 define('WTT_VERSION', '3.6. 2');18 define('WTT_VERSION', '3.6.3'); 19 19 define('WTT_SHORT_URL', "api.textmetrics.com"); 20 20 define('WTT_BASE_API_URL', 'https://api.textmetrics.com/');
Note: See TracChangeset
for help on using the changeset viewer.