fix some typos in first two sections#25
Open
shiheyuan wants to merge 1 commit intohardenedlinux:masterfrom
Open
fix some typos in first two sections#25shiheyuan wants to merge 1 commit intohardenedlinux:masterfrom
shiheyuan wants to merge 1 commit intohardenedlinux:masterfrom
Conversation
Bins94
reviewed
Mar 17, 2020
| ## Brief | ||
| ## Overview | ||
|
|
||
| This document will introduce some features or design of customizing fuzzer. Firstly, most of fuzzer implemented its own Genetic Algorithm( GA). Some features can be classified to one of GA component. For example, the optimizing of generate, mutate and crossover. Other features, such as special feedback or satifying deep nested condition, is strongly depend on what project you fuzz, although these problem is very common in real-world project. |
Contributor
There was a problem hiding this comment.
Please remain the format of "( ***)".
Bins94
reviewed
Mar 17, 2020
Comment on lines
+10
to
11
| In most fuzzers, GA is the engine of evolving testcase. For different purposes, the design of GA's components can be quite different. | ||
|
|
Contributor
There was a problem hiding this comment.
Please keep two empty line before title and one empty line after.
| 3. Manually write manner: hard-code some special inputs or enum inputs.( Syzkaller) | ||
| 4. Extract input from real-world program( Moonshine). | ||
| In evolutionary programming, if mutation and generating only base on random inputs, that fuzzer will perform badly. Useful information help to reduce the search space of evolving the testcase you want. Generally, these following information can benefit mutating or generating: | ||
| 1. symbolic execution: static analysis target, deriver which inputs are useful. (KLEE) |
Contributor
There was a problem hiding this comment.
static analyse( should be a vt.) targeted project, right?
| 3. Manually write manner: hard-code some special inputs or enum inputs.( Syzkaller) | ||
| 4. Extract input from real-world program( Moonshine). | ||
| In evolutionary programming, if mutation and generating only base on random inputs, that fuzzer will perform badly. Useful information help to reduce the search space of evolving the testcase you want. Generally, these following information can benefit mutating or generating: | ||
| 1. symbolic execution: static analysis target, deriver which inputs are useful. (KLEE) |
Contributor
There was a problem hiding this comment.
Keep all list like:
- symbolic execution: static analysis target, deriver which inputs are useful.( KLEE)
"deriver" should be "derive"
| #### state | ||
|
|
||
| 1. Symbolic execution: static analyse call-stack input, weight them base on its CFG | ||
| 1. Symbolic execution: static analysis call-stack input, weight them base on its CFG |
Contributor
There was a problem hiding this comment.
static analyse( should be vt.) call-stack inputs, right?
| ## Brief | ||
| ## Overview | ||
|
|
||
| This document will introduce some features or design of customizing fuzzer. Firstly, most of fuzzer implemented its own Genetic Algorithm( GA). Some features can be classified to one of GA component. For example, the optimizing of generate, mutate and crossover. Other features, such as special feedback or satifying deep nested condition, is strongly depend on what project you fuzz, although these problem is very common in real-world project. |
Contributor
There was a problem hiding this comment.
Should be "these problems are very common in real-world projects.", right?
Contributor
|
Hi, @shiheyuan , could you modify it and send again? Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.