This commit is contained in:
Hadi
2026-04-06 15:12:34 +02:00
commit 4989225671
117 changed files with 11454 additions and 0 deletions

View 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,
}