Changeset 2711 for trunk


Ignore:
Timestamp:
03/21/10 16:24:06 (2 years ago)
Author:
nuxwin
Message:
  • [MERGE] Latest omega-1.0.5 changes
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/CHANGELOG

    r2705 r2711  
    22~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    33 
     42010-03-20 Laurent Declercq 
     5        - DATABASE: 
     6                * Updated database revision 
     7 
    482010-03-20 Benedikt Heintel 
    59        - CONFIGS: 
    610                * Removed wc Command 
    711        - DISTS: 
     12                * Fixed #2246: FreeBSD improvements 
    813                * Fixed #2285: [FreeBSD] Add needed packages to freebsd-packages 
    914                * Fixed #2286: [FreeBSD] Correct ispcp.conf -> Local Alias 
    1015        - LANGUAGE: 
    1116                * Fixed #2278: dutch translation for 1.05 
     17        - TOOLS: 
     18                * Fixed possible vulnerability. See:  
     19                        http://packetstormsecurity.org/1003-exploits/ispcp-rfi.txt 
    1220 
    13212010-03-19 Laurent Declercq 
     
    7280                * Fixed #2244: Undefined variable in hosting_plan_edit.php of the admin 
    7381                * Fixed: All occurred errors are now shown in Hosting Plans 
    74         - TOOLS: 
    75                 * Fixed possible vulnerability. See:  
    76                         http://packetstormsecurity.org/1003-exploits/ispcp-rfi.txt 
    7782 
    78832010-03-10 Benedikt Heintel 
  • trunk/configs/freebsd/fcgi/parts/master/php5/php.ini

    r2622 r2711  
    377377; *NOT* affected by whether Safe Mode is turned On or Off. 
    378378; http://php.net/open-basedir 
    379 open_basedir = "{WWW_DIR}/{DMN_NAME}/:{CONF_DIR}/:{MR_LOCK_FILE}:/var/run/dmesg.boot:/proc/:/bin/df:/bin/mount:{RKHUNTER_LOG}:{CHKROOTKIT_LOG}:{PEAR_DIR}:{OTHER_ROOTKIT_LOG}" 
     379open_basedir = "{WWW_DIR}/{DMN_NAME}/:{CONF_DIR}/:{MR_LOCK_FILE}:/proc/:/bin/df:/bin/:/sbin/:/usr/bin/:/usr/sbin/:/usr/local/bin/:/usr/local/sbin/:{RKHUNTER_LOG}:{CHKROOTKIT_LOG}:{PEAR_DIR}:{OTHER_ROOTKIT_LOG}" 
    380380 
    381381; This directive allows you to disable certain functions for security reasons. 
  • trunk/configs/freebsd/postfix/main.cf

    r2505 r2711  
    114114                               reject_unlisted_recipient, 
    115115                               check_policy_service inet:127.0.0.1:12525, 
    116                                check_policy_service inet:127.0.0.1:60000, 
     116                               check_policy_service inet:127.0.0.1:10023, 
    117117                               permit 
    118118 
  • trunk/database/database.sql

    r2693 r2711  
    127127('PREVENT_EXTERNAL_LOGIN_RESELLER', '1'), 
    128128('PREVENT_EXTERNAL_LOGIN_CLIENT', '1'), 
    129 ('DATABASE_REVISION', '28'), 
     129('DATABASE_REVISION', '29'), 
    130130('CRITICAL_UPDATE_REVISION', '5'); 
    131131 
  • trunk/gui/tools/filemanager/skins/mobile/admin1.template.php

    r1917 r2711  
    1 <?php require_once($net2ftp_globals["application_skinsdir"] . "/blue/admin1.template.php"); ?> 
     1<?php  
     2// ispCP Modification to avoid vulnerability  
     3// http://packetstormsecurity.org/1003-exploits/ispcp-rfi.txt 
     4// Make sure this file is included by net2ftp, not accessed directly 
     5defined("NET2FTP") or die("Direct access to this location is not allowed."); 
     6// End of Modification 
     7require_once($net2ftp_globals["application_skinsdir"] . "/blue/admin1.template.php"); ?> 
Note: See TracChangeset for help on using the changeset viewer.