You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
infoMsg="%sparameter '%s' appears to be '%s' injectable (with --code=%d)"% ("%s "%paramTypeifparamType!=parameterelse"", parameter, title, conf.code)
585
586
logger.info(infoMsg)
@@ -604,7 +605,7 @@ def genCmpPayload():
604
605
ifre.match(r"\A\w{2,}\Z", candidate): # Note: length of 1 (e.g. --string=5) could cause trouble, especially in error message pages with partially reflected payload content
605
606
break
606
607
607
-
conf.string=candidate
608
+
suggestion=conf.string=candidate
608
609
609
610
infoMsg="%sparameter '%s' appears to be '%s' injectable (with --string=\"%s\")"% ("%s "%paramTypeifparamType!=parameterelse"", parameter, title, repr(conf.string).lstrip('u').strip("'"))
610
611
logger.info(infoMsg)
@@ -618,12 +619,12 @@ def genCmpPayload():
618
619
ifre.match(r"\A\w+\Z", candidate):
619
620
break
620
621
621
-
conf.notString=candidate
622
+
suggestion=conf.notString=candidate
622
623
623
624
infoMsg="%sparameter '%s' appears to be '%s' injectable (with --not-string=\"%s\")"% ("%s "%paramTypeifparamType!=parameterelse"", parameter, title, repr(conf.notString).lstrip('u').strip("'"))
0 commit comments