vless节点 IPV4
- 需读取同目录下的IP文本 4.txt
F1 & j::
; 读取剪贴板内容
;originalText := Clipboard
originalText := "vless://[email protected]:2083?encryption=none&security=tls&sni=yyyty.zbb25.filegear-sg.me&fp=random&type=ws&host=yyyty.zbb25.filegear-sg.me&path=%2F%3Fed%3D2560#p"
;originalText := "vless://[email protected]:2096?encryption=none&security=tls&sni=edk.v07.us.kg&type=ws&host=edk.v07.us.kg&path=%3Fed%3D2560#aa"
; 可修改 6784c6ee-cc88-419b-8fee-ca090dbaa428和edk.v07.us.kg 以及最后的#C
; 读取 IP 列表文件
ipList := []
Loop, Read, 4.txt
{
ipList.Push(A_LoopReadLine) ; 逐行读取并存入数组
}
newText := "" ; 存储最终文本
; 依次替换 IP
for index, ip in ipList
{
newText .= StrReplace(originalText, "104.21.236.177", ip) . "`n"
}
; 写入剪贴板
Clipboard := RTrim(newText, "`n")
;MsgBox, 生成完成,已复制到剪贴板!
return
;ΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞ F1 & j 将4.txt中的IP替换为节点 ΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞ 00000004-3062
trojan节点
- 需读取同目录下的IP文本 5.txt
F1 & i::
; 读取剪贴板内容
;originalText := Clipboard
originalText := "trojan://47%5ER%7DB%5B%3BU%2B%25B%29i%[email protected]:2087?security=tls&sni=309pB.ZbB.dnS-DYnAMic.nET&alpn=h2%2Chttp%2F1.1&fp=randomized&type=ws&host=309pb.zbb.dns-dynamic.net&path=%2FtrzK9DMAj2zBKkHhtR%3Fed%3D2560#bn"
;originalText := "trojan://[email protected]:8443?security=tls&sni=agept.ambercc.filegear-sg.me&type=ws&host=agept.ambercc.filegear-sg.me&path=%2F#qq"
; 读取 IP 列表文件
ipList := []
Loop, Read, 5.txt
{
ipList.Push(A_LoopReadLine) ; 逐行读取并存入数组
}
newText := "" ; 存储最终文本
; 依次替换 IP
for index, ip in ipList
{
newText .= StrReplace(originalText, "206.238.236.31", ip) . "`n"
}
; 写入剪贴板
Clipboard := RTrim(newText, "`n")
;MsgBox, 生成完成,已复制到剪贴板!
return
;ΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞ F1 & i 将5.txt中的IP替换为节点 ΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞ 00000004-3062 vless
vless节点 IPV6
- 需读取同目录下的IP文本 6.txt
F1 & u::
; 读取剪贴板内容
;originalText := Clipboard
originalText := "vless://a2a6f6ae-7f5b-42ed-9842-e346e56bc22b@[2606:4700::31ed:42ab]:2087?encryption=none&security=tls&sni=zyd.zcr25.ggff.net&fp=randomized&type=ws&host=zyd.zcr25.ggff.net&path=%2F%3Fed%3D2560#zy"
;originalText := "vless://1ae2d51f-1cfe-4453-b7f5-e2bf8263a9d1@[2606:4700::31ed:42ab]:2053?encryption=none&security=tls&sni=ff.v07.us.kg&fp=random&type=ws&host=ff.v07.us.kg&path=%2F%3Fed%3D2560#ii"
; 可修改 6784c6ee-cc88-419b-8fee-ca090dbaa428和edk.v07.us.kg 以及最后的#C
; 读取 IP 列表文件
ipList := []
Loop, Read, 6.txt
{
ipList.Push(A_LoopReadLine) ; 逐行读取并存入数组
}
newText := "" ; 存储最终文本
; 依次替换 IP
for index, ip in ipList
{
newText .= StrReplace(originalText, "[2606:4700::31ed:42ab]", ip) . "`n"
}
; 写入剪贴板
Clipboard := RTrim(newText, "`n")
;MsgBox, 生成完成,已复制到剪贴板!
return
;ΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞ F1 & u 将6.txt中的IP替换为节点 ΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞΞ 00000004-3062
转载请注明出处