An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# go-brute [![Go Reference](https://pkg.go.dev/badge/github.com/abdullah2993/go-brute.svg)](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
```