This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5aa7357
commit e26bddf
Showing
2 changed files
with
6 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Frida API Fuzzer | ||
|
||
> v1.0 Copyright (C) 2019 Andrea Fioraldi <[email protected]> | ||
> v1.1 Copyright (C) 2019 Andrea Fioraldi <[email protected]> | ||
> | ||
> Released under the Apache License v2.0 | ||
This experimetal fuzzer is meant to be used for API in-memory fuzzing. | ||
|
@@ -79,6 +79,9 @@ The callback `fuzz.init_callback` can be set to execute code when the fuzzer is | |
</tr> | ||
</table> | ||
|
||
If you don't specify the output folder, a temp folder is created under /tmp. | ||
If you don't specify the folder with the initial seed, an uninformed seed `0000` is used as starting seed. | ||
|
||
Running `./frida-fuzzer -spawn ./tests/test_linux64` you will see something like the following status screen on your terminal: | ||
|
||
``` | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
""" | ||
|
||
__version__ = "1.0" | ||
__version__ = "1.1" | ||
|
||
import frida | ||
import base64 | ||
|
e26bddf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great job!