-
Notifications
You must be signed in to change notification settings - Fork 6
/
buru2.sh
24 lines (20 loc) · 1.23 KB
/
buru2.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
#by pudh
######################################################################## IP TABLES ####################################################################################
#### Agar tidak terlocked
sudo -u root iptables -P INPUT ACCEPT
sudo -u root iptables -P FORWARD ACCEPT
sudo -u root iptables -P OUTPUT ACCEPT
############ Flush
sudo -u root iptables -t nat -F
sudo -u root iptables -t mangle -F
sudo -u root iptables -F
sudo -u root iptables -X
sudo -u root iptables -I INPUT -p tcp -s 180.253.130.185 --dport 5901 -j ACCEPT # IP PROXY Untuk monitoring
sudo -u root iptables -I INPUT -p tcp -s 5.161.46.107 --dport 5901 -j ACCEPT # IP VPS Untuk monitoring
sudo -u root iptables -A INPUT -p tcp --dport 22 -j ACCEPT #untuk ssh
sudo -u root iptables -A INPUT -p tcp --dport 8000 -j ACCEPT #untuk sharing folder ke internet
sudo -u root iptables -A INPUT -p tcp --dport 8080 -j ACCEPT #untuk rclone
sudo -u root iptables -A INPUT -p tcp --dport 443 -j ACCEPT #untuk rclone
sudo -u root iptables -A INPUT -p tcp -s 0.0.0.0/0 --dport 5901 -j DROP #untuk reject vnc
#######################################################################################################################################################################