问题描述
在使用AFLNET跑LightFTP的时候,报如下错误
SYSTEM ERROR : AFLNet - the states hashtable should always contain an entry of the initial state Stop location : update_state_aware_variables(), afl-fuzz.c:900 OS message : No such proces
解决方案
命令行指令加上-m none!
举个栗子如下
afl-fuzz -d -i $AFLNET/tutorials/lightftp/in-ftp -o out-lightftp -m none -N tcp://127.0.0.1/2200 -x $AFLNET/tutorials/lightftp/ftp.dict -P FTP -D 10000 -q 3 -s 3 -E -R -c ./ftpclean.sh ./fftp fftp.conf 2200
参考链接
AFLNET lightftp项目报错解决方法
pthread_create创建线程失败,返回11: Resource temporarily unavailable
在尝试使用AFLNET对LightFTP进行模糊测试时遇到SYSTEMERROR,提示初始状态哈希表缺失。解决方案是通过添加-mnone参数到命令行指令中,如示例所示,这有助于解决线程创建失败的问题,错误代码11表示资源暂时不可用。
1598

被折叠的 条评论
为什么被折叠?



