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
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2024-12-18 01:25:54 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2024-12-18 01:25:54 +0300
commit73e90e0eaa179e1f9e2ed1b0d697350f5a542880 (patch)
treecd804d77a362f5a17d6b025f7f2539d874883a27 /web
parent44ef1ac9a68b43d9832be97293b3ee77ace6a173 (diff)
TLS, REALITY : fingerprint set default to chrome
Diffstat (limited to 'web')
-rw-r--r--web/assets/js/model/inbound.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js
index 3a689bff..44c8d767 100644
--- a/web/assets/js/model/inbound.js
+++ b/web/assets/js/model/inbound.js
@@ -689,7 +689,10 @@ TlsStreamSettings.Cert = class extends XrayCommonClass {
};
TlsStreamSettings.Settings = class extends XrayCommonClass {
- constructor(allowInsecure = false, fingerprint = '') {
+ constructor(
+ allowInsecure = false,
+ fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
+ ) {
super();
this.allowInsecure = allowInsecure;
this.fingerprint = fingerprint;
@@ -778,7 +781,7 @@ class RealityStreamSettings extends XrayCommonClass {
RealityStreamSettings.Settings = class extends XrayCommonClass {
constructor(
publicKey = '',
- fingerprint = UTLS_FINGERPRINT.UTLS_RANDOM,
+ fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
serverName = '',
spiderX = '/'
) {