Skip to content
This repository was archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
andreafioraldi committed Feb 27, 2020
1 parent 93b7566 commit 3bd70a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Frida API Fuzzer

> v1.3 Copyright (C) 2020 Andrea Fioraldi <andreafioraldi@gmail.com>
> v1.4 Copyright (C) 2020 Andrea Fioraldi <andreafioraldi@gmail.com>
>
> Released under the Apache License v2.0
Expand Down
2 changes: 1 addition & 1 deletion frida-fuzzer
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"""

__version__ = "1.3"
__version__ = "1.4"

import frida
import base64
Expand Down
5 changes: 3 additions & 2 deletions fuzz/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
*/

//exports.MAP_SIZE = 65536; // 2^16, AFL default
exports.MAP_SIZE = 16384; // 2^14, small APIs doesn't require a large map
exports.MAP_SIZE = 32768; // 2^15, small APIs doesn't require a large map
//exports.MAP_SIZE = 16384; // 2^14, small APIs doesn't require a large map

exports.MAX_FILE = 1024*6;
// after timeout abort fuzzing
exports.TIMEOUT = 1000; // 1 seconds
exports.TIMEOUT = 10*1000; // 10 seconds

exports.HAVOC_STACK_POW2 = 7;

Expand Down

0 comments on commit 3bd70a3

Please # to comment.