Skip to content

Commit

Permalink
same order
Browse files Browse the repository at this point in the history
  • Loading branch information
0vercl0k committed May 7, 2024
1 parent 88cd2ca commit 6ca7226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The server is basically the brain and keeps track of all the state: the aggrega
This is how you might choose to launch a server node:

```text
(base) c:\work\codes\wtf\targets\hevd>..\..\src\build\wtf.exe master --max_len=1028 --runs=10000000 --target . --address tcp://192.168.2.41/ --name hevd
(base) c:\work\codes\wtf\targets\hevd>..\..\src\build\wtf.exe master --name --max_len=1028 --runs=10000000 --target . --address tcp://192.168.2.41/
```

The `max_len` option is used to limit the size of the generated test-case, `runs` is the number of test-cases it will generate, `address` specify where *wtf* needs to be listening on, `target` is a directory with the directory tree we described above (the user can also choose to override those directories with `--input` / `--output` / `--crashes`) and `name` specifies your fuzzing module name so that the master can invoke your generator function if you have defined one.
Expand Down Expand Up @@ -88,7 +88,7 @@ To minset a corpus, you need to use a server node and as many client nodes as yo
This is how you would minset the corpus in `outputs` into the `minset` directory (also highlights how you can override the `inputs` and `outputs` directories):

```
..\..\src\build\wtf.exe master --max_len=1028 --runs=0 --target . --inputs=outputs --outputs=minset --name hevd
..\..\src\build\wtf.exe master --name hevd --max_len=1028 --runs=0 --target . --inputs=outputs --outputs=minset
```

<p align='center'>
Expand Down

0 comments on commit 6ca7226

Please sign in to comment.