Skip to content

Commit

Permalink
adding cmd arg workers
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRoute committed Feb 14, 2024
1 parent 223b9c4 commit cba2bab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ What does it do?

## Usage
```
Usage of /tmp/go-build262560291/b001/exe/concurrency:
Usage of /tmp/go-build3838391229/b001/exe/concurrency:
-address string
IP address to bind the web UI server to. (default "127.0.0.1")
-dictionary string
Expand All @@ -30,6 +30,8 @@ What does it do?
shodan API key
-verbose
Verbosity
-workers int
Default is 0, if workers is less than or equal than zero, it will be auto scaled to the number of logical CPUs usable by the current process.
```

## Running in Docker
Expand Down
4 changes: 2 additions & 2 deletions cmd/bruter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ var app config.AppConfig
var session *scs.SessionManager

var (
Domain = flag.String("domain", "", "domain to scan")
Apikey = flag.String("shodan", "", "shodan API key")
Domain = flag.String("domain", "", "Domain to scan")
Apikey = flag.String("shodan", "", "Dhodan API key")
Address = flag.String("address", "127.0.0.1", "IP address to bind the web UI server to.")
Extension = flag.String("extension", "js", "File extension.")
Dictionary = flag.String("dictionary", "db/apache-list", "File to use for enumeration.")
Expand Down

0 comments on commit cba2bab

Please sign in to comment.