def run(self):
try:
f = open(variables["output"][0], "a")
except Exception as error:
printError(error)
return ModuleError(error)
for L in range(self.lenmin, self.lenmax):
for word in itertools.combinations_with_replacement(self.chars, L):
if self.sh.kill == True:
f.close()
return
word = ''.join(word)
f.write(word+"\n")
f.close()
评论列表
文章目录