├── .gitignore ├── README.md ├── css ├── custom_style.css └── desert.css ├── index.html ├── js ├── prettify.js └── run_prettify.js ├── python_scripts.html ├── python_scripts ├── backdoor.py ├── backdoor_client.py ├── check_vuln_by_banner.py ├── client.py ├── http_check_resource.py ├── http_enum_methods.py ├── portscanner.py ├── server.py └── vuln_banners.txt ├── shells ├── c100.php ├── c100.txt ├── myshell.php └── myshell.txt ├── test ├── tools └── log.php └── useful_commands.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | .vscode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/README.md -------------------------------------------------------------------------------- /css/custom_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/css/custom_style.css -------------------------------------------------------------------------------- /css/desert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/css/desert.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/index.html -------------------------------------------------------------------------------- /js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/js/prettify.js -------------------------------------------------------------------------------- /js/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/js/run_prettify.js -------------------------------------------------------------------------------- /python_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts.html -------------------------------------------------------------------------------- /python_scripts/backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/backdoor.py -------------------------------------------------------------------------------- /python_scripts/backdoor_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/backdoor_client.py -------------------------------------------------------------------------------- /python_scripts/check_vuln_by_banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/check_vuln_by_banner.py -------------------------------------------------------------------------------- /python_scripts/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/client.py -------------------------------------------------------------------------------- /python_scripts/http_check_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/http_check_resource.py -------------------------------------------------------------------------------- /python_scripts/http_enum_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/http_enum_methods.py -------------------------------------------------------------------------------- /python_scripts/portscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/portscanner.py -------------------------------------------------------------------------------- /python_scripts/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/server.py -------------------------------------------------------------------------------- /python_scripts/vuln_banners.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/python_scripts/vuln_banners.txt -------------------------------------------------------------------------------- /shells/c100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/shells/c100.php -------------------------------------------------------------------------------- /shells/c100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/shells/c100.txt -------------------------------------------------------------------------------- /shells/myshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/shells/myshell.php -------------------------------------------------------------------------------- /shells/myshell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/shells/myshell.txt -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/test -------------------------------------------------------------------------------- /tools/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/tools/log.php -------------------------------------------------------------------------------- /useful_commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SilentFrogNet/hack-help/HEAD/useful_commands.html --------------------------------------------------------------------------------