├── .gitattributes ├── README.md ├── banner ├── banner.sh └── issue.net ├── bot_panel ├── bbt.sh └── installer.sh ├── changelog ├── clgshow ├── core ├── ssr-core.sh ├── v2ray-core.sh └── xray-core.sh ├── dependencies ├── dll ├── add-host.sh ├── akill-ws.sh ├── autokill-ws.sh ├── autoreboot.sh ├── bbr.sh ├── cf.sh ├── cloudflare-pointing.sh ├── cloudflare-setting.sh ├── ext.sh ├── info.sh ├── kill-by-user.sh ├── limit-speed.sh ├── logcleaner.sh ├── ohp-db.sh ├── ohp-opn.sh ├── ohp-ssh.sh ├── restart-service.sh ├── status.sh ├── system │ ├── autobackup.sh │ ├── backup.sh │ ├── kernel-updt.sh │ ├── ram.py │ ├── rclone.conf │ ├── restore.sh │ ├── scriptservice.sh │ ├── set-br.sh │ ├── speedtest_cli.py │ ├── swapkvm.sh │ ├── ubuntu-kernel.sh │ ├── update-script.sh │ └── webmin.sh ├── toolkit.sh ├── version-service.sh └── xp.sh ├── ipsec ├── add-l2tp.sh ├── add-pptp.sh ├── cek-pptp.sh ├── del-l2tp.sh ├── del-pptp.sh ├── ipsec.sh ├── renew-l2tp.sh ├── renew-pptp.sh ├── trial-l2tp.sh └── trial-pptp.sh ├── menu_all ├── autokill-menu.sh ├── info-menu.sh ├── ipsec-menu.sh ├── setting-menu.sh ├── ss-menu.sh ├── ssh-menu.sh ├── sstp-menu.sh ├── system-menu.sh ├── trial-menu.sh ├── trojan-menu.sh ├── v2ray-menu.sh └── wg-menu.sh ├── newmenu.sh ├── resources └── ascii-home ├── serv-updater.sh ├── setup.sh ├── shadowsocks ├── .gitnone ├── add-ss.sh ├── add-ssr.sh ├── cek-ss.sh ├── del-ss.sh ├── del-ssr.sh ├── renew-ss.sh ├── renew-ssr.sh ├── ss.sh ├── ssr.sh ├── trial-ss.sh └── trial-ssr.sh ├── ssh ├── autokill.sh ├── cek.sh ├── ceklim.sh ├── delete.sh ├── hapus.sh ├── ins-sshws.sh ├── member.sh ├── newudpgw ├── password ├── port-dropbear.sh ├── port-ovpn.sh ├── port-squid.sh ├── port-ssl.sh ├── port-ws-ssl.sh ├── portohp.sh ├── proxy3.js ├── renew.sh ├── restart.sh ├── squid3.conf ├── ssh-vpn.sh ├── sshws-true.sh ├── tendang.sh ├── trial.sh ├── usernew.sh ├── vpn.sh └── vpn.zip ├── sstp ├── .gitnone ├── accel.conf ├── add-sstp.sh ├── cek-sstp.sh ├── del-sstp.sh ├── port-sstp.sh ├── renew-sstp.sh ├── sstp.sh └── trial-sstp.sh ├── trojan ├── .gitnone ├── add-tr.sh ├── add-trgo.sh ├── cek-tr.sh ├── cek-trgo.sh ├── del-tr.sh ├── del-trgo.sh ├── ins-trojango.sh ├── port-tr.sh ├── port-trgo.sh ├── renew-tr.sh ├── renew-trgo.sh ├── trial-tr.sh └── trial-trgo.sh ├── v2ray ├── .gitnone ├── add-vless.sh ├── add-ws.sh ├── cek-vless.sh ├── cek-ws.sh ├── cert.sh ├── del-vless.sh ├── del-ws.sh ├── ins-vt.sh ├── port-vless.sh ├── port-ws.sh ├── renew-vless.sh ├── renew-ws.sh ├── trial-vless.sh └── trial-ws.sh ├── wireguard ├── .gitnone ├── add-wg.sh ├── cek-wg.sh ├── del-wg.sh ├── port-wg.sh ├── renew-wg.sh ├── trial-wg.sh └── wg.sh └── xray ├── add-tr.sh ├── add-vless.sh ├── add-ws.sh ├── add.sh ├── cek-tr.sh ├── cek-vless.sh ├── cek-ws.sh ├── cert.sh ├── chk.sh ├── del-tr.sh ├── del-vless.sh ├── del-ws.sh ├── del.sh ├── ins-xray.sh ├── port-tr.sh ├── port-vless.sh ├── port-ws.sh ├── pxt.sh ├── renew-tr.sh ├── renew-vless.sh ├── renew-ws.sh ├── rnw.sh ├── trial-tr.sh ├── trial-vless.sh ├── trial-ws.sh └── xtls.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/README.md -------------------------------------------------------------------------------- /banner/banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/banner/banner.sh -------------------------------------------------------------------------------- /banner/issue.net: -------------------------------------------------------------------------------- 1 | #!/bin/bash -------------------------------------------------------------------------------- /bot_panel/bbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/bot_panel/bbt.sh -------------------------------------------------------------------------------- /bot_panel/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/bot_panel/installer.sh -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/changelog -------------------------------------------------------------------------------- /clgshow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/clgshow -------------------------------------------------------------------------------- /core/ssr-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/core/ssr-core.sh -------------------------------------------------------------------------------- /core/v2ray-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/core/v2ray-core.sh -------------------------------------------------------------------------------- /core/xray-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/core/xray-core.sh -------------------------------------------------------------------------------- /dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dependencies -------------------------------------------------------------------------------- /dll/add-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/add-host.sh -------------------------------------------------------------------------------- /dll/akill-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/akill-ws.sh -------------------------------------------------------------------------------- /dll/autokill-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/autokill-ws.sh -------------------------------------------------------------------------------- /dll/autoreboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/autoreboot.sh -------------------------------------------------------------------------------- /dll/bbr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/bbr.sh -------------------------------------------------------------------------------- /dll/cf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/cf.sh -------------------------------------------------------------------------------- /dll/cloudflare-pointing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/cloudflare-pointing.sh -------------------------------------------------------------------------------- /dll/cloudflare-setting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/cloudflare-setting.sh -------------------------------------------------------------------------------- /dll/ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/ext.sh -------------------------------------------------------------------------------- /dll/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/info.sh -------------------------------------------------------------------------------- /dll/kill-by-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/kill-by-user.sh -------------------------------------------------------------------------------- /dll/limit-speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/limit-speed.sh -------------------------------------------------------------------------------- /dll/logcleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/logcleaner.sh -------------------------------------------------------------------------------- /dll/ohp-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/ohp-db.sh -------------------------------------------------------------------------------- /dll/ohp-opn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/ohp-opn.sh -------------------------------------------------------------------------------- /dll/ohp-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/ohp-ssh.sh -------------------------------------------------------------------------------- /dll/restart-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/restart-service.sh -------------------------------------------------------------------------------- /dll/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/status.sh -------------------------------------------------------------------------------- /dll/system/autobackup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/autobackup.sh -------------------------------------------------------------------------------- /dll/system/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/backup.sh -------------------------------------------------------------------------------- /dll/system/kernel-updt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/kernel-updt.sh -------------------------------------------------------------------------------- /dll/system/ram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/ram.py -------------------------------------------------------------------------------- /dll/system/rclone.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/rclone.conf -------------------------------------------------------------------------------- /dll/system/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/restore.sh -------------------------------------------------------------------------------- /dll/system/scriptservice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/scriptservice.sh -------------------------------------------------------------------------------- /dll/system/set-br.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/set-br.sh -------------------------------------------------------------------------------- /dll/system/speedtest_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/speedtest_cli.py -------------------------------------------------------------------------------- /dll/system/swapkvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/swapkvm.sh -------------------------------------------------------------------------------- /dll/system/ubuntu-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/ubuntu-kernel.sh -------------------------------------------------------------------------------- /dll/system/update-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/update-script.sh -------------------------------------------------------------------------------- /dll/system/webmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/system/webmin.sh -------------------------------------------------------------------------------- /dll/toolkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/toolkit.sh -------------------------------------------------------------------------------- /dll/version-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/version-service.sh -------------------------------------------------------------------------------- /dll/xp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/dll/xp.sh -------------------------------------------------------------------------------- /ipsec/add-l2tp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/add-l2tp.sh -------------------------------------------------------------------------------- /ipsec/add-pptp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/add-pptp.sh -------------------------------------------------------------------------------- /ipsec/cek-pptp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/cek-pptp.sh -------------------------------------------------------------------------------- /ipsec/del-l2tp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/del-l2tp.sh -------------------------------------------------------------------------------- /ipsec/del-pptp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/del-pptp.sh -------------------------------------------------------------------------------- /ipsec/ipsec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/ipsec.sh -------------------------------------------------------------------------------- /ipsec/renew-l2tp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/renew-l2tp.sh -------------------------------------------------------------------------------- /ipsec/renew-pptp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/renew-pptp.sh -------------------------------------------------------------------------------- /ipsec/trial-l2tp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/trial-l2tp.sh -------------------------------------------------------------------------------- /ipsec/trial-pptp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ipsec/trial-pptp.sh -------------------------------------------------------------------------------- /menu_all/autokill-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/autokill-menu.sh -------------------------------------------------------------------------------- /menu_all/info-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/info-menu.sh -------------------------------------------------------------------------------- /menu_all/ipsec-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/ipsec-menu.sh -------------------------------------------------------------------------------- /menu_all/setting-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/setting-menu.sh -------------------------------------------------------------------------------- /menu_all/ss-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/ss-menu.sh -------------------------------------------------------------------------------- /menu_all/ssh-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/ssh-menu.sh -------------------------------------------------------------------------------- /menu_all/sstp-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/sstp-menu.sh -------------------------------------------------------------------------------- /menu_all/system-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/system-menu.sh -------------------------------------------------------------------------------- /menu_all/trial-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/trial-menu.sh -------------------------------------------------------------------------------- /menu_all/trojan-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/trojan-menu.sh -------------------------------------------------------------------------------- /menu_all/v2ray-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/v2ray-menu.sh -------------------------------------------------------------------------------- /menu_all/wg-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/menu_all/wg-menu.sh -------------------------------------------------------------------------------- /newmenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/newmenu.sh -------------------------------------------------------------------------------- /resources/ascii-home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/resources/ascii-home -------------------------------------------------------------------------------- /serv-updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/serv-updater.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/setup.sh -------------------------------------------------------------------------------- /shadowsocks/.gitnone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shadowsocks/add-ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/add-ss.sh -------------------------------------------------------------------------------- /shadowsocks/add-ssr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/add-ssr.sh -------------------------------------------------------------------------------- /shadowsocks/cek-ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/cek-ss.sh -------------------------------------------------------------------------------- /shadowsocks/del-ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/del-ss.sh -------------------------------------------------------------------------------- /shadowsocks/del-ssr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/del-ssr.sh -------------------------------------------------------------------------------- /shadowsocks/renew-ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/renew-ss.sh -------------------------------------------------------------------------------- /shadowsocks/renew-ssr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/renew-ssr.sh -------------------------------------------------------------------------------- /shadowsocks/ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/ss.sh -------------------------------------------------------------------------------- /shadowsocks/ssr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/ssr.sh -------------------------------------------------------------------------------- /shadowsocks/trial-ss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/trial-ss.sh -------------------------------------------------------------------------------- /shadowsocks/trial-ssr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/shadowsocks/trial-ssr.sh -------------------------------------------------------------------------------- /ssh/autokill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/autokill.sh -------------------------------------------------------------------------------- /ssh/cek.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/cek.sh -------------------------------------------------------------------------------- /ssh/ceklim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/ceklim.sh -------------------------------------------------------------------------------- /ssh/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/delete.sh -------------------------------------------------------------------------------- /ssh/hapus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/hapus.sh -------------------------------------------------------------------------------- /ssh/ins-sshws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/ins-sshws.sh -------------------------------------------------------------------------------- /ssh/member.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/member.sh -------------------------------------------------------------------------------- /ssh/newudpgw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/newudpgw -------------------------------------------------------------------------------- /ssh/password: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/password -------------------------------------------------------------------------------- /ssh/port-dropbear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/port-dropbear.sh -------------------------------------------------------------------------------- /ssh/port-ovpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/port-ovpn.sh -------------------------------------------------------------------------------- /ssh/port-squid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/port-squid.sh -------------------------------------------------------------------------------- /ssh/port-ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/port-ssl.sh -------------------------------------------------------------------------------- /ssh/port-ws-ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/port-ws-ssl.sh -------------------------------------------------------------------------------- /ssh/portohp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/portohp.sh -------------------------------------------------------------------------------- /ssh/proxy3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/proxy3.js -------------------------------------------------------------------------------- /ssh/renew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/renew.sh -------------------------------------------------------------------------------- /ssh/restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/restart.sh -------------------------------------------------------------------------------- /ssh/squid3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/squid3.conf -------------------------------------------------------------------------------- /ssh/ssh-vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/ssh-vpn.sh -------------------------------------------------------------------------------- /ssh/sshws-true.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/sshws-true.sh -------------------------------------------------------------------------------- /ssh/tendang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/tendang.sh -------------------------------------------------------------------------------- /ssh/trial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/trial.sh -------------------------------------------------------------------------------- /ssh/usernew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/usernew.sh -------------------------------------------------------------------------------- /ssh/vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/vpn.sh -------------------------------------------------------------------------------- /ssh/vpn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/ssh/vpn.zip -------------------------------------------------------------------------------- /sstp/.gitnone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sstp/accel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/accel.conf -------------------------------------------------------------------------------- /sstp/add-sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/add-sstp.sh -------------------------------------------------------------------------------- /sstp/cek-sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/cek-sstp.sh -------------------------------------------------------------------------------- /sstp/del-sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/del-sstp.sh -------------------------------------------------------------------------------- /sstp/port-sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/port-sstp.sh -------------------------------------------------------------------------------- /sstp/renew-sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/renew-sstp.sh -------------------------------------------------------------------------------- /sstp/sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/sstp.sh -------------------------------------------------------------------------------- /sstp/trial-sstp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/sstp/trial-sstp.sh -------------------------------------------------------------------------------- /trojan/.gitnone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trojan/add-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/add-tr.sh -------------------------------------------------------------------------------- /trojan/add-trgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/add-trgo.sh -------------------------------------------------------------------------------- /trojan/cek-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/cek-tr.sh -------------------------------------------------------------------------------- /trojan/cek-trgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/cek-trgo.sh -------------------------------------------------------------------------------- /trojan/del-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/del-tr.sh -------------------------------------------------------------------------------- /trojan/del-trgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/del-trgo.sh -------------------------------------------------------------------------------- /trojan/ins-trojango.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/ins-trojango.sh -------------------------------------------------------------------------------- /trojan/port-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/port-tr.sh -------------------------------------------------------------------------------- /trojan/port-trgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/port-trgo.sh -------------------------------------------------------------------------------- /trojan/renew-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/renew-tr.sh -------------------------------------------------------------------------------- /trojan/renew-trgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/renew-trgo.sh -------------------------------------------------------------------------------- /trojan/trial-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/trial-tr.sh -------------------------------------------------------------------------------- /trojan/trial-trgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/trojan/trial-trgo.sh -------------------------------------------------------------------------------- /v2ray/.gitnone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /v2ray/add-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/add-vless.sh -------------------------------------------------------------------------------- /v2ray/add-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/add-ws.sh -------------------------------------------------------------------------------- /v2ray/cek-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/cek-vless.sh -------------------------------------------------------------------------------- /v2ray/cek-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/cek-ws.sh -------------------------------------------------------------------------------- /v2ray/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/cert.sh -------------------------------------------------------------------------------- /v2ray/del-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/del-vless.sh -------------------------------------------------------------------------------- /v2ray/del-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/del-ws.sh -------------------------------------------------------------------------------- /v2ray/ins-vt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/ins-vt.sh -------------------------------------------------------------------------------- /v2ray/port-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/port-vless.sh -------------------------------------------------------------------------------- /v2ray/port-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/port-ws.sh -------------------------------------------------------------------------------- /v2ray/renew-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/renew-vless.sh -------------------------------------------------------------------------------- /v2ray/renew-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/renew-ws.sh -------------------------------------------------------------------------------- /v2ray/trial-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/trial-vless.sh -------------------------------------------------------------------------------- /v2ray/trial-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/v2ray/trial-ws.sh -------------------------------------------------------------------------------- /wireguard/.gitnone: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wireguard/add-wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/add-wg.sh -------------------------------------------------------------------------------- /wireguard/cek-wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/cek-wg.sh -------------------------------------------------------------------------------- /wireguard/del-wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/del-wg.sh -------------------------------------------------------------------------------- /wireguard/port-wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/port-wg.sh -------------------------------------------------------------------------------- /wireguard/renew-wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/renew-wg.sh -------------------------------------------------------------------------------- /wireguard/trial-wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/trial-wg.sh -------------------------------------------------------------------------------- /wireguard/wg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/wireguard/wg.sh -------------------------------------------------------------------------------- /xray/add-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/add-tr.sh -------------------------------------------------------------------------------- /xray/add-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/add-vless.sh -------------------------------------------------------------------------------- /xray/add-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/add-ws.sh -------------------------------------------------------------------------------- /xray/add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/add.sh -------------------------------------------------------------------------------- /xray/cek-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/cek-tr.sh -------------------------------------------------------------------------------- /xray/cek-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/cek-vless.sh -------------------------------------------------------------------------------- /xray/cek-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/cek-ws.sh -------------------------------------------------------------------------------- /xray/cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/cert.sh -------------------------------------------------------------------------------- /xray/chk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/chk.sh -------------------------------------------------------------------------------- /xray/del-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/del-tr.sh -------------------------------------------------------------------------------- /xray/del-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/del-vless.sh -------------------------------------------------------------------------------- /xray/del-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/del-ws.sh -------------------------------------------------------------------------------- /xray/del.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/del.sh -------------------------------------------------------------------------------- /xray/ins-xray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/ins-xray.sh -------------------------------------------------------------------------------- /xray/port-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/port-tr.sh -------------------------------------------------------------------------------- /xray/port-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/port-vless.sh -------------------------------------------------------------------------------- /xray/port-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/port-ws.sh -------------------------------------------------------------------------------- /xray/pxt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/pxt.sh -------------------------------------------------------------------------------- /xray/renew-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/renew-tr.sh -------------------------------------------------------------------------------- /xray/renew-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/renew-vless.sh -------------------------------------------------------------------------------- /xray/renew-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/renew-ws.sh -------------------------------------------------------------------------------- /xray/rnw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/rnw.sh -------------------------------------------------------------------------------- /xray/trial-tr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/trial-tr.sh -------------------------------------------------------------------------------- /xray/trial-vless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/trial-vless.sh -------------------------------------------------------------------------------- /xray/trial-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/trial-ws.sh -------------------------------------------------------------------------------- /xray/xtls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scvps/scriptvps/HEAD/xray/xtls.sh --------------------------------------------------------------------------------