summaryrefslogtreecommitdiff
path: root/ext/phar/tests/bug77586.phpt
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2019-03-03 22:33:38 -0800
committerStanislav Malyshev <stas@php.net>2019-03-03 23:05:32 -0800
commite0f5d62bd6690169998474b62f92a8c5ddf0e699 (patch)
tree2ea784d2b33d1da58afe92b6f7a054f4cbfe46de /ext/phar/tests/bug77586.phpt
parent759e841b247691ca3e18fd08313db26a12a41007 (diff)
downloadphp-git-e0f5d62bd6690169998474b62f92a8c5ddf0e699.tar.gz
Fix bug #77586 - phar_tar_writeheaders_int() buffer overflow
Diffstat (limited to 'ext/phar/tests/bug77586.phpt')
-rw-r--r--ext/phar/tests/bug77586.phpt21
1 files changed, 21 insertions, 0 deletions
diff --git a/ext/phar/tests/bug77586.phpt b/ext/phar/tests/bug77586.phpt
new file mode 100644
index 0000000000..039cc16994
--- /dev/null
+++ b/ext/phar/tests/bug77586.phpt
@@ -0,0 +1,21 @@
+--TEST--
+Bug #77586 Symbolic link names in tar-formatted phar must be less than 100 bytes.
+--SKIPIF--
+<?php if (!extension_loaded("phar") || true /* blocked by bug 65332 */) die("skip"); ?>
+--FILE--
+<?php
+$dir = __DIR__."/bug77586";
+$phar = new PharData($dir . "/bug77586.tar");
+$phar->buildFromDirectory($dir . "/files");
+?>
+--CLEAN--
+<?php
+$dir = __DIR__."/bug77586";
+unlink($dir . "/bug77586.tar");
+?>
+--EXPECTF--
+Fatal error: Uncaught PharException: tar-based phar "%s/bug77586.tar" cannot be created, link "%s" is too long for format %s
+Stack trace:
+#0 %s/bug77586.php(%d): PharData->buildFromDirectory('%s')
+#1 {main}
+ thrown in %s/bug77586.php %s on line %d