From 2749c37c4311299a2ab297c0aee3e02d6ed2bf2c Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 13 Dec 2015 11:22:47 -0600 Subject: [PATCH] extb_combi: tighten up recursion depth --- extensions/extb_combi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/extb_combi.c b/extensions/extb_combi.c index f110f96a..c947c8c2 100644 --- a/extensions/extb_combi.c +++ b/extensions/extb_combi.c @@ -91,7 +91,7 @@ static int eb_combi(const char *data, struct Client *client_p, int allowed_nodes = 6; size_t datalen; - if (recursion_depth >= 5) { + if (recursion_depth >= 2) { DEBUG("combo invalid: recursion depth too high"); return EXTBAN_INVALID; }