@@ -429,7 +429,7 @@ def start():
429429
430430 if (len (kb .injections ) == 0 or (len (kb .injections ) == 1 and kb .injections [0 ].place is None )) and (kb .injection .place is None or kb .injection .parameter is None ):
431431
432- if not any ((conf .string , conf .notString , conf .regexp )) and PAYLOAD .TECHNIQUE .BOOLEAN in conf .tech :
432+ if not any ((conf .string , conf .notString , conf .regexp )) and PAYLOAD .TECHNIQUE .BOOLEAN in conf .technique :
433433 # NOTE: this is not needed anymore, leaving only to display
434434 # a warning message to the user in case the page is not stable
435435 checkStability ()
@@ -533,7 +533,7 @@ def start():
533533 infoMsg = "ignoring %sparameter '%s'" % ("%s " % paramType if paramType != parameter else "" , parameter )
534534 logger .info (infoMsg )
535535
536- elif PAYLOAD .TECHNIQUE .BOOLEAN in conf .tech or conf .skipStatic :
536+ elif PAYLOAD .TECHNIQUE .BOOLEAN in conf .technique or conf .skipStatic :
537537 check = checkDynParam (place , parameter , value )
538538
539539 if not check :
@@ -612,7 +612,7 @@ def start():
612612 errMsg += " Try to increase values for '--level'/'--risk' options "
613613 errMsg += "if you wish to perform more tests."
614614
615- if isinstance (conf .tech , list ) and len (conf .tech ) < 5 :
615+ if isinstance (conf .technique , list ) and len (conf .technique ) < 5 :
616616 errMsg += " Rerun without providing the option '--technique'."
617617
618618 if not conf .textOnly and kb .originalPage :
0 commit comments