hiddifypanel 10.80.0.dev14__py3-none-any.whl → 10.80.0.dev15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +1 -1
- hiddifypanel/hutils/proxy/__init__.py +1 -0
- hiddifypanel/hutils/proxy/wireguard.py +34 -0
- hiddifypanel/panel/admin/QuickSetup.py +1 -1
- hiddifypanel/panel/common.py +1 -1
- hiddifypanel/panel/user/user.py +6 -18
- hiddifypanel/translations.i18n/en.json +342 -1
- hiddifypanel/translations.i18n/fa.json +342 -1
- hiddifypanel/translations.i18n/pt.json +342 -1
- hiddifypanel/translations.i18n/ru.json +342 -1
- hiddifypanel/translations.i18n/zh.json +342 -1
- {hiddifypanel-10.80.0.dev14.dist-info → hiddifypanel-10.80.0.dev15.dist-info}/METADATA +1 -1
- {hiddifypanel-10.80.0.dev14.dist-info → hiddifypanel-10.80.0.dev15.dist-info}/RECORD +17 -16
- {hiddifypanel-10.80.0.dev14.dist-info → hiddifypanel-10.80.0.dev15.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.80.0.dev14.dist-info → hiddifypanel-10.80.0.dev15.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.80.0.dev14.dist-info → hiddifypanel-10.80.0.dev15.dist-info}/entry_points.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.80.0.
|
1
|
+
10.80.0.dev15
|
hiddifypanel/VERSION.py
CHANGED
@@ -2,5 +2,5 @@ import importlib.metadata
|
|
2
2
|
from datetime import datetime
|
3
3
|
|
4
4
|
__version__ = importlib.metadata.version(__package__ or __name__)
|
5
|
-
__release_time__= datetime.strptime('2024-
|
5
|
+
__release_time__= datetime.strptime('2024-12-08T23:50:34','%Y-%m-%dT%H:%M:%S')
|
6
6
|
is_released_version=True
|
@@ -0,0 +1,34 @@
|
|
1
|
+
|
2
|
+
def generate_wireguard_config(proxy: dict) -> str:
|
3
|
+
"""
|
4
|
+
Generates a WireGuard configuration from a given proxy dictionary.
|
5
|
+
|
6
|
+
Args:
|
7
|
+
proxy (dict): Dictionary containing WireGuard and proxy details.
|
8
|
+
|
9
|
+
Returns:
|
10
|
+
str: A WireGuard configuration string.
|
11
|
+
"""
|
12
|
+
name=f'{proxy["extra_info"]} {proxy["name"]}'
|
13
|
+
addrs = f"{proxy['wg_ipv4']}/32"
|
14
|
+
if proxy['wg_ipv6']:
|
15
|
+
addrs += f", {proxy['wg_ipv6']}/128"
|
16
|
+
config = f"""[Interface]
|
17
|
+
# Name = {name}
|
18
|
+
Address= {addrs}
|
19
|
+
PrivateKey = {proxy["wg_pk"]}
|
20
|
+
MTU = {proxy.get("mtu", 1380)}
|
21
|
+
DNS = {proxy.get("dns", "1.1.1.1")}
|
22
|
+
|
23
|
+
[Peer]
|
24
|
+
# Name = Public Peer for {name}
|
25
|
+
Endpoint = {proxy["server"]}:{proxy["port"]}
|
26
|
+
PublicKey = {proxy["wg_server_pub"]}
|
27
|
+
PresharedKey = {proxy['wg_psk']}
|
28
|
+
#PersistentKeepalive = {proxy.get("keep_alive", 25)}
|
29
|
+
"""
|
30
|
+
|
31
|
+
#Address = {proxy.get("wg_ipv4", "0.0.0.0/32")}
|
32
|
+
#AllowedIPs = {proxy.get("allowed_ips", "0.0.0.0/0")}
|
33
|
+
|
34
|
+
return config
|
@@ -72,7 +72,7 @@ def get_lang_form(empty=False):
|
|
72
72
|
default=hconfig(ConfigEnum.admin_lang))
|
73
73
|
# lang=wtf.SelectField(_("config.lang.label"),choices=[("en",_("lang.en")),("fa",_("lang.fa"))],description=_("config.lang.description"),default=hconfig(ConfigEnum.lang))
|
74
74
|
country = wtf.SelectField(
|
75
|
-
_("config.country.label"), choices=[("ir", _("Iran")), ("zh", _("China")), ("other", "Others")],
|
75
|
+
_("config.country.label"), choices=[("ir", _("Iran")), ("zh", _("China")), ("ru", _("Russia")), ("other", "Others")],
|
76
76
|
description=_("config.country.description"),
|
77
77
|
default=hconfig(ConfigEnum.country))
|
78
78
|
lang_submit = wtf.SubmitField(_('Submit'))
|
hiddifypanel/panel/common.py
CHANGED
@@ -65,7 +65,7 @@ def init_app(app: APIFlask):
|
|
65
65
|
'version': hiddifypanel.__version__,
|
66
66
|
}), 500
|
67
67
|
|
68
|
-
trace = traceback.format_exc(
|
68
|
+
trace = traceback.format_exc()
|
69
69
|
|
70
70
|
# Create github issue link
|
71
71
|
issue_link = hutils.github_issue.generate_github_issue_link_for_500_error(e, trace)
|
hiddifypanel/panel/user/user.py
CHANGED
@@ -86,27 +86,15 @@ class UserView(FlaskView):
|
|
86
86
|
continue
|
87
87
|
wireguards.append(pinfo)
|
88
88
|
|
89
|
-
|
89
|
+
|
90
90
|
|
91
91
|
if not len(wireguards):
|
92
92
|
abort(404)
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
[Interface]
|
99
|
-
PrivateKey = {wg['wg_pk']}
|
100
|
-
Address = {addrs}
|
101
|
-
DNS = 1.1.1.1
|
102
|
-
MTU = 1390
|
103
|
-
|
104
|
-
[Peer]
|
105
|
-
PublicKey = {wg['wg_pub']}
|
106
|
-
PresharedKey = {wg['wg_psk']}
|
107
|
-
AllowedIPs = 0.0.0.0/1, 128.0.0.0/1, ::/1, 8000::/1
|
108
|
-
Endpoint = {next(iter(servers))}:61339 #{servers}
|
109
|
-
"""
|
93
|
+
resp =""
|
94
|
+
for wg in wireguards:
|
95
|
+
resp +=f'#========={wg["extra_info"]} {wg["name"]}================\n'
|
96
|
+
resp+=hutils.proxy.wireguard.generate_wireguard_config(wg)
|
97
|
+
resp+="\n\n"
|
110
98
|
return add_headers(resp, c)
|
111
99
|
|
112
100
|
# return self.singbox_ssh_imp()
|
@@ -331,10 +331,12 @@
|
|
331
331
|
}
|
332
332
|
},
|
333
333
|
"auto": "Auto",
|
334
|
+
"auto_cdn_ip": "☑️ Automatic CDN IP Selector",
|
334
335
|
"bot": {
|
335
336
|
"admin_welcome": "Hooray 🎉 🎉 🎉 Welcome to admin bot. Choose your action",
|
336
337
|
"welcome": "Hooray 🎉 🎉 🎉 \nWelcome to Hiddify bot\nStart by clicking the link on the Panel or entering your UUID user."
|
337
338
|
},
|
339
|
+
"cdn": "🔀 CDN (Cloudflare Proxy, ...)",
|
338
340
|
"cf-delete": {
|
339
341
|
"failed": "cf-delete.failed"
|
340
342
|
},
|
@@ -410,18 +412,34 @@
|
|
410
412
|
"description": "Please follow <a href='https://github.com/hiddify/hiddify-config/wiki/Get-Cloudflare-API' target='_blank'>the instruction</a> and paste the Cloudflare API Key",
|
411
413
|
"label": "🔑 Cloudflare API"
|
412
414
|
},
|
415
|
+
"core_type": {
|
416
|
+
"description": "☢️ XRay : Is a Complete Core\n<br>\n📦 Singbox : Developed by SagerNet. It is also a good core",
|
417
|
+
"label": "🎛️ Core"
|
418
|
+
},
|
413
419
|
"country": {
|
414
420
|
"description": "It applies the appropriate settings for each country according to the filtering conditions of that country",
|
415
421
|
"label": "🌍 Country"
|
416
422
|
},
|
423
|
+
"create_easysetup_link": {
|
424
|
+
"description": "config.create_easysetup_link.description",
|
425
|
+
"label": "config.create_easysetup_link.label"
|
426
|
+
},
|
417
427
|
"db_version": {
|
418
428
|
"description": "Database Version Description",
|
419
429
|
"label": "Database Version Label"
|
420
430
|
},
|
431
|
+
"dbvalues": {
|
432
|
+
"description": "config.dbvalues.description",
|
433
|
+
"label": "config.dbvalues.label"
|
434
|
+
},
|
421
435
|
"decoy_domain": {
|
422
436
|
"description": "Fake Site: simulates a site when someone visits your domain directly.<br>\n⚠️ Do not use financial, Iranian and famous sites or sites with login such as Google, Yahoo, Wikipedia, PayPal.<br>\n⛔ Be sure to check the site and make sure that it is the right site, otherwise you may receive a phishing warning.<br>\n⛔⛔ Check this domain again so that there is no problem in the future",
|
423
437
|
"label": "📺 Decoy Site"
|
424
438
|
},
|
439
|
+
"dns_server": {
|
440
|
+
"description": "✳️ Default 1.1.1.1 <br>\n🚧 Block Malware 1.1.1.2 <br>\n🔞 Block Porn 1.1.1.3\n",
|
441
|
+
"label": "🖥 DNS Server"
|
442
|
+
},
|
425
443
|
"domain_fronting": {
|
426
444
|
"description": "It is used to simulate another website instead of your website in SNI. therefore, GFW can not filter your Domain\n<a href='https://github.com/hiddify/hiddify-config/wiki/%D8%A7%D8%B3%D8%AA%D9%81%D8%A7%D8%AF%D9%87-%D8%A7%D8%B2-%D8%AF%D8%A7%D9%85%DB%8C%D9%86-%D9%81%D8%B1%D8%A7%D9%86%D8%AA%DB%8C%D9%86%DA%AF'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting.",
|
427
445
|
"label": "🔒 TLS Domain Fronting"
|
@@ -450,6 +468,22 @@
|
|
450
468
|
"description": "It is General System Configurations",
|
451
469
|
"label": "General Settings"
|
452
470
|
},
|
471
|
+
"grpc_enable": {
|
472
|
+
"description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework. It can be used in supported CDNs",
|
473
|
+
"label": "➿ gRPC"
|
474
|
+
},
|
475
|
+
"h2_enable": {
|
476
|
+
"description": "Enable HTTP/2 Protocol",
|
477
|
+
"label": "🔵 h2"
|
478
|
+
},
|
479
|
+
"hidden": {
|
480
|
+
"description": "config.hidden.description",
|
481
|
+
"label": "config.hidden.label"
|
482
|
+
},
|
483
|
+
"hiddifycli_enable": {
|
484
|
+
"description": "config.hiddifycli_enable.description",
|
485
|
+
"label": "config.hiddifycli_enable.label"
|
486
|
+
},
|
453
487
|
"http": {
|
454
488
|
"description": "HTTP Configurations could be set in this section",
|
455
489
|
"label": "HTTP Configuration"
|
@@ -462,6 +496,34 @@
|
|
462
496
|
"description": "By allowing this, your users can connect to the system with Unencrypted HTTP Port. (Not Recommended)",
|
463
497
|
"label": "☑️ Allow HTTP Connection"
|
464
498
|
},
|
499
|
+
"httpupgrade_enable": {
|
500
|
+
"description": "<p>HTTPUpgrade complete a HTTP 1.1 Upgrade request and response before using the connection directly. It is similar to WebSocket in the way it create an direction channel that can be forwarded by many reverse proxies and CDNs, without the need to deal with all the issue around WebSocket Protocol itself.<br />\n⚠️ <strong>Not Available in Xray based Clients. Only <p><a href=\"https://app.hiddify.com\" target=\"_blank\">Hiddify</a></p>, Singbox, and V2fly clients are supported.</strong> <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/Basic-Concepts/#http-upgrade\" target=\"_blank\"><strong>(Read More)</strong></a></p>",
|
501
|
+
"label": "🆙 HTTPUpgrade Method"
|
502
|
+
},
|
503
|
+
"hysteria": {
|
504
|
+
"description": "Hysteria is a feature-packed proxy & relay tool optimized for lossy, unstable connections (e.g. satellite networks, congested public Wi-Fi, connecting to foreign servers from China)",
|
505
|
+
"label": "Hysteria"
|
506
|
+
},
|
507
|
+
"hysteria_down_mbps": {
|
508
|
+
"description": "Hysteria Maximum Download Speed",
|
509
|
+
"label": "⬇️ Hysteria Download (mbps)"
|
510
|
+
},
|
511
|
+
"hysteria_enable": {
|
512
|
+
"description": "To Enable UDP based Hysteria Protocol",
|
513
|
+
"label": "⚫️ Hysteria2"
|
514
|
+
},
|
515
|
+
"hysteria_obfs_enable": {
|
516
|
+
"description": " Enables Hysteria Obfuscation (Salamander)",
|
517
|
+
"label": "🎛 Hysteria OBFS"
|
518
|
+
},
|
519
|
+
"hysteria_port": {
|
520
|
+
"description": "Hysteria UDP Port for example 5678",
|
521
|
+
"label": "🔍 Hysteria2 Port"
|
522
|
+
},
|
523
|
+
"hysteria_up_mbps": {
|
524
|
+
"description": "Hysteria Maximum Upload Speed",
|
525
|
+
"label": "⬆️ Hysteria Upload (mbps)"
|
526
|
+
},
|
465
527
|
"invalid-pattern-for-warp-sites": "⚠️ The Site entered for the Warp does not match the specified template",
|
466
528
|
"invalid_uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
|
467
529
|
"is_parent": {
|
@@ -488,10 +550,58 @@
|
|
488
550
|
"description": "config.last_hash.description",
|
489
551
|
"label": "config.last_hash.label"
|
490
552
|
},
|
553
|
+
"last_priodic_usage_check": {
|
554
|
+
"description": "config.last_priodic_usage_check.description",
|
555
|
+
"label": "config.last_priodic_usage_check.label"
|
556
|
+
},
|
491
557
|
"license": {
|
492
558
|
"description": "For commercial use of this Product, you must Purchase its License",
|
493
559
|
"label": "License Code"
|
494
560
|
},
|
561
|
+
"log_level": {
|
562
|
+
"description": "config.log_level.description",
|
563
|
+
"label": "config.log_level.label"
|
564
|
+
},
|
565
|
+
"mux": {
|
566
|
+
"description": "MUX (Multiplex) configurations could be set in this section",
|
567
|
+
"label": "MUX Config"
|
568
|
+
},
|
569
|
+
"mux_brutal_down_mbps": {
|
570
|
+
"description": "TCP-Brutal Maximum Download Speed",
|
571
|
+
"label": "⬇️ MUX Brutal Download (mbps)"
|
572
|
+
},
|
573
|
+
"mux_brutal_enable": {
|
574
|
+
"description": "Enables TCP-Brutal congestion control algorithm",
|
575
|
+
"label": "☣️ MUX Brutal"
|
576
|
+
},
|
577
|
+
"mux_brutal_up_mbps": {
|
578
|
+
"description": "TCP-Brutal Maximum Upload Speed",
|
579
|
+
"label": "⬆️ MUX Brutal Upload (mbps)"
|
580
|
+
},
|
581
|
+
"mux_enable": {
|
582
|
+
"description": "<p>Mux needs compatible clients. Mux in <p><a href=\"https://app.hiddify.com\" target=\"_blank\">Hiddify</a></p> and Singbox are not compatible with XRay. <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/How-MUX-works-and-its-usage/\" target=\"_blank\">(Read More)</a></p>",
|
583
|
+
"label": "Ⓜ️ MUX (⚠️ Incompatible With Some Clients)"
|
584
|
+
},
|
585
|
+
"mux_max_connections": {
|
586
|
+
"description": "Maximum Connections. Conflict with Max Streams",
|
587
|
+
"label": "⛓ MUX Max Connections"
|
588
|
+
},
|
589
|
+
"mux_max_streams": {
|
590
|
+
"description": "Maximum Multiplexed streams in a connection before opening a new connection",
|
591
|
+
"label": "↗️ MUX Max Streams"
|
592
|
+
},
|
593
|
+
"mux_min_streams": {
|
594
|
+
"description": "Minimum Multiplexed streams in a connection before opening a new connection",
|
595
|
+
"label": "↘️ MUX Min Streams"
|
596
|
+
},
|
597
|
+
"mux_padding_enable": {
|
598
|
+
"description": "MUX Padding description",
|
599
|
+
"label": "⟹ MUX Padding"
|
600
|
+
},
|
601
|
+
"mux_protocol": {
|
602
|
+
"description": "ℹ️ Multiplex Protocol. 'sMux' is used by default\n<br>\n➖ sMux: Stream Multiplexing\n<br>\n➖ YaMux: Yet Another Multiplexer\n<br>\n➖ h2Mux: Multiplexing Streams Over HTTP/2",
|
603
|
+
"label": "♍️ MUX Protocol"
|
604
|
+
},
|
495
605
|
"netdata": {
|
496
606
|
"description": "For displaying resources. uses your Server's CPU but it is not too much.",
|
497
607
|
"label": "Netdata"
|
@@ -508,6 +618,18 @@
|
|
508
618
|
"description": "Specify whether you want Released Package or Beta one",
|
509
619
|
"label": "🔄 Package Update Mode"
|
510
620
|
},
|
621
|
+
"panel_mode": {
|
622
|
+
"description": "config.panel_mode.description",
|
623
|
+
"label": "config.panel_mode.label"
|
624
|
+
},
|
625
|
+
"parent_admin_proxy_path": {
|
626
|
+
"description": "config.parent_admin_proxy_path.description",
|
627
|
+
"label": "config.parent_admin_proxy_path.label"
|
628
|
+
},
|
629
|
+
"parent_domain": {
|
630
|
+
"description": "config.parent_domain.description",
|
631
|
+
"label": "config.parent_domain.label"
|
632
|
+
},
|
511
633
|
"parent_panel": {
|
512
634
|
"description": "You can Connect to the Central Panel to define only one user and the usage of all Servers will be added cumulatively.",
|
513
635
|
"label": "Parent Panel (Multi Server)"
|
@@ -516,6 +638,14 @@
|
|
516
638
|
"description": "gRPC Path In Configs",
|
517
639
|
"label": "ℹ️ gRPC Path"
|
518
640
|
},
|
641
|
+
"path_httpupgrade": {
|
642
|
+
"description": "should be random",
|
643
|
+
"label": "ℹ️ HTTP Upgrade Path"
|
644
|
+
},
|
645
|
+
"path_xhttp": {
|
646
|
+
"description": "This option defines the Path for Split HTTP",
|
647
|
+
"label": "ℹ️ Path for Split HTTP"
|
648
|
+
},
|
519
649
|
"path_ss": {
|
520
650
|
"description": "Shadowsocks Path in the Links",
|
521
651
|
"label": "Shadowsocks Path"
|
@@ -552,14 +682,34 @@
|
|
552
682
|
"description": "We use secret proxy path to hide our proxies for the gouvernment",
|
553
683
|
"label": "ℹ️ Secret Proxy Path"
|
554
684
|
},
|
685
|
+
"proxy_path_admin": {
|
686
|
+
"description": "We use secret proxy path to hide our proxies for the governments and bots",
|
687
|
+
"label": "🔐 Proxy Path for Admins"
|
688
|
+
},
|
689
|
+
"proxy_path_client": {
|
690
|
+
"description": "Secret proxy path hide the proxies from the governments and bots",
|
691
|
+
"label": "🔏 Proxy Path for Clients"
|
692
|
+
},
|
693
|
+
"quic_enable": {
|
694
|
+
"description": "Enable QUIC Protocol",
|
695
|
+
"label": "🟡 QUIC"
|
696
|
+
},
|
555
697
|
"reality": {
|
556
698
|
"description": "REALITY eliminate the Server-Side TLS Fingerprint Feature",
|
557
699
|
"label": "Reality"
|
558
700
|
},
|
701
|
+
"reality_enable": {
|
702
|
+
"description": "Enable Reality Protocol",
|
703
|
+
"label": "🔴 Reality"
|
704
|
+
},
|
559
705
|
"reality_fallback_domain": {
|
560
706
|
"description": "When the GFW visit the Websites in Server names, it will be redirect to this Domain.",
|
561
707
|
"label": "🌍 Reality Fallback Domain"
|
562
708
|
},
|
709
|
+
"reality_port": {
|
710
|
+
"description": "You can set a customized port for your reality server to reduce the system's overhead. (Allow direct connection to proxies should be yes)",
|
711
|
+
"label": "↔️ Direct Reality Port"
|
712
|
+
},
|
563
713
|
"reality_private_key": {
|
564
714
|
"description": "Do Not Change It",
|
565
715
|
"label": "🔑 Private Key"
|
@@ -588,6 +738,22 @@
|
|
588
738
|
"description": "config.restls1_3_domain.description",
|
589
739
|
"label": "config.restls1_3_domain.label"
|
590
740
|
},
|
741
|
+
"shadowsocks": {
|
742
|
+
"description": "Shadowsocks is a fast tunnel proxy that helps you bypass firewalls",
|
743
|
+
"label": "Shadowsocks"
|
744
|
+
},
|
745
|
+
"shadowsocks2022_enable": {
|
746
|
+
"description": "Shadowsocks 2022 is a secure Proxy Protocol for TCP and UDP traffic. The proxy traffic is indistinguishable from a random byte stream, and therefore can circumvent firewalls and Internet censors that rely on DPI (Deep Packet Inspection)",
|
747
|
+
"label": "⭕️ Shadowsocks 2022"
|
748
|
+
},
|
749
|
+
"shadowsocks2022_method": {
|
750
|
+
"description": "This method also used in ShadowTLS and SSFakeTLS",
|
751
|
+
"label": "🔐 Shadowsocks Encrypytion Method"
|
752
|
+
},
|
753
|
+
"shadowsocks2022_port": {
|
754
|
+
"description": "It needs both UDP and TCP to be Free",
|
755
|
+
"label": "↔️ Shadowsocks 2022 Port"
|
756
|
+
},
|
591
757
|
"shadowtls": {
|
592
758
|
"description": "A Proxy to expose real tls handshake to the firewall.\n\nIt works like TROJAN but It does not require signing certificate. the firewall will see real tls handshake with valid certificate that you choose.",
|
593
759
|
"label": "ShadowTLS"
|
@@ -612,6 +778,10 @@
|
|
612
778
|
"description": "Allow your users to do Speed Test. It helps them to identify the link quality",
|
613
779
|
"label": "🚀 Speed Test"
|
614
780
|
},
|
781
|
+
"xhttp_enable": {
|
782
|
+
"description": "<p>This Protocol send and receive information in individual channels.<br />\n⚠️ <strong>Not Supported in SignBox based Clients. Only <p><a href=\"https://app.hiddify.com\" target=\"_blank\">Hiddify</a></p> App, and XRay base Clients are supported.</strong></p>",
|
783
|
+
"label": "🈁 Split HTTP"
|
784
|
+
},
|
615
785
|
"ssfaketls": {
|
616
786
|
"description": "Shadowsocks FakeTLS is a simple obfusacting tool that encapsulate the date In tls packet",
|
617
787
|
"label": "Shadowsocks FakeTLS"
|
@@ -624,6 +794,54 @@
|
|
624
794
|
"description": "Please use a well known domain in your data center. for example, If you are in Azure data center, microsoft-update.com Is a good example",
|
625
795
|
"label": "🌍 SS FakeTLS FakeDomain"
|
626
796
|
},
|
797
|
+
"ssh": {
|
798
|
+
"description": "ℹ️ An SSH proxy, also known as an SSH tunnel or SSH port forwarding, is a secure method of creating a secure communication channel between two machines over an insecure network. We have a specific application which is completely different from SSH server and can not execute any commands",
|
799
|
+
"label": "SSH Proxy"
|
800
|
+
},
|
801
|
+
"ssh_host_dsa_pk": {
|
802
|
+
"description": "config.ssh_host_dsa_pk.description",
|
803
|
+
"label": "config.ssh_host_dsa_pk.label"
|
804
|
+
},
|
805
|
+
"ssh_host_dsa_pub": {
|
806
|
+
"description": "config.ssh_host_dsa_pub.description",
|
807
|
+
"label": "config.ssh_host_dsa_pub.label"
|
808
|
+
},
|
809
|
+
"ssh_host_ecdsa_pk": {
|
810
|
+
"description": "config.ssh_host_ecdsa_pk.description",
|
811
|
+
"label": "config.ssh_host_ecdsa_pk.label"
|
812
|
+
},
|
813
|
+
"ssh_host_ecdsa_pub": {
|
814
|
+
"description": "config.ssh_host_ecdsa_pub.description",
|
815
|
+
"label": "config.ssh_host_ecdsa_pub.label"
|
816
|
+
},
|
817
|
+
"ssh_host_ed25519_pk": {
|
818
|
+
"description": "config.ssh_host_ed25519_pk.description",
|
819
|
+
"label": "config.ssh_host_ed25519_pk.label"
|
820
|
+
},
|
821
|
+
"ssh_host_ed25519_pub": {
|
822
|
+
"description": "config.ssh_host_ed25519_pub.description",
|
823
|
+
"label": "config.ssh_host_ed25519_pub.label"
|
824
|
+
},
|
825
|
+
"ssh_host_rsa_pk": {
|
826
|
+
"description": "config.ssh_host_rsa_pk.description",
|
827
|
+
"label": "config.ssh_host_rsa_pk.label"
|
828
|
+
},
|
829
|
+
"ssh_host_rsa_pub": {
|
830
|
+
"description": "config.ssh_host_rsa_pub.description",
|
831
|
+
"label": "config.ssh_host_rsa_pub.label"
|
832
|
+
},
|
833
|
+
"ssh_server_enable": {
|
834
|
+
"description": "SSH Proxy is completely different than original SSH Server",
|
835
|
+
"label": "✔️ SSH Proxy"
|
836
|
+
},
|
837
|
+
"ssh_server_port": {
|
838
|
+
"description": "This is completely different from your original SSH server. It is a dedicated program.",
|
839
|
+
"label": "↔️ SSH Proxy Port"
|
840
|
+
},
|
841
|
+
"ssh_server_redis_url": {
|
842
|
+
"description": "Not Used",
|
843
|
+
"label": "SSH user database address"
|
844
|
+
},
|
627
845
|
"ssr": {
|
628
846
|
"description": "ShadowsocksR is a fork of the original Shadowsocks project, claimed to be superior in terms of security and stability.",
|
629
847
|
"label": "SSR"
|
@@ -636,6 +854,38 @@
|
|
636
854
|
"description": "Please use a well known domain In your data center. for example, If you are In Azure data center, microsoft-update.com Is a good example",
|
637
855
|
"label": "SSR FakeDomain"
|
638
856
|
},
|
857
|
+
"sub_full_clash_enable": {
|
858
|
+
"description": "config.sub_full_clash_enable.description",
|
859
|
+
"label": "config.sub_full_clash_enable.label"
|
860
|
+
},
|
861
|
+
"sub_full_clash_meta_enable": {
|
862
|
+
"description": "config.sub_full_clash_meta_enable.description",
|
863
|
+
"label": "config.sub_full_clash_meta_enable.label"
|
864
|
+
},
|
865
|
+
"sub_full_links_b64_enable": {
|
866
|
+
"description": "config.sub_full_links_b64_enable.description",
|
867
|
+
"label": "config.sub_full_links_b64_enable.label"
|
868
|
+
},
|
869
|
+
"sub_full_links_enable": {
|
870
|
+
"description": "config.sub_full_links_enable.description",
|
871
|
+
"label": "config.sub_full_links_enable.label"
|
872
|
+
},
|
873
|
+
"sub_full_singbox_enable": {
|
874
|
+
"description": "config.sub_full_singbox_enable.description",
|
875
|
+
"label": "config.sub_full_singbox_enable.label"
|
876
|
+
},
|
877
|
+
"sub_full_xray_json_enable": {
|
878
|
+
"description": "XRay full link provides comprehensive configuration options for XRay-specific settings. This includes custom fragmentation and multiplexing (mux) in applications such as v2rayNG that support XRay protocols for fine-tuned control over XRay proxy setup.",
|
879
|
+
"label": "⚙️ XRay Full Config Link"
|
880
|
+
},
|
881
|
+
"sub_singbox_ssh_enable": {
|
882
|
+
"description": "config.sub_singbox_ssh_enable.description",
|
883
|
+
"label": "config.sub_singbox_ssh_enable.label"
|
884
|
+
},
|
885
|
+
"tcp_enable": {
|
886
|
+
"description": "Enables TCP Protocol",
|
887
|
+
"label": "🟠 TCP"
|
888
|
+
},
|
639
889
|
"telegram": {
|
640
890
|
"description": "A proxy designed for Telegram to bypass Telegram filtering",
|
641
891
|
"label": "Telegram Configs"
|
@@ -664,10 +914,38 @@
|
|
664
914
|
"description": "TLS Configurations could be set in this section",
|
665
915
|
"label": "TLS Settings"
|
666
916
|
},
|
917
|
+
"tls_fragment_enable": {
|
918
|
+
"description": "<p>Under some circumstances, it can bypass the SNI blacklist system. <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/\" target=\"_blank\">(Read More)</a></p>",
|
919
|
+
"label": "⏯ TLS Fragment"
|
920
|
+
},
|
921
|
+
"tls_fragment_size": {
|
922
|
+
"description": "The Size of each Packet",
|
923
|
+
"label": "🎚 TLS Fragment Size"
|
924
|
+
},
|
925
|
+
"tls_fragment_sleep": {
|
926
|
+
"description": "The time delay between Fragments",
|
927
|
+
"label": "⏱ TLS Fragment Sleep"
|
928
|
+
},
|
929
|
+
"tls_mixed_case": {
|
930
|
+
"description": "Enables TLS Mixed SNI Case Fragmentation",
|
931
|
+
"label": "🔠 TLS Mixed SNI Case"
|
932
|
+
},
|
933
|
+
"tls_padding_enable": {
|
934
|
+
"description": "<p>Enables Padding for TLS Fragmentation. <a href=\"https://hiddify.com/manager/basic-concepts-and-troubleshooting/How-the-TLS-Trick-works-and-its-usage/#tls-padding\" target=\"_blank\">(Read More)</a></p>",
|
935
|
+
"label": "♒️ TLS Padding"
|
936
|
+
},
|
937
|
+
"tls_padding_length": {
|
938
|
+
"description": "The length of the Padding for TLS Fragmentation",
|
939
|
+
"label": "📏 TLS Padding"
|
940
|
+
},
|
667
941
|
"tls_ports": {
|
668
942
|
"description": "Comma separated integers indicating the ports to use as TLS Connection (Port 443 will be used in anycase)\n",
|
669
943
|
"label": "🔎 TLS Ports"
|
670
944
|
},
|
945
|
+
"tls_trick": {
|
946
|
+
"description": "TLS Fragmentation configurations could be set in this section",
|
947
|
+
"label": "TLS Trick"
|
948
|
+
},
|
671
949
|
"too_advanced": {
|
672
950
|
"description": "Specify The Proxy Path. It is important especially if you are using HTTP and VMess",
|
673
951
|
"label": "Very Advanced Settings"
|
@@ -676,6 +954,10 @@
|
|
676
954
|
"description": "Torrent Block Configurations could be set in this section.",
|
677
955
|
"label": "Torrent Block Configuration"
|
678
956
|
},
|
957
|
+
"trojan_enable": {
|
958
|
+
"description": "Enables Trojan Protocol",
|
959
|
+
"label": "🟤 Trojan"
|
960
|
+
},
|
679
961
|
"tuic": {
|
680
962
|
"description": "Delicately-TUICed High-Performance proxy is on top of the QUIC protocol. \n\nTUIC's goal is to minimize the handshake latency as much as possible",
|
681
963
|
"label": "TUIC"
|
@@ -703,6 +985,10 @@
|
|
703
985
|
"validation-error": "There is an error in one of the fields.",
|
704
986
|
"validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
|
705
987
|
"validation-success-no-reset": " ✅ Configs have been changed successfully",
|
988
|
+
"vless_enable": {
|
989
|
+
"description": "Enable VLess Protocol",
|
990
|
+
"label": "⚫️ VLess"
|
991
|
+
},
|
706
992
|
"vmess_enable": {
|
707
993
|
"description": "Active VMess Protocol",
|
708
994
|
"label": "🟣 VMess"
|
@@ -723,11 +1009,57 @@
|
|
723
1009
|
"warp_plus_code": {
|
724
1010
|
"description": "🔝 Increases browsing speed. To get the Key, go to the <a href='https://1.1.1.1/'> 1.1.1.1 </a>\napp and purchase the original KEY from Cloudflare\n<br>\n⚠️ If there is an error in this Key, the WARP will be disabled",
|
725
1011
|
"label": "🔑 Warp Plus Key"
|
1012
|
+
},
|
1013
|
+
"warp_sites": {
|
1014
|
+
"description": "Add additional sites to pass through WARP (only when warp mode is not None)",
|
1015
|
+
"label": "🆚 Additional WARP Sites"
|
1016
|
+
},
|
1017
|
+
"wireguard": {
|
1018
|
+
"description": "WireGuard is a lightweight, UDP based protocol known for its simplicity, efficiency, and strong security. It offers quick setup, transparent code, and has gained popularity for its ease of use across various operating systems",
|
1019
|
+
"label": "WireGuard"
|
1020
|
+
},
|
1021
|
+
"wireguard_enable": {
|
1022
|
+
"description": "<p>WireGuard is UDP based protocol. (⚠️ It is Working In <a href=\"https://app.hiddify.com/\" target=\"_blank\">Hiddify</a>)</p>",
|
1023
|
+
"label": "🐉 WireGuard"
|
1024
|
+
},
|
1025
|
+
"wireguard_ipv4": {
|
1026
|
+
"description": "Enables IPv4 in WireGuard",
|
1027
|
+
"label": " IPv4 in WireGuard"
|
1028
|
+
},
|
1029
|
+
"wireguard_ipv6": {
|
1030
|
+
"description": "Enables IPv6 in WireGuard",
|
1031
|
+
"label": "IPv6 in WireGuard"
|
1032
|
+
},
|
1033
|
+
"wireguard_noise_trick": {
|
1034
|
+
"description": "This method introduces extra noise to prevent detection and blocking by the GFW",
|
1035
|
+
"label": "💥 WireGuard Noise Trick"
|
1036
|
+
},
|
1037
|
+
"wireguard_port": {
|
1038
|
+
"description": "Defines Port for WireGuard ",
|
1039
|
+
"label": "↔️ WireGuard Port"
|
1040
|
+
},
|
1041
|
+
"wireguard_private_key": {
|
1042
|
+
"description": "A private key is specified to WireGuard",
|
1043
|
+
"label": "WireGuard Private Key"
|
1044
|
+
},
|
1045
|
+
"wireguard_public_key": {
|
1046
|
+
"description": "A public key is specified to WireGuard",
|
1047
|
+
"label": "WireGuard Public Key"
|
1048
|
+
},
|
1049
|
+
"ws_enable": {
|
1050
|
+
"description": "Websocket creates a tunnel over HTTP that is useful to be used in CDN",
|
1051
|
+
"label": "🔰 Websocket"
|
1052
|
+
},
|
1053
|
+
"xtls_enable": {
|
1054
|
+
"description": "Enables XTLS Protocol",
|
1055
|
+
"label": "🟢 XTLS"
|
726
1056
|
}
|
727
1057
|
},
|
728
1058
|
"copy": "Copy",
|
1059
|
+
"daily": "⏰ Daily",
|
729
1060
|
"days": "Days",
|
730
1061
|
"desktop": "Desktop",
|
1062
|
+
"direct": "➡️ Direct",
|
731
1063
|
"domain": {
|
732
1064
|
"cdn": "CDN",
|
733
1065
|
"changed_in_domain_warning": "⚠️ Your Domains Changed. please do not forget to copy Admin links, otherwise you can not access to the panel anymore",
|
@@ -749,6 +1081,7 @@
|
|
749
1081
|
"show_domains_description": "For users visit the user area with this domain, Specify they can see the proxies of which domains.\n<br>\nSuggestion: For a domain with an unfiltered IP and different from the others, select all other domains (except the current domain). As a result, since the use of this IP is not for proxy and it is a simple website, this domain and IP will never be blocked and your users can easily update new profiles."
|
750
1082
|
},
|
751
1083
|
"download": "Direct Download",
|
1084
|
+
"fake": "🆎 Fake Site",
|
752
1085
|
"gRPC": "➿ gRPC",
|
753
1086
|
"grpc-proxy": {
|
754
1087
|
"description": "ℹ️ gRPC is a H2 based Protocol. Maybe it is faster for you!"
|
@@ -787,8 +1120,10 @@
|
|
787
1120
|
"master": {
|
788
1121
|
"page-title": "HiddifyManager"
|
789
1122
|
},
|
1123
|
+
"monthly": "🗓️ Monthly",
|
790
1124
|
"move_to_new_link": "The page has been moved to a new link. Please copy and save the new link.",
|
791
1125
|
"next": "Next",
|
1126
|
+
"no_reset": "⭐️ Without Reset",
|
792
1127
|
"node": {
|
793
1128
|
"diff-version": "node.diff-version",
|
794
1129
|
"mode": {
|
@@ -804,6 +1139,7 @@
|
|
804
1139
|
"label": "Node UUID"
|
805
1140
|
}
|
806
1141
|
},
|
1142
|
+
"old_xtls_direct": "🔙 Old Direct Mode (For Trojan TCP, VLess XTLS)",
|
807
1143
|
"open": "Open",
|
808
1144
|
"outdated_panel": "⚠️ This version of Hiddify Manager is outdated. please Update it from Admin area",
|
809
1145
|
"package days?": "package days?",
|
@@ -825,6 +1161,8 @@
|
|
825
1161
|
"success": "Changing the Language was Successful."
|
826
1162
|
}
|
827
1163
|
},
|
1164
|
+
"reality": "🔂 Reality",
|
1165
|
+
"relay": "♾️ Relay (Connect Using an Intermediate Node)",
|
828
1166
|
"search": "Search",
|
829
1167
|
"see the log in the bellow screen": "📑 See the log in the bellow screen",
|
830
1168
|
"serverssh": {
|
@@ -834,6 +1172,7 @@
|
|
834
1172
|
},
|
835
1173
|
"singbox: ssh": "SingBox: SSH",
|
836
1174
|
"ssh": "SSH",
|
1175
|
+
"sub_link_only": "📳 Only for Subscription Link (can be Direct, Relay, or CDN)",
|
837
1176
|
"telegram": "Telegram",
|
838
1177
|
"test": "Test",
|
839
1178
|
"update": "Update",
|
@@ -949,5 +1288,7 @@
|
|
949
1288
|
},
|
950
1289
|
"vpn": {
|
951
1290
|
"notallowed": "Please visit this page without using a VPN. You need to access it from the country %(expected_country)s, but you're currently accessing it from %(your_country)s."
|
952
|
-
}
|
1291
|
+
},
|
1292
|
+
"weekly": "📅 Weekly",
|
1293
|
+
"worker": "✴️ Cloudflare Worker"
|
953
1294
|
}
|