Changeset 3288680
- Timestamp:
- 05/06/2025 08:16:49 PM (11 months ago)
- Location:
- wise-chat/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
src/services/WiseChatAttachmentsService.php (modified) (1 diff)
-
src/services/WiseChatImagesService.php (modified) (1 diff)
-
wise-chat-core.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wise-chat/trunk/readme.txt
r3268074 r3288680 6 6 Requires PHP: 5.2.0 7 7 Tested up to: 6.7.1 8 Stable tag: 3.3. 38 Stable tag: 3.3.4 9 9 License: LGPLv2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 406 406 == Changelog == 407 407 408 = 3.3.4 = 409 * Security: prevent listing directories with uploaded images or attachments (improvement) 410 408 411 = 3.3.3 = 409 412 * Security: prevent listing directories with uploaded images or attachments -
wise-chat/trunk/src/services/WiseChatAttachmentsService.php
r3268074 r3288680 362 362 file_put_contents($htaccessPath, 'Options All -Indexes'); 363 363 } 364 $indexPath = rtrim($directory, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'index.php'; 365 if (!file_exists($indexPath)) { 366 file_put_contents($indexPath, '<'.'?'.'php // Silence is golden. '); 367 } 364 368 } 365 369 -
wise-chat/trunk/src/services/WiseChatImagesService.php
r3268074 r3288680 404 404 file_put_contents($htaccessPath, 'Options All -Indexes'); 405 405 } 406 $indexPath = rtrim($directory, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'index.php'; 407 if (!file_exists($indexPath)) { 408 file_put_contents($indexPath, '<'.'?'.'php // Silence is golden. '); 409 } 406 410 } 407 411 -
wise-chat/trunk/wise-chat-core.php
r3268074 r3288680 2 2 /* 3 3 Plugin Name: Wise Chat 4 Version: 3.3. 34 Version: 3.3.4 5 5 Plugin URI: https://kainex.pl/projects/wp-plugins/wise-chat 6 6 Description: Fully-featured chat plugin for WordPress. Supports multiple channels, private messages, multisite installation, bad words filtering, themes, appearance settings, avatars, filters, bans and more. … … 10 10 */ 11 11 12 define('WISE_CHAT_VERSION', '3.3. 3');12 define('WISE_CHAT_VERSION', '3.3.4'); 13 13 define('WISE_CHAT_ROOT', plugin_dir_path(__FILE__)); 14 14 define('WISE_CHAT_NAME', 'Wise Chat');
Note: See TracChangeset
for help on using the changeset viewer.