Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web/html
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2024-02-21 11:36:49 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2024-02-21 11:36:49 +0300
commitf3eb4f055db80372298d60c073870a5af1431785 (patch)
treeb7314d9dda7bc6ec4fee55ac9e72945b195d00a7 /web/html
parentc61575ac9aca81b9b17fbcdb9f8a66195466abab (diff)
SSL Security Alert
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html')
-rw-r--r--web/html/xui/inbounds.html13
-rw-r--r--web/html/xui/index.html20
-rw-r--r--web/html/xui/settings.html16
-rw-r--r--web/html/xui/xray.html13
4 files changed, 55 insertions, 7 deletions
diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html
index b0426e4f..f1f14275 100644
--- a/web/html/xui/inbounds.html
+++ b/web/html/xui/inbounds.html
@@ -56,6 +56,15 @@
<a-layout-content>
<a-spin :spinning="spinning" :delay="500" tip='{{ i18n "loading"}}'>
<transition name="list" appear>
+ <a-alert type="error" v-if="showAlert" style="margin-bottom: 10px"
+ message='{{ i18n "secAlertTitle" }}'
+ color="red"
+ description='{{ i18n "secAlertSsl" }}'
+ show-icon closable
+ >
+ </a-alert>
+ </transition>
+ <transition name="list" appear>
<a-tag v-if="false" color="red" style="margin-bottom: 10px">
Please go to the panel settings as soon as possible to modify the username and password, otherwise there may be a risk of leaking account information
</a-tag>
@@ -572,6 +581,7 @@
remarkModel: '-ieo',
datepicker: 'gregorian',
tgBotEnable: false,
+ showAlert: false,
pageSize: 0,
isMobile: window.innerWidth <= 768,
},
@@ -1319,6 +1329,9 @@
}, 500)
},
mounted() {
+ if (window.location.protocol !== "https:") {
+ this.showAlert = true;
+ }
window.addEventListener('resize', this.onResize);
this.onResize();
this.loading();
diff --git a/web/html/xui/index.html b/web/html/xui/index.html
index 30ca4490..1bc0dfa4 100644
--- a/web/html/xui/index.html
+++ b/web/html/xui/index.html
@@ -35,6 +35,15 @@
<a-layout-content>
<a-spin :spinning="spinning" :delay="200" :tip="loadingTip"/>
<transition name="list" appear>
+ <a-alert type="error" v-if="showAlert" style="margin-bottom: 10px"
+ message='{{ i18n "secAlertTitle" }}'
+ color="red"
+ description='{{ i18n "secAlertSsl" }}'
+ show-icon closable
+ >
+ </a-alert>
+ </transition>
+ <transition name="list" appear>
<a-row>
<a-card hoverable>
<a-row>
@@ -532,6 +541,7 @@
backupModal,
spinning: false,
loadingTip: '{{ i18n "loading"}}',
+ showAlert: false,
},
methods: {
loading(spinning, tip = '{{ i18n "loading"}}') {
@@ -655,14 +665,14 @@
},
},
async mounted() {
- let retries = 0;
- while (retries < 5) {
+ if (window.location.protocol !== "https:") {
+ this.showAlert = true;
+ }
+ while (true) {
try {
await this.getStatus();
- retries = 0;
} catch (e) {
- console.error("Error occurred while fetching status:", e);
- retries++;
+ console.error(e);
}
await PromiseUtil.sleep(2000);
}
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html
index 533553c5..a7c72f73 100644
--- a/web/html/xui/settings.html
+++ b/web/html/xui/settings.html
@@ -75,6 +75,15 @@
<a-layout id="content-layout">
<a-layout-content>
<a-spin :spinning="spinning" :delay="500" tip='{{ i18n "loading"}}'>
+ <transition name="list" appear>
+ <a-alert type="error" v-if="showAlert" style="margin-bottom: 10px"
+ message='{{ i18n "secAlertTitle" }}'
+ color="red"
+ description='{{ i18n "secAlertSsl" }}'
+ show-icon closable
+ >
+ </a-alert>
+ </transition>
<a-space direction="vertical">
<a-card hoverable style="margin-bottom: .5rem; overflow-x: hidden;">
<a-row style="display: flex; flex-wrap: wrap; align-items: center;">
@@ -444,12 +453,15 @@
},
},
async mounted() {
+ if (window.location.protocol !== "https:") {
+ this.showAlert = true;
+ }
await this.getAllSetting();
while (true) {
- await PromiseUtil.sleep(600);
+ await PromiseUtil.sleep(1000);
this.saveBtnDisable = this.oldAllSetting.equals(this.allSetting);
}
- },
+ }
});
</script>
</body>
diff --git a/web/html/xui/xray.html b/web/html/xui/xray.html
index 0ceafeab..6f21d005 100644
--- a/web/html/xui/xray.html
+++ b/web/html/xui/xray.html
@@ -63,6 +63,15 @@
<a-layout id="content-layout">
<a-layout-content>
<a-spin :spinning="spinning" :delay="500" tip='{{ i18n "loading"}}'>
+ <transition name="list" appear>
+ <a-alert type="error" v-if="showAlert" style="margin-bottom: 10px"
+ message='{{ i18n "secAlertTitle" }}'
+ color="red"
+ description='{{ i18n "secAlertSsl" }}'
+ show-icon closable
+ >
+ </a-alert>
+ </transition>
<a-space direction="vertical">
<a-card hoverable style="margin-bottom: .5rem;">
<a-row>
@@ -664,6 +673,7 @@
saveBtnDisable: true,
refreshing: false,
restartResult: '',
+ showAlert: false,
isMobile: window.innerWidth <= 768,
advSettings: 'xraySetting',
cm: null,
@@ -1293,6 +1303,9 @@
}
},
async mounted() {
+ if (window.location.protocol !== "https:") {
+ this.showAlert = true;
+ }
await this.getXraySetting();
await this.getXrayResult();
await this.getOutboundsTraffic();