File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 108108from lib .core .settings import ORACLE_ALIASES
109109from lib .core .settings import PARAMETER_SPLITTING_REGEX
110110from lib .core .settings import PGSQL_ALIASES
111+ from lib .core .settings import PROBLEMATIC_CUSTOM_INJECTION_PATTERNS
111112from lib .core .settings import SITE
112113from lib .core .settings import SQLITE_ALIASES
113114from lib .core .settings import SUPPORTED_DBMS
@@ -310,6 +311,9 @@ def _parseBurpLog(content):
310311 elif key not in (HTTPHEADER .PROXY_CONNECTION , HTTPHEADER .CONNECTION ):
311312 conf .httpHeaders .append ((getUnicode (key ), getUnicode (value )))
312313
314+ if CUSTOM_INJECTION_MARK_CHAR in re .sub (PROBLEMATIC_CUSTOM_INJECTION_PATTERNS , "" , value or "" ):
315+ params = True
316+
313317 data = data .rstrip ("\r \n " ) if data else data
314318
315319 if getPostReq and (params or cookie ):
You can’t perform that action at this time.
0 commit comments