Skip to content

Commit

Permalink
fix CVE-2013-2110 - use correct formula to calculate string size
Browse files Browse the repository at this point in the history
  • Loading branch information
smalyshev committed Jun 5, 2013
1 parent 2463e89 commit 93e0d78
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS
Expand Up @@ -18,6 +18,10 @@ PHP NEWS

### DO NOT ADD ENTRIES HERE, ADD THEM ABOVE FOR 5.3.27 ###

- Core:
. Fixed bug #64879 (Heap based buffer overflow in quoted_printable_encode,
CVE 2013-2110). (Stas)

- Calendar:
. Fixed bug #64895 (Integer overflow in SndToJewish). (Remi)

Expand Down
2 changes: 1 addition & 1 deletion ext/standard/quot_print.c
Expand Up @@ -151,7 +151,7 @@ PHPAPI unsigned char *php_quot_print_encode(const unsigned char *str, size_t len
unsigned char c, *ret, *d;
char *hex = "0123456789ABCDEF";

ret = safe_emalloc(1, 3 * length + 3 * (((3 * length)/PHP_QPRINT_MAXL) + 1), 0);
ret = safe_emalloc(3, length + (((3 * length)/(PHP_QPRINT_MAXL-9)) + 1), 1);
d = ret;

while (length--) {
Expand Down
12 changes: 12 additions & 0 deletions ext/standard/tests/strings/bug64879.phpt
@@ -0,0 +1,12 @@
--TEST--
Bug #64879: quoted_printable_encode() wrong size calculation (CVE-2013-2110)
--FILE--
<?php

quoted_printable_encode(str_repeat("\xf4", 1000));
quoted_printable_encode(str_repeat("\xf4", 100000));

echo "Done\n";
?>
--EXPECTF--
Done

0 comments on commit 93e0d78

Please sign in to comment.