Changeset 9514

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

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.4

    • Property svnmerge-integrated changed from /freepbx/branches/2.3:1-4129,4131,4133-4134,4136-4995,5088,5135,5140,5194 /freepbx/branches/2.5:1-6424,6563,6764,7544,7592-7613,7615,7617-7624,7626-7627,7630-7640,7700,7706 /freepbx/trunk:1-5453,5736,5739,5748,5750,5758,5760,5765,5771,5773,5779,5782,5819,5827,5836,5838,5965,5974,6045,6056,6144,6215,6220,6226,6321-6322,6369 to /freepbx/branches/2.3:1-4129,4131,4133-4134,4136-4995,5088,5135,5140,5194 /freepbx/branches/2.5:1-6424,6563,6764,7544,7592-7613,7615,7617-7624,7626-7627,7630-7640,7700,7706,9513 /freepbx/trunk:1-5453,5736,5739,5748,5750,5758,5760,5765,5771,5773,5779,5782,5819,5827,5836,5838,5965,5974,6045,6056,6144,6215,6220,6226,6321-6322,6369
  • freepbx/branches/2.4/amp_conf/htdocs/admin/cdr/call-comp.php

    r6765 r9514  
    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.4/amp_conf/htdocs/admin/cdr/call-daily-load.php

    r6765 r9514  
    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.4/amp_conf/htdocs/admin/cdr/call-last-month.php

    r6765 r9514  
    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.4/amp_conf/htdocs/admin/cdr/call-log.php

    r6765 r9514  
    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.4/amp_conf/htdocs/admin/cdr/lib/defines.php

    r7642 r9514  
    121121} 
    122122 
    123  
    124  
     123function filter_html($field) { 
     124  echo  htmlspecialchars($field); 
     125
    125126 
    126127?>