From 8b01996adfff805e204394baabf66eaa49ea2502 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Sun, 10 Jan 2016 22:59:40 +0100 Subject: [PATCH] Patch related to the #1655 --- lib/techniques/error/use.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/error/use.py b/lib/techniques/error/use.py index 3ddcf91c4..2c33d2334 100644 --- a/lib/techniques/error/use.py +++ b/lib/techniques/error/use.py @@ -95,7 +95,7 @@ def _oneShotErrorUse(expression, field=None, chunkTest=False): try: while True: check = "%s(?P.*?)%s" % (kb.chars.start, kb.chars.stop) - trimcheck = "%s(?P[^<]*)" % (kb.chars.start) + trimcheck = r"%s(?P[^<\n]*)" % (kb.chars.start) if field: nulledCastedField = agent.nullAndCastField(field)