Skip to content

A bruteforce combination generator for a specific character set

License

Notifications You must be signed in to change notification settings

abdullah2993/go-brute

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-brute Go Reference

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

About

A bruteforce combination generator for a specific character set

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages