git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8680
7612ce4b-ef26-0410-bec9-
ea0150e637f0
- Max upload file size now correctly handles a '-1' value, meaning
unlimited. (#1094569).
- Security: Added hook for Preferences Backend to resolve potential
- file inclusions. [CAN-2005-0075]
+ file inclusions. [CAN-2005-0075]
- Remove Printer Friendly Clean Display config option, the cleaning
is now always done.
- Create new Options section "Compose Preferences" and move some
options from Display Preferences there; also move some around within
Display Preferences.
+ - Security: Fix possible file/offsite inclusion in src/webmail.php.
+ [CAN-2005-0075]
Version 1.5.0
--------------------
* This was done to create a pure HTML way of refreshing the folder list since
* we would like to use as little Javascript as possible.
*/
-if (!isset($right_frame)) {
+
+if (empty($right_frame) || (strpos(urldecode($right_frame), '://'))) {
$right_frame = '';
}
+
if ($right_frame == 'right_main.php') {
$urlMailbox = urlencode($mailbox);
$right_frame_url =
echo $output;
?>
</frameset>
-</html>
\ No newline at end of file
+</html>