├── .github └── workflows │ └── action.yml ├── README.md ├── iptv.m3u8 ├── main.py ├── main_2.py ├── requirements.txt ├── ss.txt ├── ssr.txt ├── trojan.txt └── v2ray.txt /.github/workflows/action.yml: -------------------------------------------------------------------------------- 1 | 2 | name: "数据爬取" 3 | on: 4 | # push的时候触发 5 | # push: 6 | # branches: main 7 | workflow_dispatch: 8 | # 定时触发 9 | schedule: 10 | - cron: '0 */3 * * *' 11 | # 表达式生成 https://crontab.guru/ 12 | # 此处是UTC时间 即北京时间 -8小时 13 | # - cron: '40 2,12 * * *' 14 | jobs: 15 | deploy: 16 | runs-on: ubuntu-latest 17 | steps: 18 | - name: 迁出代码 19 | uses: actions/checkout@v2 20 | - name: 安装Python 21 | uses: actions/setup-python@v2 22 | with: 23 | python-version: '3.x' 24 | - name: 加载缓存 25 | uses: actions/cache@v2 26 | with: 27 | path: ~/.cache/pip 28 | key: ${{ runner.os }}-pip-${{ hashFiles('**/run_in_Actions/requirements.txt') }} 29 | restore-keys: | 30 | ${{ runner.os }}-pip- 31 | - name: 设置时区 32 | run: sudo timedatectl set-timezone 'Asia/Shanghai' 33 | - name: 安装依赖 34 | run: | 35 | pip install -r requirements.txt 36 | - name: 执行任务 37 | run: | 38 | python main.py 39 | - name: 提交更改 40 | run: | 41 | git config --local user.email "738419006@qq.com" 42 | git config --local user.name "MambaOutZY" 43 | git add v2ray.txt 44 | git add ss.txt 45 | git add ssr.txt 46 | git add trojan.txt 47 | git commit -m "更新订阅链接" 48 | - name: 推送更改 49 | uses: ad-m/github-push-action@master 50 | with: 51 | github_token: ${{secrets.PUSH_TOKEN}} 52 | branch: main 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 免费订阅节点! 2 | 3 | 免费订阅节点! 4 | 支持VMESS+V2RAY+SS+SSR 5 | 6 | 7 | 8 | 所提供的节点均收集整理自互联网,仅供加速访问、提高安全性之用,禁止用其浏览任何违反所在国或地区法律的内容。凡因违法浏览或使用而引起的任何法律纠纷,概不负责。 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import urllib 2 | import bs4 3 | import re 4 | import requests 5 | from bs4 import BeautifulSoup 6 | import time 7 | from requests.packages.urllib3.exceptions import InsecureRequestWarning 8 | 9 | requests.packages.urllib3.disable_warnings(InsecureRequestWarning) 10 | 11 | 12 | 13 | def main(): 14 | resp = requests.get("https://hello.stgod.com/clash/proxies?nc=CN,c=HK,TW,JP&speed=20,100&type=vmess") 15 | with open('./v2ray.txt', 'w', encoding="utf-8") as f: 16 | f.write(resp.text) 17 | 18 | resp = requests.get("https://hello.stgod.com/clash/proxies?nc=CN,c=HK,TW,JP&type=ss") 19 | with open('./ss.txt', 'w', encoding="utf-8") as f: 20 | f.write(resp.text) 21 | resp = requests.get("https://hello.stgod.com/clash/proxies?nc=CN,c=HK,TW,JP&type=ssr") 22 | with open('./ssr.txt', 'w', encoding="utf-8") as f: 23 | f.write(resp.text) 24 | resp = requests.get("https://hello.stgod.com/clash/proxies?nc=CN,c=HK,TW,JP&type=trojan") 25 | with open('./trojan.txt', 'w', encoding="utf-8") as f: 26 | f.write(resp.text) 27 | 28 | # 主函数入口 29 | if __name__ == '__main__': 30 | main() 31 | -------------------------------------------------------------------------------- /main_2.py: -------------------------------------------------------------------------------- 1 | import urllib 2 | import bs4 3 | import re 4 | import requests 5 | from bs4 import BeautifulSoup 6 | import time 7 | from requests.packages.urllib3.exceptions import InsecureRequestWarning 8 | 9 | requests.packages.urllib3.disable_warnings(InsecureRequestWarning) 10 | 11 | 12 | 13 | def main(): 14 | response = urllib.request.urlopen(${{secrets.REQURL}}) 15 | html = response.read().decode('utf-8') 16 | soup = BeautifulSoup(html, 'html.parser') 17 | thumb = soup.find_all("div", class_="thumb")[0] 18 | todayUrl = thumb.a.attrs['href'] 19 | todayResponse = urllib.request.urlopen(todayUrl) 20 | todayHtml = todayResponse.read().decode('utf-8') 21 | todayBs = BeautifulSoup(todayHtml, 'html.parser') 22 | result = todayBs.find_all(text=re.compile("https://drive.google.com")) 23 | urlResuT = todayBs.find_all(text=re.compile("vmess://")) 24 | urlAll = [] 25 | for x in urlResuT: 26 | urlAll.append(str(x)) 27 | # urlStr = "" 28 | # url = urlStr.join(urlAll) 29 | 30 | open("./url.txt", "w").writelines(urlAll) 31 | 32 | 33 | v2ray = "" 34 | v2ray = "".join(result[0]) 35 | v2ray = v2ray[v2ray.index("http"):] 36 | v2rayTxt = requests.request("GET", v2ray, verify=False) 37 | with open('./v2ray.txt', 'w', encoding="utf-8") as f: 38 | f.write(v2rayTxt.text) 39 | clash = "" 40 | clash = "".join(result[1]) 41 | clash = clash[clash.index("http"):] 42 | clashTxt = requests.request("GET", clash, verify=False) 43 | day = time.strftime('%Y.%m.%d', time.localtime(time.time())) 44 | with open('./clash.txt', 'wb') as f: 45 | f.write(clashTxt.content) 46 | 47 | 48 | # 主函数入口 49 | if __name__ == '__main__': 50 | main() 51 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | requests==2.25.1 3 | pytz==2021.1 4 | feedparser==6.0.2 5 | bs4==0.0.1 6 | urllib3==1.26.4 7 | -------------------------------------------------------------------------------- /ss.txt: -------------------------------------------------------------------------------- 1 | proxies: 2 | - {"name":"🇨🇦 CA_02","server":"198.57.27.218","type":"ss","country":"🇨🇦 CA","port":2376,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 3 | - {"name":"🇨🇦 CA_03","server":"198.57.27.218","type":"ss","country":"🇨🇦 CA","port":3389,"password":"Y6R9pAtvxxzmGC","cipher":"aes-256-gcm"} 4 | - {"name":"🇨🇦 CA_04","server":"198.57.27.218","type":"ss","country":"🇨🇦 CA","port":8091,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 5 | - {"name":"🇩🇪 DE_32","server":"146.0.36.23","type":"ss","country":"🇩🇪 DE","port":2375,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 6 | - {"name":"🇩🇪 DE_33","server":"146.0.36.23","type":"ss","country":"🇩🇪 DE","port":7306,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 7 | - {"name":"🇩🇪 DE_34","server":"93.186.201.124","type":"ss","country":"🇩🇪 DE","port":812,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 8 | - {"name":"🇩🇪 DE_35","server":"146.0.36.23","type":"ss","country":"🇩🇪 DE","port":8090,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 9 | - {"name":"🇩🇪 DE_36","server":"146.0.36.23","type":"ss","country":"🇩🇪 DE","port":2376,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 10 | - {"name":"🇩🇪 DE_37","server":"146.0.36.23","type":"ss","country":"🇩🇪 DE","port":8080,"password":"KixLvKzwjekG00rm","cipher":"aes-256-gcm"} 11 | - {"name":"🇩🇪 DE_38","server":"141.95.0.26","type":"ss","country":"🇩🇪 DE","port":826,"password":"sF43Xt2gONqcgFX563","cipher":"chacha20-ietf-poly1305"} 12 | - {"name":"🇩🇪 DE_39","server":"146.0.36.23","type":"ss","country":"🇩🇪 DE","port":3389,"password":"Y6R9pAtvxxzmGC","cipher":"aes-256-gcm"} 13 | - {"name":"🇩🇪 DE_40","server":"141.95.0.23","type":"ss","country":"🇩🇪 DE","port":801,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 14 | - {"name":"🇫🇷 FR_42","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":3389,"password":"Y6R9pAtvxxzmGC","cipher":"aes-256-gcm"} 15 | - {"name":"🇫🇷 FR_43","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":8091,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 16 | - {"name":"🇫🇷 FR_44","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":5003,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 17 | - {"name":"🇫🇷 FR_45","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":443,"password":"pKEW8JPByTVTLtM","cipher":"aes-256-gcm"} 18 | - {"name":"🇫🇷 FR_46","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":8090,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 19 | - {"name":"🇫🇷 FR_47","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":7306,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 20 | - {"name":"🇫🇷 FR_48","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":5004,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 21 | - {"name":"🇫🇷 FR_49","server":"145.239.1.137","type":"ss","country":"🇫🇷 FR","port":8080,"password":"KixLvKzwjekG00rm","cipher":"aes-256-gcm"} 22 | - {"name":"🇭🇰 HK_55","server":"118.107.244.110","type":"ss","country":"🇭🇰 HK","port":3306,"password":"Y6R9pAtvxxzmGC","cipher":"aes-256-gcm"} 23 | - {"name":"🇭🇰 HK_56","server":"118.107.244.110","type":"ss","country":"🇭🇰 HK","port":5004,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 24 | - {"name":"🇭🇰 HK_57","server":"118.107.244.110","type":"ss","country":"🇭🇰 HK","port":2376,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 25 | - {"name":"🇳🇴 NO_85","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":2375,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 26 | - {"name":"🇳🇴 NO_86","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":7307,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 27 | - {"name":"🇳🇴 NO_87","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":5004,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 28 | - {"name":"🇳🇴 NO_88","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":2376,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 29 | - {"name":"🇳🇴 NO_89","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":8091,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 30 | - {"name":"🇳🇴 NO_90","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":7306,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 31 | - {"name":"🇳🇴 NO_91","server":"46.29.218.6","type":"ss","country":"🇳🇴 NO","port":443,"password":"pKEW8JPByTVTLtM","cipher":"aes-256-gcm"} 32 | - {"name":"🇸🇬 SG_104","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":810,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 33 | - {"name":"🇸🇬 SG_105","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":802,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 34 | - {"name":"🇸🇬 SG_106","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":807,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 35 | - {"name":"🇸🇬 SG_107","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":806,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 36 | - {"name":"🇸🇬 SG_108","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":801,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 37 | - {"name":"🇸🇬 SG_109","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":800,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 38 | - {"name":"🇸🇬 SG_110","server":"81.90.189.18","type":"ss","country":"🇸🇬 SG","port":809,"password":"G!yBwPWH3Vao","cipher":"chacha20-ietf-poly1305"} 39 | - {"name":"🇺🇸 US_120","server":"38.86.135.27","type":"ss","country":"🇺🇸 US","port":5003,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 40 | - {"name":"🇺🇸 US_121","server":"38.68.134.190","type":"ss","country":"🇺🇸 US","port":7307,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 41 | - {"name":"🇺🇸 US_122","server":"38.68.134.190","type":"ss","country":"🇺🇸 US","port":8080,"password":"KixLvKzwjekG00rm","cipher":"aes-256-gcm"} 42 | - {"name":"🏁 ZZ_147","server":"134.195.196.3","type":"ss","country":"🏁 ZZ","port":7307,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 43 | - {"name":"🏁 ZZ_148","server":"134.195.198.252","type":"ss","country":"🏁 ZZ","port":2376,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 44 | - {"name":"🏁 ZZ_149","server":"134.195.196.3","type":"ss","country":"🏁 ZZ","port":3306,"password":"Y6R9pAtvxxzmGC","cipher":"aes-256-gcm"} 45 | - {"name":"🏁 ZZ_150","server":"134.195.198.95","type":"ss","country":"🏁 ZZ","port":7306,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 46 | - {"name":"🏁 ZZ_151","server":"134.195.198.95","type":"ss","country":"🏁 ZZ","port":8090,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 47 | - {"name":"🏁 ZZ_152","server":"134.195.196.3","type":"ss","country":"🏁 ZZ","port":5003,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 48 | - {"name":"🏁 ZZ_153","server":"134.195.196.3","type":"ss","country":"🏁 ZZ","port":5004,"password":"g5MeD6Ft3CWlJId","cipher":"aes-256-gcm"} 49 | - {"name":"🏁 ZZ_154","server":"134.195.196.3","type":"ss","country":"🏁 ZZ","port":8080,"password":"KixLvKzwjekG00rm","cipher":"aes-256-gcm"} 50 | - {"name":"🏁 ZZ_155","server":"134.195.198.252","type":"ss","country":"🏁 ZZ","port":2375,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 51 | - {"name":"🏁 ZZ_156","server":"134.195.198.252","type":"ss","country":"🏁 ZZ","port":7306,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 52 | - {"name":"🏁 ZZ_157","server":"134.195.198.95","type":"ss","country":"🏁 ZZ","port":2375,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 53 | - {"name":"🏁 ZZ_158","server":"134.195.198.95","type":"ss","country":"🏁 ZZ","port":2376,"password":"faBAoD54k87UJG7","cipher":"aes-256-gcm"} 54 | - {"name":"🏁 ZZ_159","server":"134.195.198.252","type":"ss","country":"🏁 ZZ","port":8090,"password":"PCnnH6SQSnfoS27","cipher":"aes-256-gcm"} 55 | - {"name":"🏁 ZZ_160","server":"134.195.198.252","type":"ss","country":"🏁 ZZ","port":7307,"password":"FoOiGlkAA9yPEGP","cipher":"aes-256-gcm"} 56 | -------------------------------------------------------------------------------- /ssr.txt: -------------------------------------------------------------------------------- 1 | proxies: 2 | - {"name":"NULL","server":"NULL","port":11708,"type":"ssr","country":"NULL","password":"sEscPBiAD9K$\u0026@79","cipher":"aes-256-cfb","protocol":"origin","protocol_param":"NULL","obfs":"http_simple"} -------------------------------------------------------------------------------- /trojan.txt: -------------------------------------------------------------------------------- 1 | proxies: 2 | - {"name":"🇨🇦 CA_10","server":"t5.ssrsub.com","type":"trojan","country":"🇨🇦 CA","port":8443,"password":"1b89d065-8640-4010-a80e-dc0c46a72aaf","skip-cert-verify":true,"udp":true} 3 | - {"name":"🇨🇦 CA_11","server":"ca-trojan.bonds.id","type":"trojan","country":"🇨🇦 CA","port":443,"password":"ac5a3ef0-b4ab-11eb-b65e-1239d0255272","skip-cert-verify":true,"udp":true} 4 | - {"name":"🇨🇦 CA_12","server":"t5.ssrsub.com","type":"trojan","country":"🇨🇦 CA","port":8443,"password":"0e13b5a9-cb62-44cd-b28e-47f137624694","skip-cert-verify":true,"udp":true} 5 | - {"name":"🇩🇪 DE_41","server":"5.183.179.138","type":"trojan","country":"🇩🇪 DE","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 6 | - {"name":"🇫🇷 FR_51","server":"fr-trojan.bonds.id","type":"trojan","country":"🇫🇷 FR","port":443,"password":"7c9b7560-b0f7-11eb-a397-1239d0255272","skip-cert-verify":true,"udp":true} 7 | - {"name":"🇬🇧 GB_54","server":"109.74.194.189","type":"trojan","country":"🇬🇧 GB","port":1443,"password":"7x42LetRa0","skip-cert-verify":true,"udp":true} 8 | - {"name":"🇭🇰 HK_63","server":"hk31.ssgnode.ga","type":"trojan","country":"🇭🇰 HK","port":443,"password":"41742_920c8caa","skip-cert-verify":true,"udp":true} 9 | - {"name":"🇭🇰 HK_64","server":"www.zx07.top","type":"trojan","country":"🇭🇰 HK","port":443,"password":"L1qNeGrY58ApwrRA","skip-cert-verify":true,"udp":true} 10 | - {"name":"🇮🇩 ID_65","server":"id2-trojan.bonds.id","type":"trojan","country":"🇮🇩 ID","port":443,"password":"8d4ab0f0-79be-11eb-be0b-1239d0255272","skip-cert-verify":true,"udp":true} 11 | - {"name":"🇳🇱 NL_76","server":"185.171.120.144","type":"trojan","country":"🇳🇱 NL","port":443,"password":"a3fa58b581353bb375d2ddad0f327938","skip-cert-verify":true,"udp":true} 12 | - {"name":"🇳🇱 NL_77","server":"89.31.127.151","type":"trojan","country":"🇳🇱 NL","port":443,"password":"36ebef7d1b1d6205fd0c55f28800e674","skip-cert-verify":true,"udp":true} 13 | - {"name":"🇳🇱 NL_78","server":"89.31.127.151","type":"trojan","country":"🇳🇱 NL","port":443,"password":"a3fa58b581353bb375d2ddad0f327938","skip-cert-verify":true,"udp":true} 14 | - {"name":"🇳🇱 NL_79","server":"185.171.120.144","type":"trojan","country":"🇳🇱 NL","port":443,"password":"36ebef7d1b1d6205fd0c55f28800e674","skip-cert-verify":true,"udp":true} 15 | - {"name":"🇳🇱 NL_80","server":"89.31.127.151","type":"trojan","country":"🇳🇱 NL","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 16 | - {"name":"🇳🇱 NL_81","server":"185.171.120.144","type":"trojan","country":"🇳🇱 NL","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 17 | - {"name":"🇳🇱 NL_82","server":"nl-trojan.bonds.id","type":"trojan","country":"🇳🇱 NL","port":443,"password":"94af0550-902b-11eb-b135-1239d0255272","skip-cert-verify":true,"udp":true} 18 | - {"name":"🇳🇱 NL_83","server":"nl-trojan.bonds.id","type":"trojan","country":"🇳🇱 NL","port":443,"password":"7e6256a0-b4ab-11eb-bc8f-1239d0255272","skip-cert-verify":true,"udp":true} 19 | - {"name":"🇳🇱 NL_84","server":"nl-trojan.bonds.id","type":"trojan","country":"🇳🇱 NL","port":443,"password":"96884680-77e6-11eb-8d67-1239d0255272","skip-cert-verify":true,"udp":true} 20 | - {"name":"🇷🇴 RO_92","server":"185.126.116.235","type":"trojan","country":"🇷🇴 RO","port":443,"password":"36ebef7d1b1d6205fd0c55f28800e674","skip-cert-verify":true,"udp":true} 21 | - {"name":"🇷🇴 RO_93","server":"185.126.116.235","type":"trojan","country":"🇷🇴 RO","port":443,"password":"a3fa58b581353bb375d2ddad0f327938","skip-cert-verify":true,"udp":true} 22 | - {"name":"🇷🇴 RO_94","server":"185.126.116.235","type":"trojan","country":"🇷🇴 RO","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 23 | - {"name":"🇷🇴 RO_95","server":"62.216.92.180","type":"trojan","country":"🇷🇴 RO","port":443,"password":"a3fa58b581353bb375d2ddad0f327938","skip-cert-verify":true,"udp":true} 24 | - {"name":"🇷🇴 RO_96","server":"185.105.191.92","type":"trojan","country":"🇷🇴 RO","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 25 | - {"name":"🇷🇴 RO_97","server":"62.216.92.179","type":"trojan","country":"🇷🇴 RO","port":443,"password":"a3fa58b581353bb375d2ddad0f327938","skip-cert-verify":true,"udp":true} 26 | - {"name":"🇷🇴 RO_98","server":"62.216.92.179","type":"trojan","country":"🇷🇴 RO","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 27 | - {"name":"🇷🇺 RU_102","server":"t4.ssrsub.com","type":"trojan","country":"🇷🇺 RU","port":8443,"password":"1b89d065-8640-4010-a80e-dc0c46a72aaf","skip-cert-verify":true,"udp":true} 28 | - {"name":"🇷🇺 RU_103","server":"t7.ssrsub.com","type":"trojan","country":"🇷🇺 RU","port":8443,"password":"0e13b5a9-cb62-44cd-b28e-47f137624694","skip-cert-verify":true,"udp":true} 29 | - {"name":"🇸🇬 SG_115","server":"sg3-trojan.bonds.id","type":"trojan","country":"🇸🇬 SG","port":443,"password":"97fdf760-7bbf-11eb-8e14-1239d0255272","skip-cert-verify":true,"udp":true} 30 | - {"name":"🇺🇸 US_141","server":"72.167.45.6","type":"trojan","country":"🇺🇸 US","port":443,"password":"36ebef7d1b1d6205fd0c55f28800e674","skip-cert-verify":true,"udp":true} 31 | - {"name":"🇺🇸 US_142","server":"72.167.45.6","type":"trojan","country":"🇺🇸 US","port":443,"password":"a3fa58b581353bb375d2ddad0f327938","skip-cert-verify":true,"udp":true} 32 | - {"name":"🇺🇸 US_143","server":"v.9051246.xyz","type":"trojan","country":"🇺🇸 US","port":443,"password":"18825786","skip-cert-verify":true,"udp":true} 33 | - {"name":"🇺🇸 US_144","server":"tky3.ssgnode.ga","type":"trojan","country":"🇺🇸 US","port":443,"password":"23115_5a451f03","skip-cert-verify":true,"udp":true} 34 | - {"name":"🇺🇸 US_145","server":"share.softbank.mjj-home.com","type":"trojan","country":"🇺🇸 US","port":443,"password":"share.mjj-home.com","skip-cert-verify":true,"udp":true} 35 | - {"name":"🇺🇸 US_146","server":"72.167.45.6","type":"trojan","country":"🇺🇸 US","port":443,"password":"28d98f761aca9d636f44db62544628eb","skip-cert-verify":true,"udp":true} 36 | -------------------------------------------------------------------------------- /v2ray.txt: -------------------------------------------------------------------------------- 1 | proxies: 2 | - {"name":"NULL","server":"NULL","port":11708,"type":"ssr","country":"NULL","password":"sEscPBiAD9K$\u0026@79","cipher":"aes-256-cfb","protocol":"origin","protocol_param":"NULL","obfs":"http_simple"} --------------------------------------------------------------------------------