123456789101112131415161718192021222324252627282930313233343536 |
- #!/bin/bash
- clear
- echo -e " \033[1;31mBy Crazy\033[1;36m"
- echo " DARKSSH" | figlet
- echo -e "\033[1;32m MENU INFORMATION AND OPTIONS\033[0m\n\n"
- echo -e " \033[1;37m[\033[1;31m01\033[1;37m] - \033[1;33m Create user ssh"
- echo -e " \033[1;37m[\033[1;31m02\033[1;37m] - \033[1;33m Create ssh test user"
- echo -e " \033[1;37m[\033[1;31m03\033[1;37m] - \033[1;33m Remove ssh user"
- echo -e " \033[1;37m[\033[1;31m04\033[1;37m] - \033[1;33m Monitors ssh and dropbear users"
- echo -e " \033[1;37m[\033[1;31m05\033[1;37m] - \033[1;33m Muda ssh user data"
- echo -e " \033[1;37m[\033[1;31m06\033[1;37m] - \033[1;33m Changes limit of simultaneous connections"
- echo -e " \033[1;37m[\033[1;31m07\033[1;37m] - \033[1;33m Change ssh user password"
- echo -e " \033[1;37m[\033[1;31m08\033[1;37m] - \033[1;33m Remove all expired users"
- echo -e " \033[1;37m[\033[1;31m09\033[1;37m] - \033[1;33m Activates the limiter of simultaneous connections"
- echo -e " \033[1;37m[\033[1;31m10\033[1;37m] - \033[1;33m Connection mode squid, dropbear and etc. \033[1;32mNEW"
- echo -e " \033[1;37m[\033[1;31m11\033[1;37m] - \033[1;33m Performs server speed test \033[1;32mNEW"
- echo -e " \033[1;37m[\033[1;31m12\033[1;37m] - \033[1;33m Sets a banner for the vps"
- echo -e " \033[1;37m[\033[1;31m13\033[1;37m] - \033[1;33m Displays the consumed traffic"
- echo -e " \033[1;37m[\033[1;31m14\033[1;37m] - \033[1;33m Performs cleaning and error repairs \033[1;32mNEW"
- echo -e " \033[1;37m[\033[1;31m15\033[1;37m] - \033[1;33m Instala o OpenVPN "
- echo -e " \033[1;37m[\033[1;31m16\033[1;37m] - \033[1;33m Create user backup"
- echo -e " \033[1;37m[\033[1;31m17\033[1;37m] - \033[1;33m Install Bad Udp for VoIP calls"
- echo -e " \033[1;37m[\033[1;31m18\033[1;37m] - \033[1;33m Improves 'Experimental' latency"
- echo -e " \033[1;37m[\033[1;31m19\033[1;37m] - \033[1;33m Displays the second Menu"
- echo -e " \033[1;37m[\033[1;31m20\033[1;37m] - \033[1;33m Add host on the vps for squid connection"
- echo -e " \033[1;37m[\033[1;31m21\033[1;37m] - \033[1;33m Remove host da vps "
- echo -e " \033[1;37m[\033[1;31m22\033[1;37m] - \033[1;33m Reboot system"
- echo -e " \033[1;37m[\033[1;31m23\033[1;37m] - \033[1;33m Restart 'squid', 'dropbear' services and etc."
- echo -e " \033[1;37m[\033[1;31m24\033[1;37m] - \033[1;33m Option to manage vps by telegram \033[1;32mNEW"
- echo -e " \033[1;37m[\033[1;31m25\033[1;37m] - \033[1;33m Displays vps information"
- echo -e " \033[1;37m[\033[1;31m26\033[1;37m] - \033[1;33m Change vps password"
- echo -e " \033[1;37m[\033[1;31m27\033[1;37m] - \033[1;33m Updates the DARKSSH script"
- echo -e " \033[1;37m[\033[1;31m28\033[1;37m] - \033[1;33m Remove o script DARKSSH"
- echo -e " \033[1;37m[\033[1;31m29\033[1;37m] - \033[1;33m Displays information about the script"
- echo -e " \033[1;37m[\033[1;31m30\033[1;37m] - \033[1;33m Returns to the previous menu\033[0m"
|