Changeset 9516

Show
Ignore:
Timestamp:
04/17/10 18:07:25 (3 years ago)
Author:
p_lindheimer
Message:

Merged revisions 9515 via svnmerge from
http://svn.freepbx.org/freepbx/branches/2.3

................

r9515 | p_lindheimer | 2010-04-17 15:06:00 -0700 (Sat, 17 Apr 2010) | 30 lines


Merged revisions 9514 via svnmerge from
http://svn.freepbx.org/freepbx/branches/2.4


................

r9514 | p_lindheimer | 2010-04-17 15:04:30 -0700 (Sat, 17 Apr 2010) | 23 lines


Merged revisions 9513 via svnmerge from
http://svn.freepbx.org/freepbx/branches/2.5


................

r9513 | p_lindheimer | 2010-04-17 15:02:50 -0700 (Sat, 17 Apr 2010) | 16 lines


Merged revisions 9512 via svnmerge from
http://svn.freepbx.org/freepbx/branches/2.6


................

r9512 | p_lindheimer | 2010-04-17 14:56:50 -0700 (Sat, 17 Apr 2010) | 9 lines


Merged revisions 9510 via svnmerge from
http://svn.freepbx.org/freepbx/trunk


........

r9510 | p_lindheimer | 2010-04-17 14:46:26 -0700 (Sat, 17 Apr 2010) | 1 line


fixes obscure exploit where malicuous CID strings enter the system through crafted SIP invites and are then displayed to the browser in the report engine without and filtering

........

................

................

................

................

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/branches/2.2

    • Property svnmerge-integrated changed from /freepbx/branches/2.3:1-4135,4219,4249,4258,4262,4273,4277,4282,4289,4307,4310-4322,4357,4400,4561,6565,6732 /freepbx/trunk:1-3224,3231,3245-3246,3291-3295,3297,3299-3332,3336,3338-3365,3367-3373,3375-3388,3390-3391,3393-3395,3419,3437,3567,3614-3622,3624,3652,3688,3696,3756,3850,3885,4005,4084,4105 to /freepbx/branches/2.3:1-4135,4219,4249,4258,4262,4273,4277,4282,4289,4307,4310-4322,4357,4400,4561,6565,6732,9515 /freepbx/trunk:1-3224,3231,3245-3246,3291-3295,3297,3299-3332,3336,3338-3365,3367-3373,3375-3388,3390-3391,3393-3395,3419,3437,3567,3614-3622,3624,3652,3688,3696,3756,3850,3885,4005,4084,4105
  • freepbx/branches/2.2/amp_conf/htdocs/admin/cdr/call-comp.php

    r3053 r9516  
    5151$FG_TABLE_COL[]=array ("Channel", "channel", "13%", "center", "", "30"); 
    5252$FG_TABLE_COL[]=array ("Source", "src", "10%", "center", "", "30"); 
    53 $FG_TABLE_COL[]=array ("Clid", "clid", "12%", "center", "", "30"); 
     53$FG_TABLE_COL[]=array ("Clid", "clid", "12%", "center", "", "30",'','','','','','filter_html'); 
    5454$FG_TABLE_COL[]=array ("Lastapp", "lastapp", "8%", "center", "", "30"); 
    5555 
  • freepbx/branches/2.2/amp_conf/htdocs/admin/cdr/call-daily-load.php

    r3053 r9516  
    5151$FG_TABLE_COL[]=array ("Channel", "channel", "13%", "center", "", "30"); 
    5252$FG_TABLE_COL[]=array ("Source", "src", "10%", "center", "", "30"); 
    53 $FG_TABLE_COL[]=array ("Clid", "clid", "12%", "center", "", "30"); 
     53$FG_TABLE_COL[]=array ("Clid", "clid", "12%", "center", "", "30",'','','','','','filter_html'); 
    5454$FG_TABLE_COL[]=array ("Lastapp", "lastapp", "8%", "center", "", "30"); 
    5555 
  • freepbx/branches/2.2/amp_conf/htdocs/admin/cdr/call-last-month.php

    r3053 r9516  
    5151$FG_TABLE_COL[]=array ("Channel", "channel", "13%", "center", "", "30"); 
    5252$FG_TABLE_COL[]=array ("Source", "src", "10%", "center", "", "30"); 
    53 $FG_TABLE_COL[]=array ("Clid", "clid", "12%", "center", "", "30"); 
     53$FG_TABLE_COL[]=array ("Clid", "clid", "12%", "center", "", "30",'','','','','','filter_html'); 
    5454$FG_TABLE_COL[]=array ("Lastapp", "lastapp", "8%", "center", "", "30"); 
    5555 
  • freepbx/branches/2.2/amp_conf/htdocs/admin/cdr/call-log.php

    r3522 r9516  
    8888$FG_TABLE_COL[]=array ("Channel", "channel", "13%", "center", "", "30", "", "", "", "", "", "display_acronym"); 
    8989$FG_TABLE_COL[]=array ("Source", "src", "14%", "center", "", "30"); 
    90 $FG_TABLE_COL[]=array ("Clid", "clid", "26%", "center", "", "80"); 
     90$FG_TABLE_COL[]=array ("Clid", "clid", "26%", "center", "", "80",'','','','','','filter_html'); 
    9191 
    9292$FG_TABLE_COL[]=array ("Dst", "dst", "14%", "center", "SORT", "30"); 
  • freepbx/branches/2.2/amp_conf/htdocs/admin/cdr/lib/defines.php

    r2614 r9516  
    119119} 
    120120 
    121  
    122  
     121function filter_html($field) { 
     122  echo  htmlspecialchars($field); 
     123
    123124 
    124125?>