mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-04-05 06:13:36 +03:00
Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
|
1441011fb7 | ||
|
2b60157497 | ||
|
049e85ae98 | ||
|
8d3548adb0 | ||
|
0cdda0dc42 | ||
|
372c7cbb69 | ||
|
c9f2ee522b | ||
|
a4d7997356 |
4 changed files with 23 additions and 11 deletions
|
@ -523,10 +523,9 @@ class PHPExcel_Calculation_Functions
|
||||||
*
|
*
|
||||||
* @return string Version information
|
* @return string Version information
|
||||||
*/
|
*/
|
||||||
public static function VERSION()
|
public static function VERSION() {
|
||||||
{
|
return 'PHPExcel 1.8.2, 2018-11-22';
|
||||||
return 'PHPExcel ##VERSION##, ##DATE##';
|
} // function VERSION()
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -269,6 +269,18 @@ abstract class PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader
|
||||||
*/
|
*/
|
||||||
public function securityScan($xml)
|
public function securityScan($xml)
|
||||||
{
|
{
|
||||||
|
$pattern = '/encoding="(.*?)"/';
|
||||||
|
$result = preg_match($pattern, $xml, $matches);
|
||||||
|
if ($result) {
|
||||||
|
$charset = $matches[1];
|
||||||
|
} else {
|
||||||
|
$charset = 'UTF-8';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($charset !== 'UTF-8') {
|
||||||
|
$xml = mb_convert_encoding($xml, 'UTF-8', $charset);
|
||||||
|
}
|
||||||
|
|
||||||
$pattern = '/\\0?' . implode('\\0?', str_split('<!DOCTYPE')) . '\\0?/';
|
$pattern = '/\\0?' . implode('\\0?', str_split('<!DOCTYPE')) . '\\0?/';
|
||||||
if (preg_match($pattern, $xml)) {
|
if (preg_match($pattern, $xml)) {
|
||||||
throw new PHPExcel_Reader_Exception('Detected use of ENTITY in XML, spreadsheet file load() aborted to prevent XXE/XEE attacks');
|
throw new PHPExcel_Reader_Exception('Detected use of ENTITY in XML, spreadsheet file load() aborted to prevent XXE/XEE attacks');
|
||||||
|
|
|
@ -23,7 +23,8 @@
|
||||||
**************************************************************************************
|
**************************************************************************************
|
||||||
|
|
||||||
|
|
||||||
Planned for 1.8.2
|
2018-11-22 (v1.8.2):
|
||||||
|
- Security (MBaker) - Fix and improve XXE security scanning for XML-based Readers
|
||||||
- Bugfix: (MBaker) - Fix to getCell() method when cell reference includes a worksheet reference
|
- Bugfix: (MBaker) - Fix to getCell() method when cell reference includes a worksheet reference
|
||||||
- Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists
|
- Bugfix: (ncrypthic) Work Item GH-570 - Ignore inlineStr type if formula element exists
|
||||||
- Bugfix: (hernst42) Work Item GH-709 - Fixed missing renames of writeRelationShip (from _writeRelationShip)
|
- Bugfix: (hernst42) Work Item GH-709 - Fixed missing renames of writeRelationShip (from _writeRelationShip)
|
||||||
|
|
Loading…
Add table
Reference in a new issue