mirror of
https://github.com/anotherhadi/iknowyou.git
synced 2026-04-12 00:47:26 +02:00
init
This commit is contained in:
32
back/internal/registry/registry.go
Normal file
32
back/internal/registry/registry.go
Normal file
@@ -0,0 +1,32 @@
|
||||
package registry
|
||||
|
||||
import (
|
||||
"github.com/anotherhadi/iknowyou/internal/tools"
|
||||
breachdirectory "github.com/anotherhadi/iknowyou/internal/tools/breachdirectory"
|
||||
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,
|
||||
leakcheck.New,
|
||||
crtsh.New,
|
||||
breachdirectory.New,
|
||||
wappalyzer.New,
|
||||
}
|
||||
Reference in New Issue
Block a user