本文介绍了AFL 警告:最后一条新路径:还没有(奇怪,检查语法!)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这个警告
(最后一个新路径:还没有(奇怪,检查语法!))
在我尝试对文件进行模糊测试后显示为红色.我不知道为什么会这样,我用谷歌搜索没有答案.
in red after I try to fuzzing a file. I have no idea why it happens and I googled with no answers.
我的命令是这样的:
afl-fuzz -i testcases/ -o findings/ tcpdump-4.6.2/tcpdump -nr @@
推荐答案
这通常意味着您的命令行实际上并未读取文件.尝试在没有 afl-fuzz 的情况下运行它,将 @@
替换为 testcases
目录中的文件路径.希望 tcpdump 的消息能告诉你哪里出了问题.
It usually means that your command line doesn't actually read the file. Try running it without afl-fuzz, substituting @@
with a path to a file from the testcases
directory. Hopefully tcpdump's message will tell you what is wrong.
将来,您可能会更加关注 afl-users 邮件列表.如果您在 SO 方面没有得到任何帮助,请尝试这样做.
In the future, you might get more attention on the afl-users mailing list. Try that if you're not getting any help on SO.
这篇关于AFL 警告:最后一条新路径:还没有(奇怪,检查语法!)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!