diff --git a/2000/01/01/hello-world/index.html b/2000/01/01/hello-world/index.html index eca5c539..3b43e601 100644 --- a/2000/01/01/hello-world/index.html +++ b/2000/01/01/hello-world/index.html @@ -558,7 +558,7 @@ - 16 + 17 日志 @@ -651,7 +651,7 @@ - 44.8k + 48k @@ -842,7 +842,7 @@ + + + + + + + + + + AFL初次实践 | 混元霹雳手 + + + + + + + + + + + + + + + + + + +
+
+ + + +
+
+
+
+ + +
+ + + + + + + + +
+ + + +
+ + + + + + + +
+ + + +

AFL初次实践

+ + + +
+ + + + + +
+ + + + + +

这篇文章是对afl的简单使用,可大致分为黑盒测试和白盒测试两个部分。白盒测试从对目标程序的插桩编译开始,然后使用fuzzer对其模糊测试发现崩溃,最后对测试的代码覆盖率进行评估。黑盒测试则演示得较简略。
参考:https://paper.seebug.org/841/#_1

+

部署afl

+
+
1
2
3
4
5
6
> wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz
> tar -zxvf afl-latest.tgz
> cd afl-2.52b/
> make
> sudo make install
>
+
+

部署qemu

+
+
1
2
3
4
5
6
7
8
> $ CPU_TARGET=x86_64 ./build_qemu_support.sh
> [+] Build process successful!
> [*] Copying binary...
> -rwxr-xr-x 1 han han 10972920 7月 9 10:43 ../afl-qemu-trace
> [+] Successfully created '../afl-qemu-trace'.
> [!] Note: can't test instrumentation when CPU_TARGET set.
> [+] All set, you can now (hopefully) use the -Q mode in afl-fuzz!
>
+
+
+

白盒测试

目标程序编译

    +
  1. 源代码

    +
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    #undef _FORTIFY_SOURCE
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>

    void vulnerable_function() {
    char buf[128];
    read(STDIN_FILENO, buf, 256);
    }

    int main(int argc, char** argv) {
    vulnerable_function();
    write(STDOUT_FILENO, "Hello, World\n", 13);
    }
    +
  2. +
  3. gcc编译(不插桩)

    +
    -ftest-coverage
    1
    2
    3
    4
    $ gcc v1.c -o v1
    $ ./v1
    what
    Hello, World
    +
  4. +
+

生成v1的目的一是为了和afl-gcc的编译做对比,二是为黑盒测试做铺垫。

+
    +
  1. 使用afl-gcc进行编译
    -fno-stack-protector 该选项会禁止stack canary保护
    -z execstack 允许堆栈可执行
    1
    2
    3
    4
    $ ../afl-2.52b/afl-gcc -fno-stack-protector -z execstack v1.c -o v1-afl   
    afl-cc 2.52b by <lcamtuf@google.com>
    afl-as 2.52b by <lcamtuf@google.com>
    [+] Instrumented 2 locations (64-bit, non-hardened mode, ratio 100%).
    +
  2. +
+

测试插桩程序

afl-showmap 跟踪单个输入的执行路径,并打印程序执行的输出、捕获的元组(tuples),tuple用于获取分支信息,从而衡量衡量程序覆盖情况。

1
2
3
4
5
6
7
8
9
10
$ ./afl-showmap -o /dev/null -- ../vuln/v1  <<(echo test)
afl-showmap 2.52b by <lcamtuf@google.com>
[*] Executing '../vuln/v1'...

-- Program output begins --
Hello, World
-- Program output ends --

[-] PROGRAM ABORT : No instrumentation detected
Location : main(), afl-showmap.c:773

+
1
2
3
4
5
6
7
8
$ ./afl-showmap -o /dev/null -- ../vuln/v1-afl <<(echo test)
afl-showmap 2.52b by <lcamtuf@google.com>
[*] Executing '../vuln/v1-afl'...

-- Program output begins --
Hello, World
-- Program output ends --
[+] Captured 1 tuples in '/dev/null'.
+

可见,afl-gcc相对于gcc的不同在于采用了插桩计算覆盖率,在这个实例程序中捕捉到了一个元组

+

执行FUZZER

    +
  1. 修改core
    在执行afl-fuzz前,如果系统配置为将核心转储文件(core)通知发送到外部程序。
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    $ ./afl-fuzz  -i ../vuln/testcase/ -o ../vuln/out/ ../vuln/v1-afl
    afl-fuzz 2.52b by <lcamtuf@google.com>
    [+] You have 2 CPU cores and 2 runnable tasks (utilization: 100%).
    [*] Checking CPU core loadout...
    [+] Found a free CPU core, binding to #0.
    [*] Checking core_pattern...

    [-] Hmm, your system is configured to send core dump notifications to an
    external utility. This will cause issues: there will be an extended delay
    between stumbling upon a crash and having this information relayed to the
    fuzzer via the standard waitpid() API.

    To avoid having crashes misinterpreted as timeouts, please log in as root
    and temporarily modify /proc/sys/kernel/core_pattern, like so:

    echo core >/proc/sys/kernel/core_pattern

    [-] PROGRAM ABORT : Pipe at the beginning of 'core_pattern'
    Location : check_crash_handling(), afl-fuzz.c:7275
    +
  2. +
+

将导致将崩溃信息发送到Fuzzer之间的延迟增大,进而可能将崩溃被误报为超时,所以我们得临时修改core_pattern文件,如下所示:

1
echo core >/proc/sys/kernel/core_pattern

+
    +
  1. 通用fuzz语法
    afl-fuzz对于直接从stdin接受输入的目标二进制文件,通常的语法是:
    1
    $ ./afl-fuzz -i testcase_dir -o findings_dir / path / to / program [... params ...]
    +
  2. +
+

对于从文件中获取输入的程序,使用“@@”标记目标命令行中应放置输入文件名的位置。模糊器将替换为您:

1
$ ./afl-fuzz -i testcase_dir -o findings_dir / path / to / program @@

+

此时afl会给我们返回一些信息,这里提示我们有些测试用例无效

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
afl-fuzz 2.52b by <lcamtuf@google.com>
[+] You have 2 CPU cores and 2 runnable tasks (utilization: 100%).
[*] Checking CPU core loadout...
[+] Found a free CPU core, binding to #0.
[*] Checking core_pattern...
[*] Setting up output directories...
[+] Output directory exists but deemed OK to reuse.
[*] Deleting old session data...
[+] Output dir cleanup successful.
[*] Scanning '../vuln/testcase/'...
[+] No auto-generated dictionary tokens to reuse.
[*] Creating hard links for all input files...
[*] Validating target binary...
[*] Attempting dry run with 'id:000000,orig:1'...
[*] Spinning up the fork server...
[+] All right - fork server is up.
len = 3, map size = 1, exec speed = 295 us
[*] Attempting dry run with 'id:000001,orig:2'...
len = 23, map size = 1, exec speed = 125 us
[!] WARNING: No new instrumentation output, test case may be useless.
[+] All test cases processed.

[!] WARNING: Some test cases look useless. Consider using a smaller set.
[+] Here are some useful stats:

Test case count : 1 favored, 0 variable, 2 total
Bitmap range : 1 to 1 bits (average: 1.00 bits)
Exec timing : 125 to 295 us (average: 210 us)

[*] No -t option specified, so I'll use exec timeout of 20 ms.
[+] All set and ready to roll!

+
    +
  1. 状态窗口
    我们可以看到afl很快就给我们制造了崩溃
  2. +
+
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
                       american fuzzy lop 2.52b (v1-afl)

┌─ process timing ─────────────────────────────────────┬─ overall results ─────┐
│ run time : 0 days, 0 hrs, 4 min, 19 sec │ cycles done : 2477 │
│ last new path : 0 days, 0 hrs, 2 min, 27 sec │ total paths : 3 │
│ last uniq crash : 0 days, 0 hrs, 4 min, 19 sec │ uniq crashes : 1 │
│ last uniq hang : 0 days, 0 hrs, 2 min, 12 sec │ uniq hangs : 1 │
├─ cycle progress ────────────────────┬─ map coverage ─┴───────────────────────┤
│ now processing : 2 (66.67%) │ map density : 0.00% / 0.00% │
│ paths timed out : 0 (0.00%) │ count coverage : 1.00 bits/tuple │
├─ stage progress ────────────────────┼─ findings in depth ────────────────────┤
│ now trying : havoc │ favored paths : 1 (33.33%) │
│ stage execs : 1433/1536 (93.29%) │ new edges on : 2 (66.67%) │
│ total execs : 2.32M │ total crashes : 93.1k (1 unique) │
│ exec speed : 0.00/sec (zzzz...) │ total tmouts : 8 (1 unique) │
├─ fuzzing strategy yields ───────────┴───────────────┬─ path geometry ────────┤
│ bit flips : 0/1152, 0/1149, 0/1143 │ levels : 2 │
│ byte flips : 0/144, 0/14, 0/10 │ pending : 0 │
│ arithmetics : 0/888, 0/25, 0/0 │ pend fav : 0 │
│ known ints : 0/98, 0/390, 0/440 │ own finds : 1 │
│ dictionary : 0/0, 0/0, 0/0 │ imported : n/a │
│ havoc : 2/1.50M, 0/819k │ stability : 100.00% │
│ trim : 11.88%/64, 80.00% ├────────────────────────┘
└─────────────────────────────────────────────────────┘ [cpu000:102%] │
│ stage execs : 1432/1536 (93.23%) │ new edges on : 2 (66.67%) │
+++ Testing aborted by user +++ │ total crashes : 93.1k (1 unique) │
[+] We're done here. Have a nice day! │ total tmouts : 8 (1 unique) │
├─ fuzzing strategy yields ───────────┴───────────────┬─ path geometry ────────┤
+

由上面AFL状态窗口:
① Process timing:Fuzzer运行时长、以及距离最近发现的路径、崩溃和挂起(超时)经过了多长时间。
已经运行4m19s,距离上一个最新路径已经过去2min27s,距离上一个独特崩溃已经过去4min19s(可见找到崩溃的速度非常快),距离上一次挂起已经过去2m12s。

+

② Overall results:Fuzzer当前状态的概述。

+

③ Cycle progress:我们输入队列的距离。队列一共有3个用例,现在是第二个,66.67%

+

④ Map coverage:目标二进制文件中的插桩代码所观察到覆盖范围的细节。

+

⑤ Stage progress:Fuzzer现在正在执行的文件变异策略、执行次数和执行速度。

+

⑥ Findings in depth:有关我们找到的执行路径,异常和挂起数量的信息。

+

⑦ Fuzzing strategy yields:关于突变策略产生的最新行为和结果的详细信息。

+

⑧ Path geometry:有关Fuzzer找到的执行路径的信息。

+

⑨ CPU load:CPU利用率

+

afl何时结束

(1) 状态窗口中”cycles done”字段颜色变为绿色该字段的颜色可以作为何时停止测试的参考,随着周期数不断增大,其颜色也会由洋红色,逐步变为黄色、蓝色、绿色。当其变为绿色时,继续Fuzzing下去也很难有新的发现了,这时便可以通过Ctrl-C停止afl-fuzz。
(2) 距上一次发现新路径(或者崩溃)已经过去很长时间
(3) 目标程序的代码几乎被测试用例完全覆盖

+

处理输出结果

+

确定造成这些crashes的bug是否可以利用,怎么利用?

+
+

afl在fuzzing的过程中同时也产生了这些文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ tree ../vuln/out/
../vuln/out/
├── crashes
│   ├── id:000000,sig:11,src:000000,op:havoc,rep:64
│   └── README.txt
├── fuzz_bitmap
├── fuzzer_stats
├── hangs
├── plot_data
└── queue
├── id:000000,orig:1
└── id:000001,orig:2

3 directories, 7 files

+

在输出目录中创建了三个子目录并实时更新:

+
    +
  • queue: 测试每个独特执行路径的案例,以及用户提供的所有起始文件。
  • +
  • crashes: 导致被测程序接收致命信号的独特测试用例(例如,SIGSEGV,SIGILL,SIGABRT)。条目按接收信号分组。
  • +
  • hangs: 导致测试程序超时的独特测试用例。将某些内容归类为挂起之前的默认时间限制是1秒内的较大值和-t参数的值。可以通过设置AFL_HANG_TMOUT来微调该值,但这很少是必需的。
  • +
  • 崩溃和挂起被视为“唯一” :如果相关的执行路径涉及在先前记录的故障中未见的任何状态转换。如果可以通过多种方式达到单个错误,那么在此过程中会有一些计数通货膨胀,但这应该会迅速逐渐减少。
  • +
  • fuzzer_stats:afl-fuzz的运行状态。
  • +
  • plot_data:用于afl-plot绘图。
  • +
+

崩溃类型和可利用性

    +
  1. triage_crashes
    AFL源码的experimental目录中有一个名为triage_crashes.sh的脚本,可以帮助我们触发收集到的crashes。例如下面的例子中,11代表了SIGSEGV信号,有可能是因为缓冲区溢出导致进程引用了无效的内存;06代表了SIGABRT信号,可能是执行了abort\assert函数或double free导致,这些结果可以作为简单的参考。
  2. +
+
1
2
$ experimental/crash_triage/triage_crashes.sh ../vuln/out/ ../vuln/v1-afl 2>&1 | grep SIGNAL
+++ ID 000000, SIGNAL 11 +++
+
    +
  1. crashwalk
    如果你想得到更细致的crashes分类结果,以及导致crashes的具体原因,那么crashwalk就是不错的选择之一。这个工具基于gdb的exploitable插件,安装也相对简单,在ubuntu上,只需要如下几步即可:
    1
    2
    3
    4
    5
    6
    7
    8
    $ apt-get install gdb golang
    $ mkdir tools
    $ cd tools
    $ git clone https://github.com/jfoote/exploitable.git
    $ mkdir go
    $ export GOPATH=~/tools/go
    $ export CW_EXPLOITABLE=~/tools/exploitable/exploitable/exploitable.py
    $ go get -u github.com/bnagy/crashwalk/cmd/...
    +
  2. +
+
    +
  • 这部分我好像还没完成
  • +
+
    +
  1. afl-collect
    1
    2
    3
    4
    5
    $ afl-collect -d crashes.db -e gdb_script -j 8 -r ../vuln/out/ ../vuln/testcase -- ../vuln/v1-afl

    *** GDB+EXPLOITABLE SCRIPT OUTPUT ***
    [00001] out:id:000000,sig:11,src:000000,op:havoc,rep:64.................: EXPLOITABLE [ReturnAv (1/22)]
    *** ***************************** ***
    +
  2. +
+
+

代码覆盖率及其相关概念

+

代码覆盖率是模糊测试中一个极其重要的概念,使用代码覆盖率可以评估和改进测试过程,执行到的代码越多,找到bug的可能性就越大,毕竟,在覆盖的代码中并不能100%发现bug,在未覆盖的代码中却是100%找不到任何bug的。
代码覆盖率是一种度量代码的覆盖程度的方式,也就是指源代码中的某行代码是否已执行;对二进制程序,还可将此概念理解为汇编代码中的某条指令是否已执行。其计量方式很多,但无论是GCC的GCOV还是LLVM的SanitizerCoverage,都提供函数(function)、基本块(basic-block)、边界(edge)三种级别的覆盖率检测。

+
+

计算代码覆盖率

GCOV:插桩生成覆盖率 LCOV:图形展示覆盖率 afl-cov:调用前两个工具计算afl测试用例的覆盖率

+
    +
  1. gcc插桩

    +
    1
    $ gcc -fprofile-arcs -ftest-coverage ./v1.c -o v1-cov
    +
  2. +
  3. afl-cov计算之前fuzzer的过程(结束后)

    +
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    $ ../afl-2.52b/afl-cov/afl-cov -d ./out/ --enable-branch-coverage -c . -e "cat AFL_FILE | ./v1-cov AFL_FILE"

    Non-zero exit status '1' for CMD: /usr/bin/readelf -a cat

    *** Imported 2 new test cases from: ./out//queue

    [+] AFL test case: id:000000,orig:1 (0 / 2), cycle: 0
    lines......: 100.0% (6 of 6 lines)
    functions..: 100.0% (2 of 2 functions)
    branches...: no data found

    Coverage diff (init) id:000000,orig:1
    diff (init) -> id:000000,orig:1
    New src file: /home/han/ck/vuln/v1.c
    New 'function' coverage: main()
    New 'function' coverage: vulnerable_function()
    New 'line' coverage: 11
    New 'line' coverage: 12
    New 'line' coverage: 13
    New 'line' coverage: 6
    New 'line' coverage: 8
    New 'line' coverage: 9

    ++++++ BEGIN - first exec output for CMD: cat ./out//queue/id:000000,orig:1 | ./v1-cov ./out//queue/id:000000,orig:1
    Hello, World
    ++++++ END

    [+] AFL test case: id:000001,orig:2 (1 / 2), cycle: 0
    lines......: 100.0% (6 of 6 lines)
    functions..: 100.0% (2 of 2 functions)
    branches...: no data found
    [+] Processed 2 / 2 test cases.

    [+] Final zero coverage report: ./out//cov/zero-cov
    [+] Final positive coverage report: ./out//cov/pos-cov
    lines......: 100.0% (6 of 6 lines)
    functions..: 100.0% (2 of 2 functions)
    branches...: no data found
    [+] Final lcov web report: ./out//cov/web/index.html
    +
  4. +
  5. LCOV展示

    +
  6. +
+

+
+

黑盒测试(使用qemu

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$ ./afl-fuzz -i ../vuln/testcase/ -o ../vuln/outQemu -Q ../vuln/v1
american fuzzy lop 2.52b (v1)

┌─ process timing ─────────────────────────────────────┬─ overall results ─────┐
│ run time : 0 days, 0 hrs, 0 min, 41 sec │ cycles done : 232 │
│ last new path : none yet (odd, check syntax!) │ total paths : 2 │
│ last uniq crash : 0 days, 0 hrs, 0 min, 41 sec │ uniq crashes : 1 │
│ last uniq hang : none seen yet │ uniq hangs : 0 │
├─ cycle progress ────────────────────┬─ map coverage ─┴───────────────────────┤
│ now processing : 0* (0.00%) │ map density : 0.04% / 0.04% │
│ paths timed out : 0 (0.00%) │ count coverage : 1.00 bits/tuple │
├─ stage progress ────────────────────┼─ findings in depth ────────────────────┤
│ now trying : havoc │ favored paths : 1 (50.00%) │
│ stage execs : 255/256 (99.61%) │ new edges on : 1 (50.00%) │
│ total execs : 121k │ total crashes : 33 (1 unique) │
│ exec speed : 2860/sec │ total tmouts : 0 (0 unique) │
├─ fuzzing strategy yields ───────────┴───────────────┬─ path geometry ────────┤
│ bit flips : 0/56, 0/54, 0/50 │ levels : 1 │
│ byte flips : 0/7, 0/5, 0/1 │ pending : 0 │
│ arithmetics : 0/392, 0/25, 0/0 │ pend fav : 0 │
│ known ints : 0/36, 0/138, 0/44 │ own finds : 0 │
│ dictionary : 0/0, 0/0, 0/0 │ imported : n/a │
│ havoc : 1/120k, 0/0 │ stability : 100.00% │
│ trim : 82.61%/5, 0.00% ├────────────────────────┘
^C────────────────────────────────────────────────────┘ [cpu000:102%]
+
    +
  • 待完成对黑盒测试原理的分析
  • +
+ + +
+ + + + + + + +
+
+
您的支持将鼓励我继续创作!
+ + +
+ +
+ + + + + +
+ + + +
+ + + +
+ +
+
+ + +
+ + + + + + +
+ +
+ +
+ + + + + +
+ + + + + + + + + +
+
+ + + + +
+ + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/about/index.html b/about/index.html index ec109087..c548864c 100644 --- a/about/index.html +++ b/about/index.html @@ -367,7 +367,7 @@ - 16 + 17 日志 @@ -460,7 +460,7 @@ - 44.8k + 48k diff --git a/archives/2000/01/index.html b/archives/2000/01/index.html index 5b2bd913..7f75c15d 100644 --- a/archives/2000/01/index.html +++ b/archives/2000/01/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -397,7 +397,7 @@ - 16 + 17 日志 @@ -490,7 +490,7 @@ - 44.8k + 48k diff --git a/archives/2000/index.html b/archives/2000/index.html index 23c67eec..602d1138 100644 --- a/archives/2000/index.html +++ b/archives/2000/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -397,7 +397,7 @@ - 16 + 17 日志 @@ -490,7 +490,7 @@ - 44.8k + 48k diff --git a/archives/2018/11/index.html b/archives/2018/11/index.html index 305ef7bd..5e1aba15 100644 --- a/archives/2018/11/index.html +++ b/archives/2018/11/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -397,7 +397,7 @@ - 16 + 17 日志 @@ -490,7 +490,7 @@ - 44.8k + 48k diff --git a/archives/2018/12/index.html b/archives/2018/12/index.html index db360d45..205e441b 100644 --- a/archives/2018/12/index.html +++ b/archives/2018/12/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -467,7 +467,7 @@ - 16 + 17 日志 @@ -560,7 +560,7 @@ - 44.8k + 48k diff --git a/archives/2018/index.html b/archives/2018/index.html index 918cc44e..50d68026 100644 --- a/archives/2018/index.html +++ b/archives/2018/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -502,7 +502,7 @@ - 16 + 17 日志 @@ -595,7 +595,7 @@ - 44.8k + 48k diff --git a/archives/2019/01/index.html b/archives/2019/01/index.html index 8a617c21..cde1a3cb 100644 --- a/archives/2019/01/index.html +++ b/archives/2019/01/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -397,7 +397,7 @@ - 16 + 17 日志 @@ -490,7 +490,7 @@ - 44.8k + 48k diff --git a/archives/2019/02/index.html b/archives/2019/02/index.html index 5add2cbf..df7ab6aa 100644 --- a/archives/2019/02/index.html +++ b/archives/2019/02/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -397,7 +397,7 @@ - 16 + 17 日志 @@ -490,7 +490,7 @@ - 44.8k + 48k diff --git a/archives/2019/03/index.html b/archives/2019/03/index.html index e918e93a..aa445787 100644 --- a/archives/2019/03/index.html +++ b/archives/2019/03/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -502,7 +502,7 @@ - 16 + 17 日志 @@ -595,7 +595,7 @@ - 44.8k + 48k diff --git a/archives/2019/04/index.html b/archives/2019/04/index.html index 1369d778..16910418 100644 --- a/archives/2019/04/index.html +++ b/archives/2019/04/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -432,7 +432,7 @@ - 16 + 17 日志 @@ -525,7 +525,7 @@ - 44.8k + 48k diff --git a/archives/2019/05/index.html b/archives/2019/05/index.html index ccbfda2a..a97e1a0e 100644 --- a/archives/2019/05/index.html +++ b/archives/2019/05/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -325,7 +325,7 @@ @@ -432,7 +432,7 @@ - 16 + 17 日志 @@ -525,7 +525,7 @@ - 44.8k + 48k diff --git a/archives/2019/07/index.html b/archives/2019/07/index.html index 3605fb26..c9ece070 100644 --- a/archives/2019/07/index.html +++ b/archives/2019/07/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -318,6 +318,41 @@ +
+
+ +

+ + + +

+ + + +
+
+ + + + + + + + + + + + + +
@@ -397,7 +432,7 @@ - 16 + 17 日志 @@ -490,7 +525,7 @@ - 44.8k + 48k diff --git a/archives/2019/index.html b/archives/2019/index.html index c59b2f8c..2374192f 100644 --- a/archives/2019/index.html +++ b/archives/2019/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -318,6 +318,41 @@ + + + + + + + + + + + + + + +
@@ -360,7 +395,7 @@ @@ -624,41 +659,6 @@ - - - - - - - - - - - - - - - @@ -716,7 +716,7 @@ - 16 + 17 日志 @@ -809,7 +809,7 @@ - 44.8k + 48k diff --git a/archives/2019/page/2/index.html b/archives/2019/page/2/index.html index 5a2e124f..3ab3cb41 100644 --- a/archives/2019/page/2/index.html +++ b/archives/2019/page/2/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -318,6 +318,41 @@ + + + + + + + + + + + + + + +
@@ -401,7 +436,7 @@ - 16 + 17 日志 @@ -494,7 +529,7 @@ - 44.8k + 48k diff --git a/archives/index.html b/archives/index.html index 2634f245..64749a4d 100644 --- a/archives/index.html +++ b/archives/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -318,6 +318,41 @@ + + + + + + + + + + + + + + +
@@ -360,7 +395,7 @@ @@ -624,41 +659,6 @@ - - - - - - - - - - - - - - - @@ -716,7 +716,7 @@ - 16 + 17 日志 @@ -809,7 +809,7 @@ - 44.8k + 48k diff --git a/archives/page/2/index.html b/archives/page/2/index.html index 1b19b1fb..ddbaf79b 100644 --- a/archives/page/2/index.html +++ b/archives/page/2/index.html @@ -299,7 +299,7 @@ - 嗯..! 目前共计 16 篇日志。 继续努力。 + 嗯..! 目前共计 17 篇日志。 继续努力。 @@ -318,6 +318,41 @@ + + + + + + + + + + + + + + +
@@ -586,7 +621,7 @@ - 16 + 17 日志 @@ -679,7 +714,7 @@ - 44.8k + 48k diff --git a/baidu_urls.txt b/baidu_urls.txt index 9d82fa10..ce618a44 100644 --- a/baidu_urls.txt +++ b/baidu_urls.txt @@ -1,5 +1,5 @@ +https://cool-y.github.io/2019/07/09/afl-first-try/ https://cool-y.github.io/2019/07/01/AFL-first-learn/ https://cool-y.github.io/2019/05/14/pack-and-unpack/ https://cool-y.github.io/2019/05/13/PE-file/ -https://cool-y.github.io/2019/04/21/XIAOMI-UPnP/ -https://cool-y.github.io/2019/04/15/Caving-db-storage/ \ No newline at end of file +https://cool-y.github.io/2019/04/21/XIAOMI-UPnP/ \ No newline at end of file diff --git a/baidusitemap.xml b/baidusitemap.xml index e4c99c05..47f96e51 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -1,14 +1,17 @@ + https://cool-y.github.io/2019/07/09/afl-first-try/ + 2019-07-09 + https://cool-y.github.io/2019/07/01/AFL-first-learn/ + 2019-07-08 + + https://cool-y.github.io/2019/05/14/pack-and-unpack/ 2019-07-01 https://cool-y.github.io/2018/12/25/TCPDUMP%E6%8B%92%E7%BB%9D%E6%9C%8D%E5%8A%A1%E6%94%BB%E5%87%BB%E6%BC%8F%E6%B4%9E/ 2019-07-01 - - https://cool-y.github.io/2019/05/14/pack-and-unpack/ - 2019-05-18 https://cool-y.github.io/2019/05/13/PE-file/ 2019-05-13 @@ -28,10 +31,10 @@ 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-15 - https://cool-y.github.io/2019/02/22/qq%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E5%8A%A0%E5%AF%86%E8%A7%A3%E5%AF%86/ + https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ 2019-04-15 - https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + https://cool-y.github.io/2019/02/22/qq%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E5%8A%A0%E5%AF%86%E8%A7%A3%E5%AF%86/ 2019-04-15 https://cool-y.github.io/2018/12/15/miio-control/ diff --git a/bookmarks/index.html b/bookmarks/index.html index da943f0a..fa20275c 100644 --- a/bookmarks/index.html +++ b/bookmarks/index.html @@ -86,7 +86,7 @@ - + @@ -330,7 +330,7 @@

codeforces  leetcode

工具

-

mitmproxy  msfvenom  shellphish  KALItools

+

mitmproxy  msfvenom  shellphish  KALItools valgrind-内存泄露扫描利器

资源下载

Emoji表情  Apk镜像

@@ -403,7 +403,7 @@ - 16 + 17 日志 @@ -512,7 +512,7 @@ - 44.8k + 48k diff --git a/categories/IOT/index.html b/categories/IOT/index.html index 31f22cf7..2588cd63 100644 --- a/categories/IOT/index.html +++ b/categories/IOT/index.html @@ -456,7 +456,7 @@ - 16 + 17 日志 @@ -549,7 +549,7 @@ - 44.8k + 48k diff --git a/categories/index.html b/categories/index.html index e7f2f144..383490c5 100644 --- a/categories/index.html +++ b/categories/index.html @@ -311,7 +311,7 @@ 目前共计 6 个分类 @@ -369,7 +369,7 @@ - 16 + 17 日志 @@ -462,7 +462,7 @@ - 44.8k + 48k diff --git a/categories/二进制/index.html b/categories/二进制/index.html index 24ce1f9b..1e643557 100644 --- a/categories/二进制/index.html +++ b/categories/二进制/index.html @@ -300,6 +300,32 @@ + + + + + +
@@ -456,7 +482,7 @@ - 16 + 17 日志 @@ -549,7 +575,7 @@ - 44.8k + 48k diff --git a/categories/加密解密/index.html b/categories/加密解密/index.html index 297a14b4..b1c075a5 100644 --- a/categories/加密解密/index.html +++ b/categories/加密解密/index.html @@ -378,7 +378,7 @@ - 16 + 17 日志 @@ -471,7 +471,7 @@ - 44.8k + 48k diff --git a/categories/杂七杂八/index.html b/categories/杂七杂八/index.html index bc88cd79..e2072895 100644 --- a/categories/杂七杂八/index.html +++ b/categories/杂七杂八/index.html @@ -378,7 +378,7 @@ - 16 + 17 日志 @@ -471,7 +471,7 @@ - 44.8k + 48k diff --git a/categories/理论学习/index.html b/categories/理论学习/index.html index 406305b1..0c334d24 100644 --- a/categories/理论学习/index.html +++ b/categories/理论学习/index.html @@ -378,7 +378,7 @@ - 16 + 17 日志 @@ -471,7 +471,7 @@ - 44.8k + 48k diff --git a/categories/顶会论文/index.html b/categories/顶会论文/index.html index e653ff03..653133d4 100644 --- a/categories/顶会论文/index.html +++ b/categories/顶会论文/index.html @@ -430,7 +430,7 @@ - 16 + 17 日志 @@ -523,7 +523,7 @@ - 44.8k + 48k diff --git a/css/main.css b/css/main.css index 89685008..ac7c80f1 100644 --- a/css/main.css +++ b/css/main.css @@ -1943,7 +1943,7 @@ pre .javascript .function { width: 4px; height: 4px; border-radius: 50%; - background: #fbc9ff; + background: #ffb6ff; } .links-of-blogroll { font-size: 13px; diff --git a/index.html b/index.html index f88ca46c..909ac8e5 100644 --- a/index.html +++ b/index.html @@ -296,6 +296,195 @@ +
+ + + +
+ + + + + + + +
+ + + +

+ +

+ + + +
+ + + + + +
+ + + + + + + + 这篇文章是对afl的简单使用,可大致分为黑盒测试和白盒测试两个部分。白盒测试从对目标程序的插桩编译开始,然后使用fuzzer对其模糊测试发现崩溃,最后对测试的代码覆盖率进行评估。黑盒测试则演示得较简略。参考:https://paper.seebug.org/841/#_1 +部署afl + +123456 + ... + +
+ + 阅读全文 » + +
+ + + +
+ + + + + + + + + + +
+ + + + + + + + +
+ +
+
+ + + +
+ + + + + + + + + + +
@@ -395,7 +584,7 @@ - 11.3k 字 + 11.4k 字 @@ -508,7 +697,7 @@

-

+ - - - -
- - - - - - - - - - - -
- - - -
- - - - - - - -
- - - -

- -

- - - -
- - - - - -
- - - - - - - - qq数据库采用简单加密——异或加密数据获取:DENGTA_META.xml—IMEI:867179032952446databases/2685371834.db——数据库文件 -解密方式:明文msg_t 密文msg_Data key:IMEImsg_t = msg_Data[i]^IMEI[i - ... - -
- - 阅读全文 » - -
- - - -
- - - - - - - - - -
@@ -2319,7 +2321,7 @@ WinDbg - 44.8k + 48k diff --git a/page/2/index.html b/page/2/index.html index 58d421a0..6f253f48 100644 --- a/page/2/index.html +++ b/page/2/index.html @@ -296,6 +296,193 @@ +
+ + + +
+ + + + + + + +
+ + + +

+ +

+ + + +
+ + + + + +
+ + + + + + + + qq数据库采用简单加密——异或加密数据获取:DENGTA_META.xml—IMEI:867179032952446databases/2685371834.db——数据库文件 +解密方式:明文msg_t 密文msg_Data key:IMEImsg_t = msg_Data[i]^IMEI[i + ... + +
+ + 阅读全文 » + +
+ + + +
+ + + + + + + + + + +
+ + + + + + + + +
+ +
+
+ + + +
+ + + + + + + + + + +
@@ -1450,7 +1637,7 @@ ettercap嗅探智能设备和网关之间的流量sudo ettercap -i ens33 -T -q - 16 + 17 日志 @@ -1543,7 +1730,7 @@ ettercap嗅探智能设备和网关之间的流量sudo ettercap -i ens33 -T -q - 44.8k + 48k diff --git a/search.xml b/search.xml index 9f960986..5e809085 100644 --- a/search.xml +++ b/search.xml @@ -1,9 +1,9 @@ - <![CDATA[AFL初探]]> - %2F2019%2F07%2F01%2FAFL-first-learn%2F - + <![CDATA[AFL初次实践]]> + %2F2019%2F07%2F09%2Fafl-first-try%2F + 二进制 @@ -13,7 +13,19 @@ - <![CDATA[pack and unpack]]> + <![CDATA[AFL初探]]> + %2F2019%2F07%2F01%2FAFL-first-learn%2F + + + 二进制 + + + AFL + 模糊测试 + + + + <![CDATA[加壳与脱壳]]> %2F2019%2F05%2F14%2Fpack-and-unpack%2F diff --git a/sitemap.xml b/sitemap.xml index a77618e1..385ed63e 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,10 +1,31 @@ + + https://cool-y.github.io/2019/07/09/afl-first-try/ + + 2019-07-09T06:47:08.044Z + + + https://cool-y.github.io/2019/07/01/AFL-first-learn/ - 2019-07-01T12:00:47.564Z + 2019-07-08T06:09:11.627Z + + + + + https://cool-y.github.io/bookmarks/index.html + + 2019-07-01T12:29:27.676Z + + + + + https://cool-y.github.io/2019/05/14/pack-and-unpack/ + + 2019-07-01T12:04:55.244Z @@ -15,13 +36,6 @@ - - https://cool-y.github.io/2019/05/14/pack-and-unpack/ - - 2019-05-18T06:52:27.207Z - - - https://cool-y.github.io/2019/05/13/PE-file/ @@ -43,13 +57,6 @@ - - https://cool-y.github.io/bookmarks/index.html - - 2019-04-22T11:30:25.896Z - - - https://cool-y.github.io/2019/04/15/Caving-db-storage/ @@ -86,14 +93,14 @@ - https://cool-y.github.io/about/index.html + https://cool-y.github.io/2019/03/16/%E5%B0%8F%E7%B1%B3%E5%9B%BA%E4%BB%B6%E5%B7%A5%E5%85%B7mkxqimage/ 2019-04-15T07:35:38.083Z - https://cool-y.github.io/2019/03/16/%E5%B0%8F%E7%B1%B3%E5%9B%BA%E4%BB%B6%E5%B7%A5%E5%85%B7mkxqimage/ + https://cool-y.github.io/about/index.html 2019-04-15T07:35:38.083Z @@ -107,14 +114,14 @@ - https://cool-y.github.io/2019/02/22/qq%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E5%8A%A0%E5%AF%86%E8%A7%A3%E5%AF%86/ + https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ 2019-04-15T07:35:38.082Z - https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + https://cool-y.github.io/2019/02/22/qq%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E5%8A%A0%E5%AF%86%E8%A7%A3%E5%AF%86/ 2019-04-15T07:35:38.082Z diff --git a/tags/AFL/index.html b/tags/AFL/index.html index 7b6785d3..3819555d 100644 --- a/tags/AFL/index.html +++ b/tags/AFL/index.html @@ -300,6 +300,32 @@ + + + + + +
@@ -377,7 +403,7 @@ - 16 + 17 日志 @@ -470,7 +496,7 @@ - 44.8k + 48k diff --git a/tags/CVE/index.html b/tags/CVE/index.html index eb2e4c3f..d1e2b12c 100644 --- a/tags/CVE/index.html +++ b/tags/CVE/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/MiniUPnP/index.html b/tags/MiniUPnP/index.html index 6489e98a..fa74901d 100644 --- a/tags/MiniUPnP/index.html +++ b/tags/MiniUPnP/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/PE/index.html b/tags/PE/index.html index 1763de32..6955bdf5 100644 --- a/tags/PE/index.html +++ b/tags/PE/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/QQ/index.html b/tags/QQ/index.html index 7602ebed..083a3489 100644 --- a/tags/QQ/index.html +++ b/tags/QQ/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/SSH/index.html b/tags/SSH/index.html index 786c5cfe..399343e1 100644 --- a/tags/SSH/index.html +++ b/tags/SSH/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/Samba/index.html b/tags/Samba/index.html index 8ff6fcd9..39280f94 100644 --- a/tags/Samba/index.html +++ b/tags/Samba/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/TCPDUMP/index.html b/tags/TCPDUMP/index.html index 68688ef5..704ac561 100644 --- a/tags/TCPDUMP/index.html +++ b/tags/TCPDUMP/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/USENIX/index.html b/tags/USENIX/index.html index a0de1e4b..086d08d7 100644 --- a/tags/USENIX/index.html +++ b/tags/USENIX/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/index.html b/tags/index.html index 69cb76ae..007256a9 100644 --- a/tags/index.html +++ b/tags/index.html @@ -311,7 +311,7 @@ 目前共计 33 个标签 @@ -369,7 +369,7 @@ - 16 + 17 日志 @@ -462,7 +462,7 @@ - 44.8k + 48k diff --git a/tags/itchat/index.html b/tags/itchat/index.html index a8d4357a..3e7a083d 100644 --- a/tags/itchat/index.html +++ b/tags/itchat/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/miio/index.html b/tags/miio/index.html index 4bf19583..b8fa3cfb 100644 --- a/tags/miio/index.html +++ b/tags/miio/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/python/index.html b/tags/python/index.html index ed0d399a..7ea68e6a 100644 --- a/tags/python/index.html +++ b/tags/python/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/wifi/index.html b/tags/wifi/index.html index 50f0904d..1947faa5 100644 --- a/tags/wifi/index.html +++ b/tags/wifi/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/中间人/index.html b/tags/中间人/index.html index 0f4a9073..e26cbae9 100644 --- a/tags/中间人/index.html +++ b/tags/中间人/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/侧信道攻击/index.html b/tags/侧信道攻击/index.html index f1bbf693..1d1a85ea 100644 --- a/tags/侧信道攻击/index.html +++ b/tags/侧信道攻击/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/取证/index.html b/tags/取证/index.html index 34932bfc..4e28a930 100644 --- a/tags/取证/index.html +++ b/tags/取证/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/复原文件/index.html b/tags/复原文件/index.html index 9e85f160..a35c8a21 100644 --- a/tags/复原文件/index.html +++ b/tags/复原文件/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/密码/index.html b/tags/密码/index.html index 80cc0a2e..e1f0b10a 100644 --- a/tags/密码/index.html +++ b/tags/密码/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/小米/index.html b/tags/小米/index.html index 986a7674..847fe4a1 100644 --- a/tags/小米/index.html +++ b/tags/小米/index.html @@ -429,7 +429,7 @@ - 16 + 17 日志 @@ -522,7 +522,7 @@ - 44.8k + 48k diff --git a/tags/微信/index.html b/tags/微信/index.html index ba1476bf..cfdbbb4b 100644 --- a/tags/微信/index.html +++ b/tags/微信/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/拒绝服务攻击/index.html b/tags/拒绝服务攻击/index.html index c61b2d6d..6e42156f 100644 --- a/tags/拒绝服务攻击/index.html +++ b/tags/拒绝服务攻击/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/数据库/index.html b/tags/数据库/index.html index 789cc43b..a2c46913 100644 --- a/tags/数据库/index.html +++ b/tags/数据库/index.html @@ -403,7 +403,7 @@ - 16 + 17 日志 @@ -496,7 +496,7 @@ - 44.8k + 48k diff --git a/tags/数据挖掘/index.html b/tags/数据挖掘/index.html index 1b777f6a..3b537751 100644 --- a/tags/数据挖掘/index.html +++ b/tags/数据挖掘/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/文件格式/index.html b/tags/文件格式/index.html index dcf4f433..573a52b5 100644 --- a/tags/文件格式/index.html +++ b/tags/文件格式/index.html @@ -403,7 +403,7 @@ - 16 + 17 日志 @@ -496,7 +496,7 @@ - 44.8k + 48k diff --git a/tags/模型实现/index.html b/tags/模型实现/index.html index 47fc4578..bc057329 100644 --- a/tags/模型实现/index.html +++ b/tags/模型实现/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/模糊测试/index.html b/tags/模糊测试/index.html index bad20684..030b3e73 100644 --- a/tags/模糊测试/index.html +++ b/tags/模糊测试/index.html @@ -300,6 +300,32 @@ + + + + + +
@@ -377,7 +403,7 @@ - 16 + 17 日志 @@ -470,7 +496,7 @@ - 44.8k + 48k diff --git a/tags/破解/index.html b/tags/破解/index.html index 68d7da67..6dbb50b3 100644 --- a/tags/破解/index.html +++ b/tags/破解/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/自然语言处理/index.html b/tags/自然语言处理/index.html index ab8053c0..2281f4fd 100644 --- a/tags/自然语言处理/index.html +++ b/tags/自然语言处理/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/访问控制/index.html b/tags/访问控制/index.html index 2d184060..049efd31 100644 --- a/tags/访问控制/index.html +++ b/tags/访问控制/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/路由器/index.html b/tags/路由器/index.html index 2dc1db4d..debe9779 100644 --- a/tags/路由器/index.html +++ b/tags/路由器/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/远程执行/index.html b/tags/远程执行/index.html index 3c89f074..f01c5f59 100644 --- a/tags/远程执行/index.html +++ b/tags/远程执行/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/逆向/index.html b/tags/逆向/index.html index 87343838..94cfd741 100644 --- a/tags/逆向/index.html +++ b/tags/逆向/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k diff --git a/tags/重放攻击/index.html b/tags/重放攻击/index.html index 72cfe508..6aca157d 100644 --- a/tags/重放攻击/index.html +++ b/tags/重放攻击/index.html @@ -377,7 +377,7 @@ - 16 + 17 日志 @@ -470,7 +470,7 @@ - 44.8k + 48k