mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-02-28 13:13:00 +00:00
Update x-ui.sh
This commit is contained in:
parent
9e669d416e
commit
48fe3c3a64
1 changed files with 199 additions and 72 deletions
269
x-ui.sh
269
x-ui.sh
|
|
@ -1698,56 +1698,82 @@ run_librespeed() {
|
||||||
}
|
}
|
||||||
|
|
||||||
create_honeypot() {
|
create_honeypot() {
|
||||||
|
|
||||||
local pkg_manager=""
|
|
||||||
local server_ip=$(curl -s --max-time 3 https://4.ident.me)
|
local server_ip=$(curl -s --max-time 3 https://4.ident.me)
|
||||||
|
|
||||||
echo -e "${yellow}${plain}Downloading sources and Utilites..."
|
echo -e "${plain}Do you want to use: ${green}Apache ${plain}or ${green}Nginx"
|
||||||
if command -v dnf &>/dev/null; then
|
|
||||||
pkg_manager="dnf"
|
|
||||||
dnf install httpd -y
|
|
||||||
elif command -v yum &>/dev/null; then
|
|
||||||
pkg_manager="yum"
|
|
||||||
yum install httpd
|
|
||||||
elif command -v apt-get &>/dev/null; then
|
|
||||||
pkg_manager="apt-get"
|
|
||||||
apt-get install apache2
|
|
||||||
elif command -v apt &>/dev/null; then
|
|
||||||
pkg_manager="apt"
|
|
||||||
apt install apache2
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -z $pkg_manager ]]; then
|
read -p "Apache or Nginx: " nginx_or_apache
|
||||||
echo "Error: Package manager not found. You may need to install HoneyPot manually."
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Start apache server for HoneyPot
|
echo -e "${yellow}Downloading sources and Utilites..."
|
||||||
systemctl enable apache2
|
|
||||||
systemctl start apache2
|
|
||||||
|
|
||||||
echo -e "${yellow}${plain}Installing HoneyPot..."
|
if [ "$nginx_or_apache" = "Apache" ]; then
|
||||||
|
case "${release}" in
|
||||||
|
ubuntu)
|
||||||
|
apt-get update
|
||||||
|
apt-get install apache2 -y
|
||||||
|
;;
|
||||||
|
debian)
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y apache2
|
||||||
|
;;
|
||||||
|
armbian)
|
||||||
|
apt-get update && apt-get install apache2 -y
|
||||||
|
;;
|
||||||
|
fedora | amzn | virtuozzo | rhel | almalinux | rocky | ol)
|
||||||
|
dnf -y update && dnf -y install httpd
|
||||||
|
;;
|
||||||
|
centos)
|
||||||
|
yum -y install apache2
|
||||||
|
;;
|
||||||
|
arch | manjaro | parch)
|
||||||
|
pacman -Syu --noconfirm apache
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${red}Unsupported operating system. Please check the script and install the necessary packages manually.${plain}\n"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
git clone https://github.com/d3l1f3r/SpaceSaver.git
|
# Start apache server for HoneyPot
|
||||||
mv SpaceSaver/ /var/www/html/
|
case "${release}" in
|
||||||
|
ubuntu)
|
||||||
|
systemctl enable apache2
|
||||||
|
systemctl start apache2
|
||||||
|
;;
|
||||||
|
debian)
|
||||||
|
systemctl enable apache2
|
||||||
|
systemctl start apache2
|
||||||
|
;;
|
||||||
|
armbian)
|
||||||
|
systemctl enable apache2
|
||||||
|
systemctl start apache2
|
||||||
|
;;
|
||||||
|
fedora | amzn | virtuozzo | rhel | almalinux | rocky | ol)
|
||||||
|
systemctl enable httpd
|
||||||
|
systemctl start httpd
|
||||||
|
;;
|
||||||
|
centos)
|
||||||
|
systemctl enable httpd
|
||||||
|
systemctl start httpd
|
||||||
|
;;
|
||||||
|
arch | manjaro | parch)
|
||||||
|
systemctl enable apache
|
||||||
|
systemctl start apache
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${red}Cannot start apache service.${plain}\n"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Configs
|
|
||||||
echo """
|
|
||||||
<VirtualHost *:80>
|
|
||||||
ServerName SpaceSaver
|
|
||||||
DocumentRoot /var/www/html/SpaceSaver
|
|
||||||
|
|
||||||
<Directory /var/www/html/SpaceSaver>
|
echo -e "${yellow}Installing HoneyPot..."
|
||||||
Options Indexes FollowSymLinks
|
|
||||||
AllowOverride All
|
|
||||||
Require all granted
|
|
||||||
</Directory>
|
|
||||||
|
|
||||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
git clone https://github.com/d3l1f3r/SpaceSaver.git
|
||||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
mv SpaceSaver/ /var/www/html/
|
||||||
</VirtualHost>""" >> /etc/apache2/sites-enabled/spacesaver.conf
|
|
||||||
|
|
||||||
echo """
|
# Config for apache2
|
||||||
|
echo """
|
||||||
<VirtualHost *:80>
|
<VirtualHost *:80>
|
||||||
ServerName SpaceSaver
|
ServerName SpaceSaver
|
||||||
DocumentRoot /var/www/html/SpaceSaver
|
DocumentRoot /var/www/html/SpaceSaver
|
||||||
|
|
@ -1762,18 +1788,120 @@ create_honeypot() {
|
||||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||||
</VirtualHost>""" >> /etc/apache2/sites-available/spacesaver.conf
|
</VirtualHost>""" >> /etc/apache2/sites-available/spacesaver.conf
|
||||||
|
|
||||||
# Restarting apache server
|
ln -sf /etc/apache2/sites-available/spacesaver.conf /etc/apache2/sites-enabled/
|
||||||
systemctl reload apache2
|
|
||||||
|
|
||||||
# Access rights to HoneyPot's files
|
# Restarting apache server
|
||||||
chown -R www-data:www-data /var/www/html/SpaceSaver
|
case "${release}" in
|
||||||
chmod -R 755 /var/www/html/SpaceSaver
|
ubuntu)
|
||||||
chmod 644 /var/www/html/SpaceSaver/index.html
|
systemctl reload apache2
|
||||||
|
;;
|
||||||
|
debian)
|
||||||
|
systemctl reload apache2
|
||||||
|
;;
|
||||||
|
armbian)
|
||||||
|
systemctl reload apache2
|
||||||
|
;;
|
||||||
|
fedora | amzn | virtuozzo | rhel | almalinux | rocky | ol)
|
||||||
|
systemctl reload httpd
|
||||||
|
;;
|
||||||
|
centos)
|
||||||
|
systemctl reload httpd
|
||||||
|
;;
|
||||||
|
arch | manjaro | parch)
|
||||||
|
systemctl reload httpd
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${red}Cannot reload apache service.${plain}\n"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
systemctl reload apache2
|
# Access rights to HoneyPot's files
|
||||||
|
chown -R www-data:www-data /var/www/html/SpaceSaver
|
||||||
|
chmod -R 755 /var/www/html/SpaceSaver
|
||||||
|
chmod 644 /var/www/html/SpaceSaver/index.html
|
||||||
|
|
||||||
echo -e "${green}${plain}Done!"
|
echo -e "${plain}Done!"
|
||||||
echo -e "${green}${plain}Available here -> http://$server_ip:80"
|
echo -e "${green}Available here -> http://$server_ip:80"
|
||||||
|
|
||||||
|
elif [ "$nginx_or_apache" = "Nginx" ]; then
|
||||||
|
case "${release}" in
|
||||||
|
ubuntu)
|
||||||
|
apt-get update
|
||||||
|
apt-get install nginx -y
|
||||||
|
;;
|
||||||
|
debian)
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y nginx
|
||||||
|
;;
|
||||||
|
armbian)
|
||||||
|
apt-get update && apt-get install nginx -y
|
||||||
|
;;
|
||||||
|
fedora | amzn | virtuozzo | rhel | almalinux | rocky | ol)
|
||||||
|
dnf -y update && dnf -y install nginx
|
||||||
|
;;
|
||||||
|
centos)
|
||||||
|
yum -y install nginx
|
||||||
|
;;
|
||||||
|
arch | manjaro | parch)
|
||||||
|
pacman -Syu --noconfirm nginx
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo -e "${red}Unsupported operating system. Please check the script and install the necessary packages manually.${plain}\n"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Start nginx server for HoneyPot
|
||||||
|
systemctl enable nginx
|
||||||
|
systemctl start nginx
|
||||||
|
|
||||||
|
#Downloading HoneyPot's files
|
||||||
|
git clone https://github.com/d3l1f3r/SpaceSaver.git
|
||||||
|
mv SpaceSaver/ /var/www/html/
|
||||||
|
|
||||||
|
# Config for nginx
|
||||||
|
tee /etc/nginx/sites-available/spacesaver.conf >/dev/null << 'EOF'
|
||||||
|
server {
|
||||||
|
listen 80 default_server; # ← важно для локального доступа
|
||||||
|
server_name 127.0.0.1 localhost SpaceSaver _;
|
||||||
|
|
||||||
|
root /var/www/html/SpaceSaver;
|
||||||
|
index index.html;
|
||||||
|
|
||||||
|
# Security Headers
|
||||||
|
add_header X-Content-Type-Options nosniff always;
|
||||||
|
add_header X-Frame-Options SAMEORIGIN always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
add_header Referrer-Policy strict-origin-when-cross-origin always;
|
||||||
|
add_header Permissions-Policy "interest-cohort=()" always;
|
||||||
|
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
|
||||||
|
|
||||||
|
server_tokens off;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\. {
|
||||||
|
deny all;
|
||||||
|
access_log off;
|
||||||
|
log_not_found off;
|
||||||
|
}
|
||||||
|
|
||||||
|
access_log /var/log/nginx/spacesaver.access.log;
|
||||||
|
error_log /var/log/nginx/spacesaver.error.log;
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
rm -f /etc/nginx/sites-enabled/default
|
||||||
|
ln -sf /etc/nginx/sites-available/spacesaver.conf /etc/nginx/sites-enabled/
|
||||||
|
systemctl reload nginx
|
||||||
|
|
||||||
|
echo -e "${plain}Done!"
|
||||||
|
echo -e "${green}Available here -> http://$server_ip:80"
|
||||||
|
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
change_dns() {
|
change_dns() {
|
||||||
|
|
@ -2280,7 +2408,6 @@ show_usage() {
|
||||||
│ ${blue}x-ui start${plain} - Start │
|
│ ${blue}x-ui start${plain} - Start │
|
||||||
│ ${blue}x-ui stop${plain} - Stop │
|
│ ${blue}x-ui stop${plain} - Stop │
|
||||||
│ ${blue}x-ui restart${plain} - Restart │
|
│ ${blue}x-ui restart${plain} - Restart │
|
||||||
| ${blue}x-ui restart-xray${plain} - Restart Xray │
|
|
||||||
│ ${blue}x-ui status${plain} - Current Status │
|
│ ${blue}x-ui status${plain} - Current Status │
|
||||||
│ ${blue}x-ui settings${plain} - Current Settings │
|
│ ${blue}x-ui settings${plain} - Current Settings │
|
||||||
│ ${blue}x-ui enable${plain} - Enable Autostart on OS Startup │
|
│ ${blue}x-ui enable${plain} - Enable Autostart on OS Startup │
|
||||||
|
|
@ -2323,22 +2450,22 @@ show_menu() {
|
||||||
│ ${green}17.${plain} Enable Autostart │
|
│ ${green}17.${plain} Enable Autostart │
|
||||||
│ ${green}18.${plain} Disable Autostart │
|
│ ${green}18.${plain} Disable Autostart │
|
||||||
│────────────────────────────────────────────────│
|
│────────────────────────────────────────────────│
|
||||||
│ ${green}18.${plain} SSL Certificate Management │
|
│ ${green}19.${plain} SSL Certificate Management │
|
||||||
│ ${green}19.${plain} Cloudflare SSL Certificate │
|
│ ${green}20.${plain} Cloudflare SSL Certificate │
|
||||||
│ ${green}20.${plain} IP Limit Management │
|
│ ${green}21.${plain} IP Limit Management │
|
||||||
│ ${green}21.${plain} Firewall Management │
|
│ ${green}22.${plain} Firewall Management │
|
||||||
│ ${green}22.${plain} SSH Port Forwarding Management │
|
│ ${green}23.${plain} SSH Port Forwarding Management │
|
||||||
│ ${green}23.${plain} HoneyPot (Fakesite) │
|
│ ${green}24.${plain} HoneyPot (Fakesite) │
|
||||||
│ ${green}24.${plain} Change DNS resolver │
|
│ ${green}25.${plain} Change DNS resolver │
|
||||||
│────────────────────────────────────────────────│
|
│────────────────────────────────────────────────│
|
||||||
│ ${green}25.${plain} Enable BBR │
|
│ ${green}26.${plain} Enable BBR │
|
||||||
│ ${green}26.${plain} Update Geo Files │
|
│ ${green}27.${plain} Update Geo Files │
|
||||||
│ ${green}27.${plain} Speedtest by Ookla │
|
│ ${green}28.${plain} Speedtest by Ookla │
|
||||||
│ ${green}28.${plain} Librespeed │
|
│ ${green}29.${plain} Librespeed │
|
||||||
╚────────────────────────────────────────────────╝
|
╚────────────────────────────────────────────────╝
|
||||||
"
|
"
|
||||||
show_status
|
show_status
|
||||||
echo && read -rp "Please enter your selection [0-28]: " num
|
echo && read -rp "Please enter your selection [0-29]: " num
|
||||||
|
|
||||||
case "${num}" in
|
case "${num}" in
|
||||||
0)
|
0)
|
||||||
|
|
@ -2411,25 +2538,28 @@ show_menu() {
|
||||||
firewall_menu
|
firewall_menu
|
||||||
;;
|
;;
|
||||||
23)
|
23)
|
||||||
create_honeypot
|
SSH_port_forwarding
|
||||||
;;
|
;;
|
||||||
24)
|
24)
|
||||||
change_dns
|
create_honeypot
|
||||||
;;
|
;;
|
||||||
25)
|
25)
|
||||||
bbr_menu
|
change_dns
|
||||||
;;
|
;;
|
||||||
26)
|
26)
|
||||||
update_geo
|
bbr_menu
|
||||||
;;
|
;;
|
||||||
27)
|
27)
|
||||||
run_speedtest
|
update_geo
|
||||||
;;
|
;;
|
||||||
28)
|
28)
|
||||||
|
run_speedtest
|
||||||
|
;;
|
||||||
|
29)
|
||||||
run_librespeed
|
run_librespeed
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
LOGE "Please enter the correct number [0-28]"
|
LOGE "Please enter the correct number [0-29]"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
@ -2445,9 +2575,6 @@ if [[ $# > 0 ]]; then
|
||||||
"restart")
|
"restart")
|
||||||
check_install 0 && restart 0
|
check_install 0 && restart 0
|
||||||
;;
|
;;
|
||||||
"restart-xray")
|
|
||||||
check_install 0 && restart_xray 0
|
|
||||||
;;
|
|
||||||
"status")
|
"status")
|
||||||
check_install 0 && status 0
|
check_install 0 && status 0
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue