├── .gitignore ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── config └── projectdiscovery.spc ├── docs ├── index.md └── tables │ ├── projectdiscovery_asnmap.md │ ├── projectdiscovery_cdncheck.md │ ├── projectdiscovery_chaos.md │ ├── projectdiscovery_cloudlist.md │ ├── projectdiscovery_dnsx.md │ ├── projectdiscovery_httpx.md │ ├── projectdiscovery_naabu.md │ ├── projectdiscovery_subfinder.md │ └── projectdiscovery_tlsx.md ├── go.mod ├── go.sum ├── main.go └── projectdiscovery ├── connection_config.go ├── plugin.go ├── table_projectdiscovery_asnmap.go ├── table_projectdiscovery_cdncheck.go ├── table_projectdiscovery_chaos.go ├── table_projectdiscovery_cloudlist.go ├── table_projectdiscovery_dnsx.go ├── table_projectdiscovery_httpx.go ├── table_projectdiscovery_naabu.go ├── table_projectdiscovery_subfinder.go └── table_projectdiscovery_tlsx.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/README.md -------------------------------------------------------------------------------- /config/projectdiscovery.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/config/projectdiscovery.spc -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_asnmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_asnmap.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_cdncheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_cdncheck.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_chaos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_chaos.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_cloudlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_cloudlist.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_dnsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_dnsx.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_httpx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_httpx.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_naabu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_naabu.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_subfinder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_subfinder.md -------------------------------------------------------------------------------- /docs/tables/projectdiscovery_tlsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/docs/tables/projectdiscovery_tlsx.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/main.go -------------------------------------------------------------------------------- /projectdiscovery/connection_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/connection_config.go -------------------------------------------------------------------------------- /projectdiscovery/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/plugin.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_asnmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_asnmap.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_cdncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_cdncheck.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_chaos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_chaos.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_cloudlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_cloudlist.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_dnsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_dnsx.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_httpx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_httpx.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_naabu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_naabu.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_subfinder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_subfinder.go -------------------------------------------------------------------------------- /projectdiscovery/table_projectdiscovery_tlsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/steampipe-plugin-projectdiscovery/HEAD/projectdiscovery/table_projectdiscovery_tlsx.go --------------------------------------------------------------------------------