├── .gitignore ├── Dorks └── dorks.txt ├── LICENSE ├── README.md ├── go.mod └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled binaries 2 | *.exe 3 | Git-Secret -------------------------------------------------------------------------------- /Dorks/dorks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daffainfo/Git-Secret/HEAD/Dorks/dorks.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daffainfo/Git-Secret/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daffainfo/Git-Secret/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/daffainfo/Git-Secret 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daffainfo/Git-Secret/HEAD/main.go --------------------------------------------------------------------------------