├── LICENSE ├── Makefile ├── README.md ├── cmd └── root.go ├── config ├── Prints.go ├── ReadandWrite.go ├── Request.go ├── bar.go ├── config.go ├── flag.go ├── judgment.go └── scan.go ├── crawler └── crawler.go ├── default └── default.ini ├── dic ├── asp.txt ├── aspx.txt ├── dicc.txt ├── fuzz.txt ├── jsp.txt ├── php.txt ├── test.txt └── user-agents.txt ├── go.mod ├── go.sum ├── image ├── .DS_Store ├── image-20221109115906372.png ├── image-20221109115936681.png ├── image-20230309112038689.png ├── image-20230310092627705.png ├── image-20230320095658867.png ├── image-20230320100018765.png └── image-20230626100721537.png ├── main.go ├── proxy.txt └── url.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/README.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/cmd/root.go -------------------------------------------------------------------------------- /config/Prints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/Prints.go -------------------------------------------------------------------------------- /config/ReadandWrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/ReadandWrite.go -------------------------------------------------------------------------------- /config/Request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/Request.go -------------------------------------------------------------------------------- /config/bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/bar.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/config.go -------------------------------------------------------------------------------- /config/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/flag.go -------------------------------------------------------------------------------- /config/judgment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/judgment.go -------------------------------------------------------------------------------- /config/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/config/scan.go -------------------------------------------------------------------------------- /crawler/crawler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/crawler/crawler.go -------------------------------------------------------------------------------- /default/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/default/default.ini -------------------------------------------------------------------------------- /dic/asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/asp.txt -------------------------------------------------------------------------------- /dic/aspx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/aspx.txt -------------------------------------------------------------------------------- /dic/dicc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/dicc.txt -------------------------------------------------------------------------------- /dic/fuzz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/fuzz.txt -------------------------------------------------------------------------------- /dic/jsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/jsp.txt -------------------------------------------------------------------------------- /dic/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/php.txt -------------------------------------------------------------------------------- /dic/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/test.txt -------------------------------------------------------------------------------- /dic/user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/dic/user-agents.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/go.sum -------------------------------------------------------------------------------- /image/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/.DS_Store -------------------------------------------------------------------------------- /image/image-20221109115906372.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20221109115906372.png -------------------------------------------------------------------------------- /image/image-20221109115936681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20221109115936681.png -------------------------------------------------------------------------------- /image/image-20230309112038689.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20230309112038689.png -------------------------------------------------------------------------------- /image/image-20230310092627705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20230310092627705.png -------------------------------------------------------------------------------- /image/image-20230320095658867.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20230320095658867.png -------------------------------------------------------------------------------- /image/image-20230320100018765.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20230320100018765.png -------------------------------------------------------------------------------- /image/image-20230626100721537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/image/image-20230626100721537.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/main.go -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/proxy.txt -------------------------------------------------------------------------------- /url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corunb/Dirscan/HEAD/url.txt --------------------------------------------------------------------------------