├── LICENSE ├── README.md ├── assets ├── autor.json ├── config.json ├── exploits.json └── prints │ ├── banner.png │ ├── print00.png │ ├── print01.png │ ├── print02.png │ ├── print03.png │ └── print04.png ├── main.py ├── modules ├── __init__.py ├── banner_shock.py ├── color_shock.py ├── debug_shock.py ├── file_shock.py ├── request_shock.py ├── shodan_shock.py └── thread_shock.py ├── output └── vuln.txt └── wordlist └── cgi.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/README.md -------------------------------------------------------------------------------- /assets/autor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/autor.json -------------------------------------------------------------------------------- /assets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/config.json -------------------------------------------------------------------------------- /assets/exploits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/exploits.json -------------------------------------------------------------------------------- /assets/prints/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/prints/banner.png -------------------------------------------------------------------------------- /assets/prints/print00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/prints/print00.png -------------------------------------------------------------------------------- /assets/prints/print01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/prints/print01.png -------------------------------------------------------------------------------- /assets/prints/print02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/prints/print02.png -------------------------------------------------------------------------------- /assets/prints/print03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/prints/print03.png -------------------------------------------------------------------------------- /assets/prints/print04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/assets/prints/print04.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/main.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/banner_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/banner_shock.py -------------------------------------------------------------------------------- /modules/color_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/color_shock.py -------------------------------------------------------------------------------- /modules/debug_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/debug_shock.py -------------------------------------------------------------------------------- /modules/file_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/file_shock.py -------------------------------------------------------------------------------- /modules/request_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/request_shock.py -------------------------------------------------------------------------------- /modules/shodan_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/shodan_shock.py -------------------------------------------------------------------------------- /modules/thread_shock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/modules/thread_shock.py -------------------------------------------------------------------------------- /output/vuln.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordlist/cgi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrCl0wnLab/ShellShockHunter/HEAD/wordlist/cgi.txt --------------------------------------------------------------------------------