├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql.yaml │ ├── dockerhub-push.yaml │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yaml ├── .lefthook.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cmd └── xsubfind3r │ └── main.go ├── go.mod ├── go.sum ├── internal ├── configuration │ └── configuration.go ├── input │ └── input.go └── output │ └── file.go └── pkg └── xsubfind3r ├── sources ├── anubis │ └── anubis.go ├── bevigil │ └── bevigil.go ├── builtwith │ └── builtwith.go ├── censys │ └── censys.go ├── certificatedetails │ └── certificatedetails.go ├── certspotter │ └── certspotter.go ├── chaos │ └── chaos.go ├── commoncrawl │ └── commoncrawl.go ├── crtsh │ └── crtsh.go ├── driftnet │ └── driftnet.go ├── fullhunt │ └── fullhunt.go ├── github │ ├── github.go │ └── tokenmanager.go ├── hackertarget │ └── hackertarget.go ├── intelx │ └── intelx.go ├── leakix │ └── leakix.go ├── otx │ └── otx.go ├── securitytrails │ └── securitytrails.go ├── shodan │ └── shodan.go ├── sources.go ├── subdomaincenter │ └── subdomaincenter.go ├── urlscan │ └── urlscan.go ├── virustotal │ └── virustotal.go └── wayback │ └── wayback.go └── xsubfind3r.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/dockerhub-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.github/workflows/dockerhub-push.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IDE stuff 2 | .vscode 3 | 4 | # Binaries 5 | bin -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.lefthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/.lefthook.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/README.md -------------------------------------------------------------------------------- /cmd/xsubfind3r/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/cmd/xsubfind3r/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/go.sum -------------------------------------------------------------------------------- /internal/configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/internal/configuration/configuration.go -------------------------------------------------------------------------------- /internal/input/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/internal/input/input.go -------------------------------------------------------------------------------- /internal/output/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/internal/output/file.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/anubis/anubis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/anubis/anubis.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/bevigil/bevigil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/bevigil/bevigil.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/builtwith/builtwith.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/builtwith/builtwith.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/censys/censys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/censys/censys.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/certificatedetails/certificatedetails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/certificatedetails/certificatedetails.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/certspotter/certspotter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/certspotter/certspotter.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/chaos/chaos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/chaos/chaos.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/commoncrawl/commoncrawl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/commoncrawl/commoncrawl.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/crtsh/crtsh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/crtsh/crtsh.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/driftnet/driftnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/driftnet/driftnet.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/fullhunt/fullhunt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/fullhunt/fullhunt.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/github/github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/github/github.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/github/tokenmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/github/tokenmanager.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/hackertarget/hackertarget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/hackertarget/hackertarget.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/intelx/intelx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/intelx/intelx.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/leakix/leakix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/leakix/leakix.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/otx/otx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/otx/otx.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/securitytrails/securitytrails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/securitytrails/securitytrails.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/shodan/shodan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/shodan/shodan.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/sources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/sources.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/subdomaincenter/subdomaincenter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/subdomaincenter/subdomaincenter.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/urlscan/urlscan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/urlscan/urlscan.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/virustotal/virustotal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/virustotal/virustotal.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/sources/wayback/wayback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/sources/wayback/wayback.go -------------------------------------------------------------------------------- /pkg/xsubfind3r/xsubfind3r.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hueristiq/xsubfind3r/HEAD/pkg/xsubfind3r/xsubfind3r.go --------------------------------------------------------------------------------