| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Xml_Security
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'Zend_Xml_SecurityTest::main');
- }
- /**
- * This is a class that overrides Zend_Xml_Security to mark the heuristicScan()
- * method as public, allowing us to test it.
- *
- * @see Zend_Xml_Security
- */
- require_once 'Zend/Xml/TestAsset/Security.php';
- require_once 'Zend/Xml/Exception.php';
- /**
- * @category Zend
- * @package Zend_Xml_Security
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Xml
- * @group ZF2015-06
- */
- class Zend_Xml_MultibyteTest extends PHPUnit_Framework_TestCase
- {
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite(__CLASS__);
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
-
- public function multibyteEncodings()
- {
- return array(
- 'UTF-16LE' => array('UTF-16LE', pack('CC', 0xff, 0xfe), 3),
- 'UTF-16BE' => array('UTF-16BE', pack('CC', 0xfe, 0xff), 3),
- 'UTF-32LE' => array('UTF-32LE', pack('CCCC', 0xff, 0xfe, 0x00, 0x00), 4),
- 'UTF-32BE' => array('UTF-32BE', pack('CCCC', 0x00, 0x00, 0xfe, 0xff), 4),
- );
- }
- public function getXmlWithXXE()
- {
- return <<<XML
- <?xml version="1.0" encoding="{ENCODING}"?>
- <!DOCTYPE methodCall [
- <!ENTITY pocdata SYSTEM "file:///etc/passwd">
- ]>
- <methodCall>
- <methodName>retrieved: &pocdata;</methodName>
- </methodCall>
- XML;
- }
- /**
- * Invoke Zend_Xml_Security::heuristicScan with the provided XML.
- *
- * @param string $xml
- * @return void
- * @throws Zend_Xml_Exception
- */
- public function invokeHeuristicScan($xml)
- {
- return Zend_Xml_TestAsset_Security::heuristicScan($xml);
- }
- /**
- * @dataProvider multibyteEncodings
- * @group heuristicDetection
- */
- public function testDetectsMultibyteXXEVectorsUnderFPMWithEncodedStringMissingBOM($encoding, $bom, $bomLength)
- {
- $xml = $this->getXmlWithXXE();
- $xml = str_replace('{ENCODING}', $encoding, $xml);
- $xml = iconv('UTF-8', $encoding, $xml);
- $this->assertNotSame(0, strncmp($xml, $bom, $bomLength));
- $this->setExpectedException('Zend_Xml_Exception', 'ENTITY');
- $this->invokeHeuristicScan($xml);
- }
- /**
- * @dataProvider multibyteEncodings
- */
- public function testDetectsMultibyteXXEVectorsUnderFPMWithEncodedStringUsingBOM($encoding, $bom)
- {
- $xml = $this->getXmlWithXXE();
- $xml = str_replace('{ENCODING}', $encoding, $xml);
- $orig = iconv('UTF-8', $encoding, $xml);
- $xml = $bom . $orig;
- $this->setExpectedException('Zend_Xml_Exception', 'ENTITY');
- $this->invokeHeuristicScan($xml);
- }
- public function getXmlWithoutXXE()
- {
- return <<<XML
- <?xml version="1.0" encoding="{ENCODING}"?>
- <methodCall>
- <methodName>retrieved: &pocdata;</methodName>
- </methodCall>
- XML;
- }
- /**
- * @dataProvider multibyteEncodings
- */
- public function testDoesNotFlagValidMultibyteXmlAsInvalidUnderFPM($encoding)
- {
- $xml = $this->getXmlWithoutXXE();
- $xml = str_replace('{ENCODING}', $encoding, $xml);
- $xml = iconv('UTF-8', $encoding, $xml);
- try {
- $result = $this->invokeHeuristicScan($xml);
- $this->assertNull($result);
- } catch (Exception $e) {
- $this->fail('Security scan raised exception when it should not have');
- }
- }
- /**
- * @dataProvider multibyteEncodings
- * @group mixedEncoding
- */
- public function testDetectsXXEWhenXMLDocumentEncodingDiffersFromFileEncoding($encoding, $bom)
- {
- $xml = $this->getXmlWithXXE();
- $xml = str_replace('{ENCODING}', 'UTF-8', $xml);
- $xml = iconv('UTF-8', $encoding, $xml);
- $xml = $bom . $xml;
- $this->setExpectedException('Zend_Xml_Exception', 'ENTITY');
- $this->invokeHeuristicScan($xml);
- }
- }
- if (PHPUnit_MAIN_METHOD == "Zend_Xml_MultibyteTest::main") {
- Zend_Xml_MultibyteTest::main();
- }
|