https://github.com/abdullah2993/go-brute
A bruteforce combination generator for a specific character set
https://github.com/abdullah2993/go-brute
brute-force brute-force-algorithm bruteforce
Last synced: 3 months ago
JSON representation
A bruteforce combination generator for a specific character set
- Host: GitHub
- URL: https://github.com/abdullah2993/go-brute
- Owner: abdullah2993
- License: mit
- Created: 2018-08-24T21:44:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-04-25T15:09:38.000Z (about 4 years ago)
- Last Synced: 2024-12-31T22:25:59.075Z (5 months ago)
- Topics: brute-force, brute-force-algorithm, bruteforce
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-brute [](https://pkg.go.dev/github.com/abdullah2993/go-brute)
A bruteforce combination generator for a specific character set## Example
```
characterSer := []rune("AB")
minLen := 1
maxLen := 2
b, _ := Brute(characterSer, minLen, maxLen, 4)
for combination := range b {
fmt.Println(combination)
}
// Output:
// A
// B
// AA
// AB
// BA
// BB
```