removed integers from --technique

This commit is contained in:
Miroslav Stampar 2011-04-07 10:37:48 +00:00
parent fced81b6be
commit 68828d68a5

View File

@ -612,8 +612,6 @@ def __setTechnique():
if conf.tech and isinstance(conf.tech, basestring):
selTechniques = []
# e.g.: BEUST
if not conf.tech.isdigit():
for letter in conf.tech.upper():
if letter not in validLetters:
errMsg = "value for --technique must be a string composed "
@ -626,10 +624,6 @@ def __setTechnique():
selTechniques.append(validInt)
break
# e.g.: 12345
else:
selTechniques = filter(lambda x: x in PAYLOAD.SQLINJECTION, [int(c) for c in str(conf.tech)])
conf.tech = selTechniques
if len(conf.tech) > 0: