通过AFL-Fuzz进行文件模糊测试时,需要向二进制文件添加一些命令行参数以实现不同的测试场景。下面是添加命令行参数的示例代码:
#include
#include
int main(int argc, char **argv) {
if(argc == 2 && strcmp(argv[1], "--test") == 0) {
printf("test mode\n");
}
else {
printf("normal mode\n");
}
return 0;
}
在上述代码中,当使用命令行参数“--test”运行该程序时,会输出“test mode”,否则输出“normal mode”。
接下来,可以使用AFL-Fuzz工具来生成不同的测试用例,例如:
echo --test | afl-fuzz -i input/ -o output/ ./test_binary
上述命令生成的测试用例均含有命令行参数“--test”。
使用这种方法可以轻松添加各种命令行参数,以实现更全面的测试覆盖。
上一篇:AFL++(超时或崩溃)