Skip to content

Commit

Permalink
📘 Update default concurrency to 25 (depends on escape lists)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwisiswant0 committed Sep 14, 2020
1 parent 2a14dac commit 4cede5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ This will display help for the tool. Here are all the switches it supports.
| -d, --data | Define request data |
| -H, --header | Pass custom header to target |
| -x, --proxy | Use specified proxy to fuzz |
| -c, --concurrent | Set the concurrency level _(default: 20)_ |
| -c, --concurrent | Set the concurrency level _(default: 25)_ |
| -s, --silent | Silent mode |
| -v, --verbose | Verbose mode |
| -V, --version | Show current CRLFuzz version |
Expand Down Expand Up @@ -158,10 +158,10 @@ Using a proxy, proxy string can be specified with a `protocol://` prefix to spec

### Concurrency

Concurrency is the number of fuzzing at the same time. Default value CRLFuzz provide is 20, you can change it by using `-c` flag.
Concurrency is the number of fuzzing at the same time. Default value CRLFuzz provide is `25`, you can change it by using `-c` flag.

```bash
▶ crlfuzz -l /path/to/urls.txt -c 25
▶ crlfuzz -l /path/to/urls.txt -c 50
```

### Silent
Expand Down Expand Up @@ -230,4 +230,4 @@ If you are still confused or found a bug, please [open the issue](https://github

## Version

**Current version is 0.0.3** and still development.
**Current version is 1.2.0** and still development.
4 changes: 2 additions & 2 deletions internal/runner/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ func init() {
flag.StringVar(&o.Proxy, "x", "", "")
flag.StringVar(&o.Proxy, "proxy", "", "")

flag.IntVar(&o.Concurrency, "c", 20, "")
flag.IntVar(&o.Concurrency, "concurrent", 20, "")
flag.IntVar(&o.Concurrency, "c", 25, "")
flag.IntVar(&o.Concurrency, "concurrent", 25, "")

flag.BoolVar(&o.Silent, "s", false, "")
flag.BoolVar(&o.Silent, "silent", false, "")
Expand Down

0 comments on commit 4cede5f

Please sign in to comment.