From 8a2409bef89da03f3b5e4297e9a064cffec96636 Mon Sep 17 00:00:00 2001 From: Cool-Y <1072916769@qq.com> Date: Fri, 9 Aug 2019 11:55:32 +0800 Subject: [PATCH] Site updated: 2019-08-09 11:55:30 --- 2019/07/01/AFL-first-learn/index.html | 6 +++--- baidusitemap.xml | 4 ++-- css/main.css | 2 +- search.xml | 2 +- sitemap.xml | 12 ++++++------ 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/2019/07/01/AFL-first-learn/index.html b/2019/07/01/AFL-first-learn/index.html index a68af515..c571b298 100644 --- a/2019/07/01/AFL-first-learn/index.html +++ b/2019/07/01/AFL-first-learn/index.html @@ -479,7 +479,7 @@

0x02 AFL快速入门

1)用make编译AFL。如果构建失败,请参阅docs / INSTALL以获取提示。
2)查找或编写一个相当快速和简单的程序,该程序从文件或标准输入中获取数据,以一种有价值的方式处理它,然后干净地退出。如果测试网络服务,请将其修改为在前台运行并从stdin读取。在对使用校验和的格式进行模糊测试时,也要注释掉校验和验证码。
遇到故障时,程序必须正常崩溃。注意自定义SIGSEGV或SIGABRT处理程序和后台进程。有关检测非崩溃缺陷的提示,请参阅docs/README中的第11节。
3)使用afl-gcc编译要模糊的程序/库。一种常见的方法是:

1
2
$ CC = /path/to/afl-gcc CXX =/path/to/afl-g++ ./configure --disable-shared
$ make clean all

-

如果程序构建失败,请联系 afl-users@googlegroups.com
4)获取一个对程序有意义的小而有效的输入文件。在模糊详细语法(SQL,HTTP等)时,也要创建字典,如dictionaries/README.dictionaries中所述。
5)如果程序从stdin读取,则运行afl-fuzz,如下所示:
./afl-fuzz -i testcase_dir -o findings_dir -- /path/to/tested/program [... program's cmdline ...]
如果程序从文件中获取输入,则可以在程序的命令行中输入@@; AFL会为您放置一个自动生成的文件名。

+

如果程序构建失败,请联系 afl-users@googlegroups.com
4)获取一个对程序有意义的小而有效的输入文件。在模糊详细语法(SQL,HTTP等)时,也要创建字典,如dictionaries/README.dictionaries中所述。
5)如果程序从stdin读取,则运行afl-fuzz,如下所示:
./afl-fuzz -i testcase_dir -o findings_dir -- /path/to/tested/program [... program's cmdline ...]
如果程序从文件中获取输入,则可以在程序的命令行中输入@@; AFL会为您放置一个自动生成的文件名。

一些参考文档

docs/README - AFL的一般介绍,
docs/perf_tips.txt - 关于如何快速模糊的简单提示,
docs/status_screen.txt - UI中显示的花絮的解释,
docs/parallel_fuzzing.txt - 关于在多个核上运行AFL的建议
Generated test cases for common image formats - 生成图像文件测试用例的demo
Technical “whitepaper” for afl-fuzz - 技术白皮书

@@ -496,10 +496,10 @@

0x04 AFL README

-

Written and maintained by Michal Zalewski lcamtuf@google.com

+

Written and maintained by Michal Zalewski lcamtuf@google.com

Copyright 2013, 2014, 2015, 2016 Google Inc. All rights reserved.
Released under terms and conditions of Apache License, Version 2.0.

For new versions and additional information, check out:
http://lcamtuf.coredump.cx/afl/

-

To compare notes with other users or get notified about major new features,
send a mail to afl-users+subscribe@googlegroups.com.

+

To compare notes with other users or get notified about major new features,
send a mail to afl-users+subscribe@googlegroups.com.

See QuickStartGuide.txt if you don’t have time to read this file.

1)具有导向性的模糊测试的挑战

Fuzzing是用于识别真实软件中的安全问题的最强大且经过验证的策略之一;它负责安全关键软件中迄今为止发现的绝大多数远程代码执行和权限提升漏洞。
不幸的是,模糊测试也不够有力。盲目的、随机的变异使得它不太可能在测试代码中达到某些代码路径,从而使一些漏洞超出了这种技术的范围。
已经有许多尝试来解决这个问题。早期方法之一 - 由Tavis Ormandy开创 - 是一种 语义库蒸馏(corpus distillation) 。网上找到的一些大型语料库中往往包含大量的文件,这时就需要对其精简,该方法依赖于覆盖信号从大量高质量的候选文件语料库中选择有趣种子的子集,然后通过传统方式对其进行模糊处理。该方法非常有效,但需要这样的语料库随时可用。正因为如此,代码覆盖率 也只是衡量程序执行状态的一个简单化的度量,这种方式并不适合后续引导fuzzing测试的。
其他更复杂的研究集中在诸如 程序流分析(“concoic execution”),符号执行或静态分析 等技术上。所有这些方法在实验环境中都非常有前景,但在实际应用中往往会遇到可靠性和性能问题 - 部分高价值的程序都有非常复杂的内部状态和执行路径,在这一方面符号执行和concolic技术往往会显得不够健壮(如路径爆炸问题),所以仍然稍逊于传统的fuzzing技术。

diff --git a/baidusitemap.xml b/baidusitemap.xml index 964b6045..c55cdda8 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -58,10 +58,10 @@ https://cool-y.github.io/2018/12/15/miio-control/ 2019-04-15 - https://cool-y.github.io/2000/01/01/hello-world/ + https://cool-y.github.io/2019/03/23/auto-send-WX/ 2019-04-15 - https://cool-y.github.io/2019/03/23/auto-send-WX/ + https://cool-y.github.io/2000/01/01/hello-world/ 2019-04-15 https://cool-y.github.io/2018/11/16/BIBA%E8%AE%BF%E9%97%AE%E6%8E%A7%E5%88%B6%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0(python)/ diff --git a/css/main.css b/css/main.css index b1a72833..4e3b8812 100644 --- a/css/main.css +++ b/css/main.css @@ -1943,7 +1943,7 @@ pre .javascript .function { width: 4px; height: 4px; border-radius: 50%; - background: #b3d991; + background: #ff1b8c; } .links-of-blogroll { font-size: 13px; diff --git a/search.xml b/search.xml index 93810ea8..68b73681 100644 --- a/search.xml +++ b/search.xml @@ -78,7 +78,7 @@ <![CDATA[模糊测试与AFL]]> %2F2019%2F07%2F01%2FAFL-first-learn%2F - + 二进制 diff --git a/sitemap.xml b/sitemap.xml index fcfdfd1b..a7bb2135 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -121,14 +121,14 @@ - https://cool-y.github.io/tags/index.html + https://cool-y.github.io/categories/index.html 2019-04-15T07:35:38.085Z - https://cool-y.github.io/categories/index.html + https://cool-y.github.io/tags/index.html 2019-04-15T07:35:38.085Z @@ -149,14 +149,14 @@ - https://cool-y.github.io/about/index.html + https://cool-y.github.io/2018/12/23/%E5%9F%BA%E4%BA%8E%E8%A7%84%E5%88%99%E5%BC%95%E6%93%8E%E5%8F%91%E7%8E%B0IOT%E8%AE%BE%E5%A4%87/ 2019-04-15T07:35:38.083Z - https://cool-y.github.io/2018/12/23/%E5%9F%BA%E4%BA%8E%E8%A7%84%E5%88%99%E5%BC%95%E6%93%8E%E5%8F%91%E7%8E%B0IOT%E8%AE%BE%E5%A4%87/ + https://cool-y.github.io/about/index.html 2019-04-15T07:35:38.083Z @@ -184,14 +184,14 @@ - https://cool-y.github.io/2000/01/01/hello-world/ + https://cool-y.github.io/2019/03/23/auto-send-WX/ 2019-04-15T07:35:38.081Z - https://cool-y.github.io/2019/03/23/auto-send-WX/ + https://cool-y.github.io/2000/01/01/hello-world/ 2019-04-15T07:35:38.081Z