├── .gitignore ├── Apis └── Apis.go ├── Config └── Config.go ├── README.md ├── example_config.json ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | hashes_test.txt 3 | /bin/* -------------------------------------------------------------------------------- /Apis/Apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/Apis/Apis.go -------------------------------------------------------------------------------- /Config/Config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/Config/Config.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/README.md -------------------------------------------------------------------------------- /example_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/example_config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattnotmax/hash_hunter/HEAD/main.go --------------------------------------------------------------------------------