Kali Linux中wfuzz中bug修复

该工具中,-z选项如果使用hexrand模式,会出现死循环。建议将/usr/share/wfuzz/plugins/payloads.py

进行修改。将168行的代码替换修改如下:

def next (self):
if self.__count==0: #避免死循环
raise StopIteration

self.current = random.SystemRandom().randint(self.minimum,self.maximum)

lgth = len(hex(self.maximum).replace(“0x”,””))
pl=”%”+str(lgth)+”s”
num = hex(self.current).replace(“0x”,””)
pl = pl % (num)
payl =pl.replace(” “,”0″)
self.__count+=1 #执行计数加一
return payl

发表评论

邮箱地址不会被公开。 必填项已用*标注

您可以使用这些HTML标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>