hiddifypanel 10.20.3__py3-none-any.whl → 10.30.0__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 +2 -2
- hiddifypanel/base.py +22 -12
- hiddifypanel/cache.py +2 -51
- hiddifypanel/drivers/wireguard_api.py +24 -5
- hiddifypanel/hutils/convert.py +1 -1
- hiddifypanel/hutils/flask.py +28 -2
- hiddifypanel/hutils/importer/xui.py +6 -7
- hiddifypanel/hutils/network/__init__.py +1 -0
- hiddifypanel/hutils/network/cf_api.py +84 -0
- hiddifypanel/hutils/network/net.py +26 -49
- hiddifypanel/hutils/node/child.py +25 -7
- hiddifypanel/hutils/node/parent.py +7 -7
- hiddifypanel/hutils/node/shared.py +19 -6
- hiddifypanel/hutils/proxy/clash.py +1 -1
- hiddifypanel/hutils/proxy/shared.py +1 -1
- hiddifypanel/hutils/proxy/singbox.py +2 -3
- hiddifypanel/hutils/proxy/xray.py +12 -10
- hiddifypanel/hutils/proxy/xrayjson.py +26 -49
- hiddifypanel/hutils/utils.py +47 -3
- hiddifypanel/models/__init__.py +1 -1
- hiddifypanel/models/admin.py +9 -2
- hiddifypanel/models/base_account.py +3 -1
- hiddifypanel/models/config.py +10 -19
- hiddifypanel/models/config_enum.py +18 -6
- hiddifypanel/models/domain.py +82 -118
- hiddifypanel/models/user.py +44 -24
- hiddifypanel/panel/admin/Actions.py +6 -11
- hiddifypanel/panel/admin/AdminstratorAdmin.py +3 -9
- hiddifypanel/panel/admin/Backup.py +5 -8
- hiddifypanel/panel/admin/Dashboard.py +3 -4
- hiddifypanel/panel/admin/DomainAdmin.py +20 -15
- hiddifypanel/panel/admin/ProxyAdmin.py +3 -10
- hiddifypanel/panel/admin/QuickSetup.py +1 -1
- hiddifypanel/panel/admin/SettingAdmin.py +7 -5
- hiddifypanel/panel/admin/Terminal.py +0 -1
- hiddifypanel/panel/admin/UserAdmin.py +4 -3
- hiddifypanel/panel/admin/templates/model/proxydetail_list.html +6 -0
- hiddifypanel/panel/cli.py +36 -23
- hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +15 -5
- hiddifypanel/panel/commercial/restapi/v1/tgbot.py +7 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +17 -13
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +4 -3
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +28 -10
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +2 -19
- hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +27 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +28 -9
- hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -21
- hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +1 -1
- hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +8 -4
- hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +19 -3
- hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py +48 -42
- hiddifypanel/panel/commercial/telegrambot/Usage.py +1 -1
- hiddifypanel/panel/commercial/telegrambot/admin.py +1 -1
- hiddifypanel/panel/commercial/telegrambot/information.py +1 -1
- hiddifypanel/panel/common.py +5 -11
- hiddifypanel/panel/hiddify.py +9 -20
- hiddifypanel/panel/init_db.py +41 -24
- hiddifypanel/panel/usage.py +38 -9
- hiddifypanel/panel/user/user.py +52 -32
- hiddifypanel/templates/admin-layout.html +2 -2
- hiddifypanel/templates/fake.html +316 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +107 -45
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +102 -36
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +64 -7
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +161 -78
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +63 -6
- hiddifypanel/translations.i18n/en.json +83 -42
- hiddifypanel/translations.i18n/fa.json +73 -32
- hiddifypanel/translations.i18n/pt.json +45 -4
- hiddifypanel/translations.i18n/ru.json +113 -72
- hiddifypanel/translations.i18n/zh.json +44 -3
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/METADATA +2 -1
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/RECORD +83 -82
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/WHEEL +1 -1
- hiddifypanel/panel/cf_api.py +0 -37
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.20.3.dist-info → hiddifypanel-10.30.0.dist-info}/top_level.txt +0 -0
@@ -92,9 +92,6 @@ msgstr "CPU %(cores)s 核心"
|
|
92
92
|
msgid "Can add sub admin"
|
93
93
|
msgstr "👥 可以添加子管理员"
|
94
94
|
|
95
|
-
msgid "Can not connect to Cloudflare."
|
96
|
-
msgstr "无法连接cloudflare"
|
97
|
-
|
98
95
|
msgid "Check again"
|
99
96
|
msgstr "再检查一遍"
|
100
97
|
|
@@ -651,6 +648,9 @@ msgstr ""
|
|
651
648
|
msgid "Reset Filters"
|
652
649
|
msgstr "重置过滤器"
|
653
650
|
|
651
|
+
msgid "Reset Proxies"
|
652
|
+
msgstr ""
|
653
|
+
|
654
654
|
msgid "Reset Usage Time:"
|
655
655
|
msgstr "流量使用重置时间:"
|
656
656
|
|
@@ -1099,6 +1099,9 @@ msgstr "☑️ 自动 CDN IP 选择器"
|
|
1099
1099
|
msgid "cdn"
|
1100
1100
|
msgstr "🔀 CDN(Cloudflare 代理,...)"
|
1101
1101
|
|
1102
|
+
msgid "cf-delete.failed"
|
1103
|
+
msgstr ""
|
1104
|
+
|
1102
1105
|
msgid "child has been removed!"
|
1103
1106
|
msgstr "孩子已被移走!"
|
1104
1107
|
|
@@ -1111,15 +1114,15 @@ msgstr ""
|
|
1111
1114
|
msgid "child.sync-failed"
|
1112
1115
|
msgstr ""
|
1113
1116
|
|
1114
|
-
msgid "child.sync-success"
|
1115
|
-
msgstr ""
|
1116
|
-
|
1117
1117
|
msgid "clickable copy"
|
1118
1118
|
msgstr "社交媒体链接"
|
1119
1119
|
|
1120
1120
|
msgid "close"
|
1121
1121
|
msgstr "关闭"
|
1122
1122
|
|
1123
|
+
msgid "cloudflare.error"
|
1124
|
+
msgstr ""
|
1125
|
+
|
1123
1126
|
msgid "config.Domain already used"
|
1124
1127
|
msgstr "域存在于域部分。使用另一个域"
|
1125
1128
|
|
@@ -1344,6 +1347,12 @@ msgstr "配置.隐藏.描述"
|
|
1344
1347
|
msgid "config.hidden.label"
|
1345
1348
|
msgstr "配置.隐藏.标签"
|
1346
1349
|
|
1350
|
+
msgid "config.hiddifycli_enable.description"
|
1351
|
+
msgstr ""
|
1352
|
+
|
1353
|
+
msgid "config.hiddifycli_enable.label"
|
1354
|
+
msgstr ""
|
1355
|
+
|
1347
1356
|
msgid "config.http.description"
|
1348
1357
|
msgstr "HTTP 配置可以在此部分设置"
|
1349
1358
|
|
@@ -1444,6 +1453,12 @@ msgstr "config.last_hash.描述"
|
|
1444
1453
|
msgid "config.last_hash.label"
|
1445
1454
|
msgstr "配置.last_hash.label"
|
1446
1455
|
|
1456
|
+
msgid "config.last_priodic_usage_check.description"
|
1457
|
+
msgstr ""
|
1458
|
+
|
1459
|
+
msgid "config.last_priodic_usage_check.label"
|
1460
|
+
msgstr ""
|
1461
|
+
|
1447
1462
|
msgid "config.license.description"
|
1448
1463
|
msgstr "要将本产品用于商业用途,您必须购买其许可证"
|
1449
1464
|
|
@@ -1839,6 +1854,48 @@ msgstr "请在您的数据中心使用众所周知的域。例如,如果您在
|
|
1839
1854
|
msgid "config.ssr_fakedomain.label"
|
1840
1855
|
msgstr "SSR 假域名"
|
1841
1856
|
|
1857
|
+
msgid "config.sub_full_clash_enable.description"
|
1858
|
+
msgstr ""
|
1859
|
+
|
1860
|
+
msgid "config.sub_full_clash_enable.label"
|
1861
|
+
msgstr ""
|
1862
|
+
|
1863
|
+
msgid "config.sub_full_clash_meta_enable.description"
|
1864
|
+
msgstr ""
|
1865
|
+
|
1866
|
+
msgid "config.sub_full_clash_meta_enable.label"
|
1867
|
+
msgstr ""
|
1868
|
+
|
1869
|
+
msgid "config.sub_full_links_b64_enable.description"
|
1870
|
+
msgstr ""
|
1871
|
+
|
1872
|
+
msgid "config.sub_full_links_b64_enable.label"
|
1873
|
+
msgstr ""
|
1874
|
+
|
1875
|
+
msgid "config.sub_full_links_enable.description"
|
1876
|
+
msgstr ""
|
1877
|
+
|
1878
|
+
msgid "config.sub_full_links_enable.label"
|
1879
|
+
msgstr ""
|
1880
|
+
|
1881
|
+
msgid "config.sub_full_singbox_enable.description"
|
1882
|
+
msgstr ""
|
1883
|
+
|
1884
|
+
msgid "config.sub_full_singbox_enable.label"
|
1885
|
+
msgstr ""
|
1886
|
+
|
1887
|
+
msgid "config.sub_full_xray_json_enable.description"
|
1888
|
+
msgstr ""
|
1889
|
+
|
1890
|
+
msgid "config.sub_full_xray_json_enable.label"
|
1891
|
+
msgstr ""
|
1892
|
+
|
1893
|
+
msgid "config.sub_singbox_ssh_enable.description"
|
1894
|
+
msgstr ""
|
1895
|
+
|
1896
|
+
msgid "config.sub_singbox_ssh_enable.label"
|
1897
|
+
msgstr ""
|
1898
|
+
|
1842
1899
|
msgid "config.tcp_enable.description"
|
1843
1900
|
msgstr ""
|
1844
1901
|
|
@@ -29,7 +29,6 @@
|
|
29
29
|
"Bug": "Bug/Feature",
|
30
30
|
"CPU %(cores)s Cores": "CPU %(cores)s Core",
|
31
31
|
"Can add sub admin": "👥 Can Add Sub Admin",
|
32
|
-
"Can not connect to Cloudflare.": "Can not connect to Cloudflare.",
|
33
32
|
"Check again": "Check Again",
|
34
33
|
"Childs": "Children",
|
35
34
|
"China": "🇨🇳 China",
|
@@ -87,7 +86,7 @@
|
|
87
86
|
"HiddifyNG": "HiddifyNG <span class='badge badge-success'>Recommended</span>",
|
88
87
|
"HiddifyNG intro": "📌 Please install HiddifyNG from either of these links:\n<br />\n %(dl_link)s %(play_link)s\n<br />\nThen click on the link below and open it in HiddifyNG.\n<br />",
|
89
88
|
"HiddigyN": "HiddifyN <span class='badge badge-success'>Recommended</span>",
|
90
|
-
"Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot.\nStart by clicking the link on the panel or entering your UUID.": "Hooray 🎉 🎉 🎉 \nWelcome to Hiddify bot\nStart by clicking the link on the Panel or entering your UUID.",
|
89
|
+
"Hooray 🎉 🎉 🎉 \nWelcome to hiddifybot.\nStart by clicking the link on the panel or entering your UUID.": "Hooray 🎉 🎉 🎉 \nWelcome to Hiddify bot\nStart by clicking the link on the Panel or entering your UUID user.",
|
91
90
|
"Hover the user to see the reason": "Hover the user to see the reason",
|
92
91
|
"How many days this package should be available?": "How Many Days Is This Package?",
|
93
92
|
"How many?": "How many?",
|
@@ -165,6 +164,7 @@
|
|
165
164
|
"Remote nodes are not supported yet!": "Remote nodes are not supported yet!",
|
166
165
|
"Rename File": "Rename File",
|
167
166
|
"Reset Filters": "Reset Filters",
|
167
|
+
"Reset Proxies": "Reset Proxies",
|
168
168
|
"Reset Usage Time:": "Traffic usage reset time:",
|
169
169
|
"Reset every month": "Monthly",
|
170
170
|
"Reset package days": "📆 Reset Package's Days",
|
@@ -230,7 +230,7 @@
|
|
230
230
|
"With selected": "With selected",
|
231
231
|
"Xray": "☢️ XRay",
|
232
232
|
"Yesterday Usage": "Yesterday",
|
233
|
-
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n<br>\n/opt/hiddify-manager/hiddify-panel/backup/\n<br>\n<br>\n<br>\n⚠️ You can download a JSON file format of the configurations by clicking on the button below\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>Download Backup File</a>",
|
233
|
+
"You can download a json formated of configurations by clicking <a href='%(link)s' class='btn btn-primary'>here</a>": "🔄 Hiddify Manager automatically takes a Backup every 6 Hours. The path of the Backup files on the server: ⬇️\n<br>\n💿 /opt/hiddify-manager/hiddify-panel/backup/\n<br>\n<br>\n<br>\n⚠️ You can download a JSON file format of the configurations by clicking on the button below\n<br>\n<br>\n<a href='%(link)s' class='btn btn-primary'>Download Backup File</a>",
|
234
234
|
"You can restore your configs from previously downloaded configs": "ℹ️ You can restore your configs from previously downloaded backup file",
|
235
235
|
"You can select the configs with which domains show be shown in the user area. If you select all, automatically, all the new domains will be added for each users.": "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.",
|
236
236
|
"You have too much users! You can have only %(active)s active users and %(total)s users": "You have too much users! You can have only %(active)s active users and %(total)s users",
|
@@ -333,15 +333,20 @@
|
|
333
333
|
"auto": "Auto",
|
334
334
|
"auto_cdn_ip": "☑️ Automatic CDN IP Selector",
|
335
335
|
"cdn": "🔀 CDN (Cloudflare Proxy, ...)",
|
336
|
+
"cf-delete": {
|
337
|
+
"failed": "cf-delete.failed"
|
338
|
+
},
|
336
339
|
"child has been removed!": "Child Has Been Removed!",
|
337
340
|
"child": {
|
338
341
|
"register-failed": "child.register-failed",
|
339
342
|
"register-success": "child.register-success",
|
340
|
-
"sync-failed": "child.sync-failed"
|
341
|
-
"sync-success": "child.sync-success"
|
343
|
+
"sync-failed": "child.sync-failed"
|
342
344
|
},
|
343
345
|
"clickable copy": "Link for Social Media",
|
344
346
|
"close": "Close",
|
347
|
+
"cloudflare": {
|
348
|
+
"error": "cloudflare.error"
|
349
|
+
},
|
345
350
|
"config.Domain already used": "Domain is exist in domains section. Use another Domain",
|
346
351
|
"config.Invalid brand link": "Invalid Link. it should be on this format: (https or http://example.com)",
|
347
352
|
"config.Invalid domain": "Error! Invalid Domain. The Domain Format is www.google.com",
|
@@ -433,7 +438,7 @@
|
|
433
438
|
},
|
434
439
|
"domain_fronting": {
|
435
440
|
"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.",
|
436
|
-
"label": "🔒
|
441
|
+
"label": "🔒 TLS Domain Fronting"
|
437
442
|
},
|
438
443
|
"domain_fronting_domain": {
|
439
444
|
"description": "It is used to simulate another website instead of your website in SNI. therefore, GFW Can not filter your domain.",
|
@@ -441,11 +446,11 @@
|
|
441
446
|
},
|
442
447
|
"domain_fronting_http_enable": {
|
443
448
|
"description": "Enabling HTTP Domain Fronting causes your domain to be block quickly.",
|
444
|
-
"label": "
|
449
|
+
"label": "HTTP Domain Fronting"
|
445
450
|
},
|
446
451
|
"domain_fronting_tls_enable": {
|
447
452
|
"description": "In CloudFlare, TLS Domain Fronting is not supported. it will use Port 443 to connect to CDN",
|
448
|
-
"label": "🔒
|
453
|
+
"label": "🔒 TLS Domain Fronting"
|
449
454
|
},
|
450
455
|
"firewall": {
|
451
456
|
"description": "Enabling Firewall will open used Ports (at least 22,443,80 and SSH) and close all other Ports",
|
@@ -461,16 +466,20 @@
|
|
461
466
|
},
|
462
467
|
"grpc_enable": {
|
463
468
|
"description": "gRPC is a modern open source high performance Remote Procedure Call (RPC) framework. It can be used in supported CDNs",
|
464
|
-
"label": "➿
|
469
|
+
"label": "➿ gRPC"
|
465
470
|
},
|
466
471
|
"h2_enable": {
|
467
472
|
"description": "Enable HTTP/2 Protocol",
|
468
|
-
"label": "
|
473
|
+
"label": "🔵 h2"
|
469
474
|
},
|
470
475
|
"hidden": {
|
471
476
|
"description": "config.hidden.description",
|
472
477
|
"label": "config.hidden.label"
|
473
478
|
},
|
479
|
+
"hiddifycli_enable": {
|
480
|
+
"description": "config.hiddifycli_enable.description",
|
481
|
+
"label": "config.hiddifycli_enable.label"
|
482
|
+
},
|
474
483
|
"http": {
|
475
484
|
"description": "HTTP Configurations could be set in this section",
|
476
485
|
"label": "HTTP Configuration"
|
@@ -485,7 +494,7 @@
|
|
485
494
|
},
|
486
495
|
"httpupgrade_enable": {
|
487
496
|
"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 HiddifyNext, 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>",
|
488
|
-
"label": "🆙
|
497
|
+
"label": "🆙 HTTPUpgrade Method"
|
489
498
|
},
|
490
499
|
"hysteria": {
|
491
500
|
"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)",
|
@@ -497,7 +506,7 @@
|
|
497
506
|
},
|
498
507
|
"hysteria_enable": {
|
499
508
|
"description": "To Enable UDP based Hysteria Protocol",
|
500
|
-
"label": "
|
509
|
+
"label": "⚫️ Hysteria2"
|
501
510
|
},
|
502
511
|
"hysteria_obfs_enable": {
|
503
512
|
"description": " Enables Hysteria Obfuscation (Salamander)",
|
@@ -511,7 +520,7 @@
|
|
511
520
|
"description": "Hysteria Maximum Upload Speed",
|
512
521
|
"label": "⬆️ Hysteria Upload (mbps)"
|
513
522
|
},
|
514
|
-
"invalid-pattern-for-warp-sites": "
|
523
|
+
"invalid-pattern-for-warp-sites": "⚠️ The Site entered for the Warp does not match the specified template",
|
515
524
|
"is_parent": {
|
516
525
|
"description": "config.is_parent.description",
|
517
526
|
"label": "Parent Panel"
|
@@ -522,7 +531,7 @@
|
|
522
531
|
},
|
523
532
|
"kcp_enable": {
|
524
533
|
"description": "It is a UDP Based Protocol ",
|
525
|
-
"label": "
|
534
|
+
"label": "KCP"
|
526
535
|
},
|
527
536
|
"kcp_ports": {
|
528
537
|
"description": "Comma separated integers indicating the ports to use as KCP connection.\n",
|
@@ -536,6 +545,10 @@
|
|
536
545
|
"description": "config.last_hash.description",
|
537
546
|
"label": "config.last_hash.label"
|
538
547
|
},
|
548
|
+
"last_priodic_usage_check": {
|
549
|
+
"description": "config.last_priodic_usage_check.description",
|
550
|
+
"label": "config.last_priodic_usage_check.label"
|
551
|
+
},
|
539
552
|
"license": {
|
540
553
|
"description": "For commercial use of this Product, you must Purchase its License",
|
541
554
|
"label": "License Code"
|
@@ -562,7 +575,7 @@
|
|
562
575
|
},
|
563
576
|
"mux_enable": {
|
564
577
|
"description": "<p>Mux needs compatible clients. Mux in Hiddify Next 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>",
|
565
|
-
"label": "Ⓜ️ MUX
|
578
|
+
"label": "Ⓜ️ MUX (⚠️ Incompatible With Some Clients)"
|
566
579
|
},
|
567
580
|
"mux_max_connections": {
|
568
581
|
"description": "Maximum Connections. Conflict with Max Streams",
|
@@ -670,7 +683,7 @@
|
|
670
683
|
},
|
671
684
|
"quic_enable": {
|
672
685
|
"description": "Enable QUIC Protocol",
|
673
|
-
"label": "
|
686
|
+
"label": "🟡 QUIC"
|
674
687
|
},
|
675
688
|
"reality": {
|
676
689
|
"description": "REALITY eliminate the Server-Side TLS Fingerprint Feature",
|
@@ -678,7 +691,7 @@
|
|
678
691
|
},
|
679
692
|
"reality_enable": {
|
680
693
|
"description": "Enable Reality Protocol",
|
681
|
-
"label": "
|
694
|
+
"label": "🔴 Reality"
|
682
695
|
},
|
683
696
|
"reality_fallback_domain": {
|
684
697
|
"description": "When the GFW visit the Websites in Server names, it will be redirect to this Domain.",
|
@@ -722,7 +735,7 @@
|
|
722
735
|
},
|
723
736
|
"shadowsocks2022_enable": {
|
724
737
|
"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)",
|
725
|
-
"label": "⭕️
|
738
|
+
"label": "⭕️ Shadowsocks 2022"
|
726
739
|
},
|
727
740
|
"shadowsocks2022_method": {
|
728
741
|
"description": "This method also used in ShadowTLS and SSFakeTLS",
|
@@ -774,7 +787,7 @@
|
|
774
787
|
},
|
775
788
|
"ssh_server_enable": {
|
776
789
|
"description": "SSH Proxy is completely different than original SSH Server",
|
777
|
-
"label": "✔️
|
790
|
+
"label": "✔️ SSH Proxy"
|
778
791
|
},
|
779
792
|
"ssh_server_port": {
|
780
793
|
"description": "This is completely different from your original SSH server. It is a dedicated program.",
|
@@ -790,19 +803,47 @@
|
|
790
803
|
},
|
791
804
|
"ssr_enable": {
|
792
805
|
"description": "ShadowsocksR is a Fork of the original Shadowsocks project, claimed to be superior in terms of security and stability. Not tested. Not support accounting.",
|
793
|
-
"label": "
|
806
|
+
"label": "SSR"
|
794
807
|
},
|
795
808
|
"ssr_fakedomain": {
|
796
809
|
"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",
|
797
810
|
"label": "SSR FakeDomain"
|
798
811
|
},
|
812
|
+
"sub_full_clash_enable": {
|
813
|
+
"description": "config.sub_full_clash_enable.description",
|
814
|
+
"label": "config.sub_full_clash_enable.label"
|
815
|
+
},
|
816
|
+
"sub_full_clash_meta_enable": {
|
817
|
+
"description": "config.sub_full_clash_meta_enable.description",
|
818
|
+
"label": "config.sub_full_clash_meta_enable.label"
|
819
|
+
},
|
820
|
+
"sub_full_links_b64_enable": {
|
821
|
+
"description": "config.sub_full_links_b64_enable.description",
|
822
|
+
"label": "config.sub_full_links_b64_enable.label"
|
823
|
+
},
|
824
|
+
"sub_full_links_enable": {
|
825
|
+
"description": "config.sub_full_links_enable.description",
|
826
|
+
"label": "config.sub_full_links_enable.label"
|
827
|
+
},
|
828
|
+
"sub_full_singbox_enable": {
|
829
|
+
"description": "config.sub_full_singbox_enable.description",
|
830
|
+
"label": "config.sub_full_singbox_enable.label"
|
831
|
+
},
|
832
|
+
"sub_full_xray_json_enable": {
|
833
|
+
"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.",
|
834
|
+
"label": "XRay Full Config Link"
|
835
|
+
},
|
836
|
+
"sub_singbox_ssh_enable": {
|
837
|
+
"description": "config.sub_singbox_ssh_enable.description",
|
838
|
+
"label": "config.sub_singbox_ssh_enable.label"
|
839
|
+
},
|
799
840
|
"tcp_enable": {
|
800
841
|
"description": "Enable TCP Protocol",
|
801
|
-
"label": "
|
842
|
+
"label": "🟠 TCP"
|
802
843
|
},
|
803
844
|
"telegram": {
|
804
845
|
"description": "A proxy designed for Telegram to bypass Telegram filtering",
|
805
|
-
"label": "Telegram
|
846
|
+
"label": "Telegram Configs"
|
806
847
|
},
|
807
848
|
"telegram_adtag": {
|
808
849
|
"description": "It is used to show a Sponsored Channel in the client's chat list. To advertise a channel get a tag from @MTProxybot .\nenter code 0123456789ABCDEF0123456789ABCDEF in that bot.",
|
@@ -814,7 +855,7 @@
|
|
814
855
|
},
|
815
856
|
"telegram_enable": {
|
816
857
|
"description": "<p data-pm-slice=\"1 1 []\">Telegram MTProto is used for Encapsulate Telegram Proxy as a tls traffic<br>⚠️ <span style=\"color:#d32f2f;\"><strong>This protocol requires a Direct Domain</strong></span></p>",
|
817
|
-
"label": "✔️
|
858
|
+
"label": "✔️ Telegram MTProto"
|
818
859
|
},
|
819
860
|
"telegram_fakedomain": {
|
820
861
|
"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",
|
@@ -830,7 +871,7 @@
|
|
830
871
|
},
|
831
872
|
"tls_fragment_enable": {
|
832
873
|
"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>",
|
833
|
-
"label": "⏯
|
874
|
+
"label": "⏯ TLS Fragment"
|
834
875
|
},
|
835
876
|
"tls_fragment_size": {
|
836
877
|
"description": "The Size of each Packet",
|
@@ -842,11 +883,11 @@
|
|
842
883
|
},
|
843
884
|
"tls_mixed_case": {
|
844
885
|
"description": "Enables TLS Mixed SNI Case Fragmentation",
|
845
|
-
"label": "🔠
|
886
|
+
"label": "🔠 TLS Mixed SNI Case"
|
846
887
|
},
|
847
888
|
"tls_padding_enable": {
|
848
889
|
"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>",
|
849
|
-
"label": "♒️
|
890
|
+
"label": "♒️ TLS Padding"
|
850
891
|
},
|
851
892
|
"tls_padding_length": {
|
852
893
|
"description": "The length of the Padding for TLS Fragmentation",
|
@@ -870,7 +911,7 @@
|
|
870
911
|
},
|
871
912
|
"trojan_enable": {
|
872
913
|
"description": "Enable Trojan Protocol",
|
873
|
-
"label": "
|
914
|
+
"label": "🟤 Trojan"
|
874
915
|
},
|
875
916
|
"tuic": {
|
876
917
|
"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",
|
@@ -878,10 +919,10 @@
|
|
878
919
|
},
|
879
920
|
"tuic_enable": {
|
880
921
|
"description": "It is a UDP based protocol similar to QUIC",
|
881
|
-
"label": "
|
922
|
+
"label": "⚫️ TUIC"
|
882
923
|
},
|
883
924
|
"tuic_port": {
|
884
|
-
"description": "Use comma to separate ports like 63000,60000",
|
925
|
+
"description": "Use comma to separate ports like ( 63000,60000 )",
|
885
926
|
"label": "TUIC Ports"
|
886
927
|
},
|
887
928
|
"unique_id": {
|
@@ -894,18 +935,18 @@
|
|
894
935
|
},
|
895
936
|
"v2ray_enable": {
|
896
937
|
"description": "V2ray does not support accounting and not suggested",
|
897
|
-
"label": "♈️
|
938
|
+
"label": "♈️ V2Ray "
|
898
939
|
},
|
899
940
|
"validation-error": "There is an error in one of the fields.",
|
900
941
|
"validation-success": "Configs have been changed successfully. Click %(link)s to apply the configs. It may take 2 minutes to apply",
|
901
942
|
"validation-success-no-reset": " ✅ Configs have been changed successfully",
|
902
943
|
"vless_enable": {
|
903
944
|
"description": "Enable VLess Protocol",
|
904
|
-
"label": "
|
945
|
+
"label": "⚫️ VLess"
|
905
946
|
},
|
906
947
|
"vmess_enable": {
|
907
948
|
"description": "Active VMess Protocol",
|
908
|
-
"label": "
|
949
|
+
"label": "🟣 VMess"
|
909
950
|
},
|
910
951
|
"warp-https-domain-for-warp-site": "config.warp-https-domain-for-warp-site",
|
911
952
|
"warp": {
|
@@ -914,7 +955,7 @@
|
|
914
955
|
},
|
915
956
|
"warp_enable": {
|
916
957
|
"description": "Warp helps you bypass Google, Spotify and Netflix restrictions by hiding server IP ",
|
917
|
-
"label": "
|
958
|
+
"label": "WARP+"
|
918
959
|
},
|
919
960
|
"warp_mode": {
|
920
961
|
"description": "✴️ All : All Sites use Warp IPs in outbound\n<br>\n☑️ Only Domestic and Blocked Sites: Only Domestic Sites and websites like Google, Spotify, Netflix, OpenAi, IPinfo.io use Warp IPs in outbound",
|
@@ -934,7 +975,7 @@
|
|
934
975
|
},
|
935
976
|
"wireguard_enable": {
|
936
977
|
"description": "<p>WireGuard is UDP based protocol. (⚠️ It is Working In <a href=\"https://github.com/hiddify/hiddify-next\" target=\"_blank\">Hiddify Next</a>)</p>",
|
937
|
-
"label": "🐉
|
978
|
+
"label": "🐉 WireGuard"
|
938
979
|
},
|
939
980
|
"wireguard_ipv4": {
|
940
981
|
"description": "-",
|
@@ -962,11 +1003,11 @@
|
|
962
1003
|
},
|
963
1004
|
"ws_enable": {
|
964
1005
|
"description": "Websocket creates a tunnel over HTTP that is useful to be used in CDN",
|
965
|
-
"label": "🔰
|
1006
|
+
"label": "🔰 Websocket"
|
966
1007
|
},
|
967
1008
|
"xtls_enable": {
|
968
1009
|
"description": "Enable XTLS Protocol",
|
969
|
-
"label": "
|
1010
|
+
"label": "🟢 XTLS"
|
970
1011
|
}
|
971
1012
|
},
|
972
1013
|
"config.invalid uuid": "Invalid UUID secret. example: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6\n\n",
|
@@ -981,7 +1022,7 @@
|
|
981
1022
|
"domain": "Domain",
|
982
1023
|
"domain_fronting": {
|
983
1024
|
"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/Guide-for-domain-fronting'>Guide</a>. ⚠️CloudFlare does not support Domain Fronting.",
|
984
|
-
"label": "🔒
|
1025
|
+
"label": "🔒 TLS Domain Fronting"
|
985
1026
|
},
|
986
1027
|
"ip": "IP",
|
987
1028
|
"mode": "Mode"
|
@@ -995,11 +1036,11 @@
|
|
995
1036
|
"ios": "iOS",
|
996
1037
|
"items": "items",
|
997
1038
|
"lang": {
|
998
|
-
"en": "🇺🇸 English انگلیسی
|
999
|
-
"fa": "🇮🇷 Persian فارسی
|
1000
|
-
"pt": "🇵🇹 Portuguese
|
1001
|
-
"ru": "🇷🇺 Russian
|
1002
|
-
"zh": "🇨🇳 Chinese
|
1039
|
+
"en": "🇺🇸 English - انگلیسی",
|
1040
|
+
"fa": "🇮🇷 Persian - فارسی",
|
1041
|
+
"pt": "🇵🇹 Portuguese",
|
1042
|
+
"ru": "🇷🇺 Russian - Русский",
|
1043
|
+
"zh": "🇨🇳 Chinese - 简体中文"
|
1003
1044
|
},
|
1004
1045
|
"lib": {
|
1005
1046
|
"telegram": {
|