Files
iknowyou/back/internal/registry/registry.go
2026-04-11 21:29:59 +02:00

35 lines
1.2 KiB
Go

package registry
import (
"github.com/anotherhadi/iknowyou/internal/tools"
breachdirectory "github.com/anotherhadi/iknowyou/internal/tools/breachdirectory"
ghunt "github.com/anotherhadi/iknowyou/internal/tools/ghunt"
crtsh "github.com/anotherhadi/iknowyou/internal/tools/crtsh"
digtool "github.com/anotherhadi/iknowyou/internal/tools/dig"
githubrecon "github.com/anotherhadi/iknowyou/internal/tools/github-recon"
gravatarrecon "github.com/anotherhadi/iknowyou/internal/tools/gravatar-recon"
ipinfotool "github.com/anotherhadi/iknowyou/internal/tools/ipinfo"
leakcheck "github.com/anotherhadi/iknowyou/internal/tools/leakcheck"
maigret "github.com/anotherhadi/iknowyou/internal/tools/maigret"
userscanner "github.com/anotherhadi/iknowyou/internal/tools/user-scanner"
wappalyzer "github.com/anotherhadi/iknowyou/internal/tools/wappalyzer"
whoistool "github.com/anotherhadi/iknowyou/internal/tools/whois"
whoisfreaks "github.com/anotherhadi/iknowyou/internal/tools/whoisfreaks"
)
var Factories = []func() tools.ToolRunner{
userscanner.New,
githubrecon.New,
whoistool.New,
digtool.New,
ipinfotool.New,
gravatarrecon.New,
whoisfreaks.New,
maigret.New,
ghunt.New,
leakcheck.New,
crtsh.New,
breachdirectory.New,
wappalyzer.New,
}