mirror of
https://github.com/retailcrm/PHPExcel.git
synced 2025-04-04 22:03:37 +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
|
@ -518,15 +518,14 @@ class PHPExcel_Calculation_Functions
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* VERSION
|
||||
*
|
||||
* @return string Version information
|
||||
*/
|
||||
public static function VERSION()
|
||||
{
|
||||
return 'PHPExcel ##VERSION##, ##DATE##';
|
||||
}
|
||||
/**
|
||||
* VERSION
|
||||
*
|
||||
* @return string Version information
|
||||
*/
|
||||
public static function VERSION() {
|
||||
return 'PHPExcel 1.8.2, 2018-11-22';
|
||||
} // function VERSION()
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
@ -269,6 +269,18 @@ abstract class PHPExcel_Reader_Abstract implements PHPExcel_Reader_IReader
|
|||
*/
|
||||
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?/';
|
||||
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');
|
||||
|
|
|
@ -70,7 +70,7 @@ abstract class PHPExcel_Worksheet_CellIterator
|
|||
* Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary
|
||||
*
|
||||
* @throws PHPExcel_Exception
|
||||
*/
|
||||
*/
|
||||
abstract protected function adjustForExistingOnlyRange();
|
||||
|
||||
/**
|
||||
|
|
|
@ -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: (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)
|
||||
|
|
Loading…
Add table
Reference in a new issue