├── .gitignore ├── LICENSE ├── README.md ├── crackform ├── README.md ├── crack_form.py └── dict │ ├── error.txt │ ├── password.txt │ └── webshell.txt ├── cracklinux ├── crack_linux.py ├── crack_user.txt └── dict.txt └── port_scan.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Crack-Tools 2 | 3 | Just a toolbox : ) 4 | -------------------------------------------------------------------------------- /crackform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/crackform/README.md -------------------------------------------------------------------------------- /crackform/crack_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/crackform/crack_form.py -------------------------------------------------------------------------------- /crackform/dict/error.txt: -------------------------------------------------------------------------------- 1 | name="j_password" 2 | -------------------------------------------------------------------------------- /crackform/dict/password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/crackform/dict/password.txt -------------------------------------------------------------------------------- /crackform/dict/webshell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/crackform/dict/webshell.txt -------------------------------------------------------------------------------- /cracklinux/crack_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/cracklinux/crack_linux.py -------------------------------------------------------------------------------- /cracklinux/crack_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/cracklinux/crack_user.txt -------------------------------------------------------------------------------- /cracklinux/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/cracklinux/dict.txt -------------------------------------------------------------------------------- /port_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyKings/Crack-Tools/HEAD/port_scan.py --------------------------------------------------------------------------------