├── README.md ├── dns ├── README.md └── enumeration │ ├── 200k-dns.txt │ ├── README.md │ └── recipe.yml ├── http ├── README.md ├── enumeration │ ├── README.md │ ├── dictionary.txt │ └── recipe.yml ├── ms-exchange │ ├── README.md │ ├── ews.yml │ ├── owa.interactive.yml │ └── owa.yml ├── nas │ └── terramaster │ │ ├── README.md │ │ └── recipe.yml ├── vulnerabilities │ ├── CVE-2023-46805 │ │ ├── README.md │ │ ├── payloads.txt │ │ └── recipe.yml │ ├── lfi │ │ ├── README.md │ │ ├── dictionary.txt │ │ └── recipe.yml │ └── xss │ │ ├── README.md │ │ ├── dictionary.txt │ │ └── recipe.yml └── wordpress │ ├── README.md │ ├── wp-login.yml │ └── xmlrpc.yml ├── wifi ├── README.md ├── macos │ ├── README.md │ └── recipe.yml └── probable-v2-wpa-top4800.txt └── zip ├── README.md └── recipe.yml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /dns/README.md: -------------------------------------------------------------------------------- 1 | DNS related recipes. -------------------------------------------------------------------------------- /dns/enumeration/200k-dns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/dns/enumeration/200k-dns.txt -------------------------------------------------------------------------------- /dns/enumeration/README.md: -------------------------------------------------------------------------------- 1 | Performs common DNS subdomain enumeration. -------------------------------------------------------------------------------- /dns/enumeration/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/dns/enumeration/recipe.yml -------------------------------------------------------------------------------- /http/README.md: -------------------------------------------------------------------------------- 1 | HTTP related recipes. -------------------------------------------------------------------------------- /http/enumeration/README.md: -------------------------------------------------------------------------------- 1 | Performs common web files and folders enumeration. -------------------------------------------------------------------------------- /http/enumeration/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/enumeration/dictionary.txt -------------------------------------------------------------------------------- /http/enumeration/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/enumeration/recipe.yml -------------------------------------------------------------------------------- /http/ms-exchange/README.md: -------------------------------------------------------------------------------- 1 | Microsoft Exchange related recipes. -------------------------------------------------------------------------------- /http/ms-exchange/ews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/ms-exchange/ews.yml -------------------------------------------------------------------------------- /http/ms-exchange/owa.interactive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/ms-exchange/owa.interactive.yml -------------------------------------------------------------------------------- /http/ms-exchange/owa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/ms-exchange/owa.yml -------------------------------------------------------------------------------- /http/nas/terramaster/README.md: -------------------------------------------------------------------------------- 1 | This recipe targets Terramaster NAS web interface. -------------------------------------------------------------------------------- /http/nas/terramaster/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/nas/terramaster/recipe.yml -------------------------------------------------------------------------------- /http/vulnerabilities/CVE-2023-46805/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/CVE-2023-46805/README.md -------------------------------------------------------------------------------- /http/vulnerabilities/CVE-2023-46805/payloads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/CVE-2023-46805/payloads.txt -------------------------------------------------------------------------------- /http/vulnerabilities/CVE-2023-46805/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/CVE-2023-46805/recipe.yml -------------------------------------------------------------------------------- /http/vulnerabilities/lfi/README.md: -------------------------------------------------------------------------------- 1 | Performs common local file inclusion (LFI) vulnerabilities fuzzing. -------------------------------------------------------------------------------- /http/vulnerabilities/lfi/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/lfi/dictionary.txt -------------------------------------------------------------------------------- /http/vulnerabilities/lfi/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/lfi/recipe.yml -------------------------------------------------------------------------------- /http/vulnerabilities/xss/README.md: -------------------------------------------------------------------------------- 1 | XSS related recipes. -------------------------------------------------------------------------------- /http/vulnerabilities/xss/dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/xss/dictionary.txt -------------------------------------------------------------------------------- /http/vulnerabilities/xss/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/vulnerabilities/xss/recipe.yml -------------------------------------------------------------------------------- /http/wordpress/README.md: -------------------------------------------------------------------------------- 1 | Wordpress related recipes. -------------------------------------------------------------------------------- /http/wordpress/wp-login.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/wordpress/wp-login.yml -------------------------------------------------------------------------------- /http/wordpress/xmlrpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/http/wordpress/xmlrpc.yml -------------------------------------------------------------------------------- /wifi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/wifi/README.md -------------------------------------------------------------------------------- /wifi/macos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/wifi/macos/README.md -------------------------------------------------------------------------------- /wifi/macos/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/wifi/macos/recipe.yml -------------------------------------------------------------------------------- /wifi/probable-v2-wpa-top4800.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/wifi/probable-v2-wpa-top4800.txt -------------------------------------------------------------------------------- /zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/zip/README.md -------------------------------------------------------------------------------- /zip/recipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/legba-cookbook/HEAD/zip/recipe.yml --------------------------------------------------------------------------------