Skip to content

Commit 9bf4433

Browse files
committed
fix: mieru naive ssh user usage iss
1 parent cfdae18 commit 9bf4433

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

hiddify-panel/src

Submodule src updated from 3bd26d2 to b5bed9d

singbox/configs/01_api.json.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"outbounds": ["WARP","freedom","blackhole"],
99
"users": [
1010
{% for u in users %}
11-
"{{ u['uuid'] }}@hiddify.com",
11+
"{{ u['uuid'] }}",
1212
{% endfor%}
1313
]
1414
}

singbox/configs/common/protocols/ss.pj2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"password": "{{ hconfigs['shared_secret'].replace('-','')|b64encode}}",
44
"users": [
55
{% for u in users %}
6-
{"name": "{{ u['uuid'] }}@hiddify.com", "password": "{{ u['uuid'].replace('-','')|b64encode}}"},
6+
{"name": "{{ u['uuid'] }}", "password": "{{ u['uuid'].replace('-','')|b64encode}}"},
77
{% endfor%}
88
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"type": "trojan",
22
"users": [
33
{% for u in users %}
4-
{"name": "{{ u['uuid'] }}@hiddify.com", "password": "{{ u['uuid'] }}"},
4+
{"name": "{{ u['uuid'] }}", "password": "{{ u['uuid'] }}"},
55
{% endfor%}
66
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"type": "vless",
22
"users": [
33
{% for u in users %}
4-
{"name": "{{ u['uuid'] }}@hiddify.com", "uuid": "{{ u['uuid'] }}","flow": "{{flow}}"},
4+
{"name": "{{ u['uuid'] }}", "uuid": "{{ u['uuid'] }}","flow": "{{flow}}"},
55
{% endfor%}
66
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"type": "vmess",
22
"users": [
33
{% for u in users %}
4-
{"uuid": "{{ u['uuid'] }}", "name": "{{ u['uuid'] }}@hiddify.com", "alterId": 0},
4+
{"uuid": "{{ u['uuid'] }}", "name": "{{ u['uuid'] }}", "alterId": 0},
55
{% endfor%}
66
]

0 commit comments

Comments
 (0)