Last active
October 8, 2025 10:09
-
-
Save zjx20/25dff5a670ca55d8aba223f508691dfb to your computer and use it in GitHub Desktop.
Convert v2ray config.json (client side) to a subscription content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# brew install jq | |
# brew install qrencode | |
config_file=v2rayx*.json | |
rss_file=rss.txt | |
cat $config_file | \ | |
jq --raw-output ' | |
def cred: | |
"\(.settings.vnext[0].users[0].security):\(.settings.vnext[0].users[0].id)@\(.settings.vnext[0].address):\(.settings.vnext[0].port)" | |
; | |
def header_host: | |
(.streamSettings.wsSettings.headers // {}) as $h | | |
($h | to_entries | map(select(.key|ascii_downcase == "host")) | .[0]?.value) | |
; | |
def network: | |
if .streamSettings.network == "ws" then | |
("path=\(.streamSettings.wsSettings.path)&obfs=websocket" | |
+ (header_host as $host | if $host then "&obfsParam=\($host)" else "" end)) | |
else | |
"obfs=none" | |
end | |
; | |
def tls: | |
if .streamSettings.security == "tls" then | |
"tls=1&peer=\(.streamSettings.tlsSettings.serverName)" | |
else | |
"tls=0" | |
end | |
; | |
def mux: | |
if .mux?.enabled? then "mux=1" else "mux=0" end | |
; | |
def alterid: | |
"\(.settings.vnext[0].users[0].alterId)" | |
; | |
.outbounds | map(select(.protocol == "vmess")) | .[] | | |
cred as $cred | | |
network as $network | | |
tls as $tls | | |
mux as $mux | | |
alterid as $alterid | | |
{ cred: $cred, remarks: .tag, network: $network, tls: $tls, mux: $mux, alterid: $alterid } | | |
.cred = @base64 "\(.cred)" | .remarks = @uri "\(.remarks)" | | |
"vmess://\(.cred)?remarks=\(.remarks)&\(.network)&\(.tls)&\(.mux)&alterId=\(.alterid)"' | \ | |
base64 > $rss_file | |
# put $rss_file to somewhere, then your qr code for the subscribe link is | |
rss_url="https://yourserver/rss.txt" | |
qrencode -t ANSI $(echo "sub://$(echo "$rss_url" | base64)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mulezic OK, I understand. You can tell me what server software or script you are using, what client you are planning to use, and also a sample json config (without sensitive information). I can help you determine the feasibility of the situation.