-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: degrigis <[email protected]>
- Loading branch information
Showing
3 changed files
with
52 additions
and
4 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,14 +1,17 @@ | ||
# 🚀 Advanced Topics | ||
|
||
|
||
# State Plugins | ||
|
||
# Memory Model | ||
|
||
# Partial Concrete Storage | ||
|
||
# Multi-Transactions Execution | ||
|
||
# Chain Together Contracts Execution | ||
# Keccak256 | ||
|
||
# External Calls | ||
|
||
|
||
|
||
# State Plugins |
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,22 @@ | ||
# 🕹️ Options | ||
|
||
greed supports many option to tweak the behavior of symbolic execution. | ||
These global options should be activated or de-activated before creating an entry state. | ||
|
||
| Option Name | Default | Desc | | ||
|-------------------|----------|----------| | ||
| options.GREEDY_SHA | False | calculate the result of the `KECCAK256` whenever the input buffer is fully concrete and has one solution | | ||
| options.LAZY_SOLVES | False | check_sat() every time a new SimState is generated | | ||
|
||
|
||
|
||
options.GREEDY_SHA = True | ||
options.LAZY_SOLVES = False | ||
options.STATE_INSPECT = False | ||
options.MAX_SHA_SIZE = 300 | ||
options.OPTIMISTIC_CALL_RESULTS = True | ||
options.DEFAULT_EXTCODESIZE = True | ||
options.DEFAULT_CREATE2_RESULT_ADDRESS = True | ||
options.DEFAULT_CREATE_RESULT_ADDRESS = True | ||
options.MATH_CONCRETIZE_SYMBOLIC_EXP_EXP = True | ||
options.MATH_CONCRETIZE_SYMBOLIC_EXP_BASE = True |