Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fuzzer in _hybrid_ mode. It basically couples Echidna with the [Maat](https://gi

### Usage

Hybrid echidna can be used seamlessly in place of regular Echidna by replacing `echidna-test` with `hybrid-echidna` in your Echidna command line.
Hybrid echidna can be used seamlessly in place of regular Echidna by replacing `echidna` with `hybrid-echidna` in your Echidna command line.
For example:

```
Expand Down
4 changes: 2 additions & 2 deletions optik/echidna/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,13 @@ def run_echidna_campaign(
"""Run an echidna fuzzing campaign

:param args: arguments to pass to echidna
:return: the exit value returned by invoking `echidna-test`
:return: the exit value returned by invoking `echidna`
"""
# Show for how long echidna runs in terminal display
display.start_echidna_task_timer()

# Build back echidna command line
cmdline = ["echidna-test"]
cmdline = ["echidna"]
cmdline += args.FILES
# Add tx sender(s)
if args.sender:
Expand Down