-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
augment QEMU to support whole-system fuzzing in AFL.
- Loading branch information
1 parent
4c01f8a
commit 8e914aa
Showing
9 changed files
with
352 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
extern const char *aflFile; | ||
extern unsigned long aflPanicAddr; | ||
extern unsigned long aflDmesgAddr; | ||
|
||
extern int aflEnableTicks; | ||
extern int aflStart; | ||
extern int aflGotLog; | ||
extern target_ulong afl_start_code, afl_end_code; | ||
extern unsigned char afl_fork_child; | ||
extern int afl_wants_cpu_to_stop; | ||
|
||
void afl_setup(void); | ||
void afl_forkserver(CPUArchState*); | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.