Skip to content
This repository was archived by the owner on May 8, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ _* Ubuntu 18.04 VPS [Recommended]. Also You Can Use Another Type Of VPS_<br>
### ★ Installation

```
sudo wget https://raw.githubusercontent.com/iamtrazy/rezoth-ssh/main/ssh.sh && sudo chmod +x ssh.sh && sudo ./ssh.sh
sudo wget https://raw.githubusercontent.com/iamtrazy/rezoth-ssh/main/ssh.sh && sudo chmod +x ssh.sh && sudo ./ssh.sh
```

‼️Attention -: Please Use A Strong Password As Default Password.
Expand Down
1 change: 1 addition & 0 deletions etc/RemoveScript.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ remove_script()
apt-get remove --purge -y dropbear
apt-get remove --purge -y stunnel4
apt-get remove --purge -y squid
apt-get remove --purge -y nload
sed -i 's/Banner \/etc\/banner/#Banner none/' /etc/ssh/sshd_config
rm -f /etc/banner
rm -f /etc/default/dropbear
Expand Down
10 changes: 6 additions & 4 deletions menu
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ echo -e " 5)Change Ports"
echo -e " 6)Edit SSH Banner"
echo -e " 7)Server Information"
echo -e " 8)Server Speedtest"
echo -e " 9)Remove Script"
echo -e " 10)Exit"
echo -e " 9)Server Data usage"
echo -e " 10)Remove Script"
echo -e " 11)Exit"

echo -ne "${GREEN}\nSelect Operation : ${ENDCOLOR}" ;read n

Expand All @@ -57,7 +58,8 @@ case $n in
6) /etc/rezoth-ssh/Banner.sh;;
7) clear && screenfetch -p || echo -e "${RED}Screenfetch not installed. please install${ENDCOLOR}"; echo -e "\nPress Enter to return back to the menu";read;menu;;
8) clear && python3 /etc/rezoth-ssh/speedtest-cli || echo -e "${RED}Python3 or speedtest-cli not installed. please install${ENDCOLOR}"; echo -e "\nPress Enter to return back to the menu";read;menu;;
9) /etc/rezoth-ssh/RemoveScript.sh;;
10) clear;exit;;
9) clear && nload eth0 || echo -e "${RED}nload not installed. please install${ENDCOLOR}";echo -e "\nPress Enter to return back to the menu";read;menu;;
10) /etc/rezoth-ssh/RemoveScript.sh;;
11) clear;exit;;
*) echo -e "${RED}\nInvalid Option. Press Enter to return back to the menu${ENDCOLOR}";read && menu;;
esac
2 changes: 1 addition & 1 deletion ssh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pre_req()

apt update -y && apt upgrade -y

apt-get install -y dropbear && apt-get install -y stunnel4 && apt-get install -y squid && apt-get install -y cmake && apt-get install -y python3 && apt-get install -y screenfetch && apt-get install -y openssl
apt-get install -y dropbear && apt-get install -y stunnel4 && apt-get install -y squid && apt-get install -y cmake && apt-get install -y python3 && apt-get install -y screenfetch && apt-get install -y openssl && apt-get install -y nload
ufw allow 443/tcp
ufw allow 444/tcp
ufw allow 22/tcp
Expand Down