Plugin Directory

Changeset 3288680


Ignore:
Timestamp:
05/06/2025 08:16:49 PM (11 months ago)
Author:
marcin.lawrowski
Message:

Version 3.3.4

Location:
wise-chat/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wise-chat/trunk/readme.txt

    r3268074 r3288680  
    66Requires PHP: 5.2.0
    77Tested up to: 6.7.1
    8 Stable tag: 3.3.3
     8Stable tag: 3.3.4
    99License: LGPLv2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    406406== Changelog ==
    407407
     408= 3.3.4 =
     409* Security: prevent listing directories with uploaded images or attachments (improvement)
     410
    408411= 3.3.3 =
    409412* Security: prevent listing directories with uploaded images or attachments
  • wise-chat/trunk/src/services/WiseChatAttachmentsService.php

    r3268074 r3288680  
    362362            file_put_contents($htaccessPath, 'Options All -Indexes');
    363363        }
     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        }
    364368    }
    365369   
  • wise-chat/trunk/src/services/WiseChatImagesService.php

    r3268074 r3288680  
    404404            file_put_contents($htaccessPath, 'Options All -Indexes');
    405405        }
     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        }
    406410    }
    407411   
  • wise-chat/trunk/wise-chat-core.php

    r3268074 r3288680  
    22/*
    33    Plugin Name: Wise Chat
    4     Version: 3.3.3
     4    Version: 3.3.4
    55    Plugin URI: https://kainex.pl/projects/wp-plugins/wise-chat
    66    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.
     
    1010*/
    1111
    12 define('WISE_CHAT_VERSION', '3.3.3');
     12define('WISE_CHAT_VERSION', '3.3.4');
    1313define('WISE_CHAT_ROOT', plugin_dir_path(__FILE__));
    1414define('WISE_CHAT_NAME', 'Wise Chat');
Note: See TracChangeset for help on using the changeset viewer.