├── .gitignore ├── Dockerfile ├── README.md ├── cvePaths.txt ├── defaultPaths.txt ├── dev ├── exploitdb_asp-lfi.txt ├── exploitdb_cgi-lfi.txt ├── exploitdb_jsp-lfi.txt ├── exploitdb_perl-lfi.txt ├── exploitdb_php-lfi.txt ├── exploitdb_win-lfi.txt └── sqlPaths.txt ├── exploitdb_all.txt ├── exploitdb_asp.txt ├── exploitdb_aspx.txt ├── exploitdb_cfm.txt ├── exploitdb_cgi.txt ├── exploitdb_jsp.txt ├── exploitdb_others.txt ├── exploitdb_perl.txt ├── exploitdb_php.txt ├── goreleaser.yml ├── msfPaths.txt ├── msfPorts.csv ├── packetstormPaths.txt ├── pathBrute.go ├── pathbrute.sqlite └── webappPaths.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/README.md -------------------------------------------------------------------------------- /cvePaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/cvePaths.txt -------------------------------------------------------------------------------- /defaultPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/defaultPaths.txt -------------------------------------------------------------------------------- /dev/exploitdb_asp-lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/exploitdb_asp-lfi.txt -------------------------------------------------------------------------------- /dev/exploitdb_cgi-lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/exploitdb_cgi-lfi.txt -------------------------------------------------------------------------------- /dev/exploitdb_jsp-lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/exploitdb_jsp-lfi.txt -------------------------------------------------------------------------------- /dev/exploitdb_perl-lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/exploitdb_perl-lfi.txt -------------------------------------------------------------------------------- /dev/exploitdb_php-lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/exploitdb_php-lfi.txt -------------------------------------------------------------------------------- /dev/exploitdb_win-lfi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/exploitdb_win-lfi.txt -------------------------------------------------------------------------------- /dev/sqlPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/dev/sqlPaths.txt -------------------------------------------------------------------------------- /exploitdb_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_all.txt -------------------------------------------------------------------------------- /exploitdb_asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_asp.txt -------------------------------------------------------------------------------- /exploitdb_aspx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_aspx.txt -------------------------------------------------------------------------------- /exploitdb_cfm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_cfm.txt -------------------------------------------------------------------------------- /exploitdb_cgi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_cgi.txt -------------------------------------------------------------------------------- /exploitdb_jsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_jsp.txt -------------------------------------------------------------------------------- /exploitdb_others.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_others.txt -------------------------------------------------------------------------------- /exploitdb_perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_perl.txt -------------------------------------------------------------------------------- /exploitdb_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/exploitdb_php.txt -------------------------------------------------------------------------------- /goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/goreleaser.yml -------------------------------------------------------------------------------- /msfPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/msfPaths.txt -------------------------------------------------------------------------------- /msfPorts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/msfPorts.csv -------------------------------------------------------------------------------- /packetstormPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/packetstormPaths.txt -------------------------------------------------------------------------------- /pathBrute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/pathBrute.go -------------------------------------------------------------------------------- /pathbrute.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/pathbrute.sqlite -------------------------------------------------------------------------------- /webappPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milo2012/pathbrute/HEAD/webappPaths.txt --------------------------------------------------------------------------------