├── LICENSE ├── README.md ├── cname ├── README.md └── main.go ├── dnsdig ├── README.md └── main.go ├── getdomain └── README.md ├── getparams ├── README.md └── main.go ├── getpath ├── README.md └── main.go ├── spfvulnscan ├── README.md └── main.go ├── test └── lol ├── urinteresting ├── README.md └── main.go └── urlprobe ├── README.md └── main.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/README.md -------------------------------------------------------------------------------- /cname/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/cname/README.md -------------------------------------------------------------------------------- /cname/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/cname/main.go -------------------------------------------------------------------------------- /dnsdig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/dnsdig/README.md -------------------------------------------------------------------------------- /dnsdig/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/dnsdig/main.go -------------------------------------------------------------------------------- /getdomain/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /getparams/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /getparams/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/getparams/main.go -------------------------------------------------------------------------------- /getpath/README.md: -------------------------------------------------------------------------------- 1 | # GetPath 2 | 3 | -------------------------------------------------------------------------------- /getpath/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/getpath/main.go -------------------------------------------------------------------------------- /spfvulnscan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/spfvulnscan/README.md -------------------------------------------------------------------------------- /spfvulnscan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/spfvulnscan/main.go -------------------------------------------------------------------------------- /test/lol: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /urinteresting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/urinteresting/README.md -------------------------------------------------------------------------------- /urinteresting/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/urinteresting/main.go -------------------------------------------------------------------------------- /urlprobe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/urlprobe/README.md -------------------------------------------------------------------------------- /urlprobe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ndianl33t/1ndi-hacks/HEAD/urlprobe/main.go --------------------------------------------------------------------------------