????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.238 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/phar/tests/zip/ |
Upload File : |
--TEST-- Phar: process bzip2-compressed zip entry --SKIPIF-- <?php if (!extension_loaded("phar")) die("skip"); ?> <?php if (!extension_loaded("spl")) die("skip SPL not available"); ?> <?php if (!extension_loaded("bz2")) die("skip bz2 not available"); ?> --FILE-- <?php try { $a = new PharData(dirname(__FILE__) . '/files/bzip2.zip'); foreach ($a as $entry => $file) { echo $file->getContent(); } $a = new Phar(dirname(__FILE__) . '/files/bz2_alias.phar.zip'); var_dump($a->getAlias()); } catch (Exception $e) { echo $e->getMessage() . "\n"; } ?> ===DONE=== --EXPECT-- <?php include dirname(__FILE__) . '/corrupt_zipmaker.php.inc'; $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii'); $a->addFile('hi2', null, 'hii2', null, null, 'encrypt', 'encrypt'); $a->writeZip(dirname(__FILE__) . '/encrypted.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii'); $a->addFile('', null, 'stdin'); $a->writeZip(dirname(__FILE__) . '/stdin.zip'); $a = new corrupt_zipmaker; $a->addFile('hii', null, 'hii', null, null, 'filename_len', 'filename_len'); $a->addFile('hi', null, 'hii'); $a->writeZip(dirname(__FILE__) . '/truncfilename.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress'); $a->writeZip(dirname(__FILE__) . '/compress_unsup1.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 2); $a->writeZip(dirname(__FILE__) . '/compress_unsup2.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 3); $a->writeZip(dirname(__FILE__) . '/compress_unsup3.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 4); $a->writeZip(dirname(__FILE__) . '/compress_unsup4.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 5); $a->writeZip(dirname(__FILE__) . '/compress_unsup5.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 6); $a->writeZip(dirname(__FILE__) . '/compress_unsup6.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 7); $a->writeZip(dirname(__FILE__) . '/compress_unsup7.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 9); $a->writeZip(dirname(__FILE__) . '/compress_unsup9.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 10); $a->writeZip(dirname(__FILE__) . '/compress_unsup10.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 14); $a->writeZip(dirname(__FILE__) . '/compress_unsup14.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 18); $a->writeZip(dirname(__FILE__) . '/compress_unsup18.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 19); $a->writeZip(dirname(__FILE__) . '/compress_unsup19.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 97); $a->writeZip(dirname(__FILE__) . '/compress_unsup97.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 98); $a->writeZip(dirname(__FILE__) . '/compress_unsup98.zip'); $a = new corrupt_zipmaker; $a->addFile('hi', null, 'hii', null, null, 'compress', 'compress', 11); $a->writeZip(dirname(__FILE__) . '/compress_unsupunknown.zip'); ?> string(175) "hitheresuperlongzipistoostupidtodowhatIsaysoIhavetousethisridiculouslylongaliasbecauseitisstupiddidImentionthatalreadythemadnessdoesnotstopIhateinfozipIhateinfozipIhateinfozip" ===DONE===