/mb_ereg_heap_overflow.patch Secret
Created
December 29, 2018 22:25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ext/mbstring/oniguruma/regcomp.c b/ext/mbstring/oniguruma/regcomp.c | |
index b93ca948a7..a0057872b1 100644 | |
--- a/ext/mbstring/oniguruma/regcomp.c | |
+++ b/ext/mbstring/oniguruma/regcomp.c | |
@@ -524,6 +524,7 @@ compile_string_node(Node* node, regex_t* reg) | |
for (; p < end; ) { | |
len = enclen(enc, p); | |
+ if (p + len > end) len = end - p; | |
if (len == prev_len) { | |
slen++; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment