Skip to content

deed02392/weakpass

Repository files navigation

Gobrute.

Gobrute is a bruteforce framework in golang,can bruteforce almost everything(ssh, redis, mysql, mongodb ...)with simple config。



Features

  • Easy to config, Easy to use, Easy to extend.
  • Support ssh, redis, mysql ... on ground.
  • Easy to implement your own bruteforce plugin. github-bruteforce

Usage

import (
    "github.com/gushitong/gobrute"
)

	config := &BruteConfig{
                Dictpath:    "dict/userpass.txt",
                Addrs:     []string{"redis://127.0.0.1:6379"},
        }

        c, err := NewClient(DefaultRedisBruter(), config)

        c.Start()

        for {
                if !c.IsFinished() {
                        time.Sleep(200)
                } else {
                        break
                }
        }

        c.GetResult()

About

Bruteforce framework with Go.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages