├── .gitignore ├── go.mod ├── rebootXray.sh ├── configs-node ├── inbounds.json ├── base.json ├── routing.json └── outbounds.json ├── Dockerfile-xray-master ├── configs-master ├── base.json ├── outbounds.json ├── inbounds.json └── routing.json ├── Dockerfile-xray-node ├── faces.go ├── README.md ├── docker-compose.yml └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/MrMohebi/xray-iran-bridge 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /rebootXray.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pkill xray 4 | /root/xray-core/xray run -confdir /root/xray-core/configs -------------------------------------------------------------------------------- /configs-node/inbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "inbounds":[ 3 | { 4 | "tag":"proxy", 5 | "listen":"0.0.0.0", 6 | "port":1080, 7 | "protocol":"socks", 8 | "settings":{ 9 | "auth":"noauth", 10 | "udp":true, 11 | "userLevel":8 12 | }, 13 | "sniffing":{ 14 | "destOverride":[ 15 | "http", 16 | "tls" 17 | ], 18 | "enabled":true 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /Dockerfile-xray-master: -------------------------------------------------------------------------------- 1 | FROM docker.arvancloud.ir/alpine:3.17 2 | 3 | RUN wget https://github.com/XTLS/Xray-core/releases/download/v1.8.24/Xray-linux-64.zip 4 | RUN unzip Xray-linux-64.zip -d /root/xray-core 5 | 6 | WORKDIR /root/xray-core 7 | 8 | RUN wget https://github.com/bootmortis/iran-hosted-domains/releases/latest/download/iran.dat 9 | RUN wget https://github.com/MrMohebi/domain-list-iran-bans/releases/latest/download/iran-bans.dat 10 | 11 | COPY ./configs-master /root/xray-core/configs 12 | 13 | CMD sh -c "/root/xray-core/xray run -confdir /root/xray-core/configs" 14 | -------------------------------------------------------------------------------- /configs-master/base.json: -------------------------------------------------------------------------------- 1 | { 2 | "dns":{ 3 | "hosts":{ 4 | "domain:googleapis.cn":"googleapis.com" 5 | }, 6 | "servers":[ 7 | "1.1.1.1" 8 | ] 9 | }, 10 | "log":{ 11 | "loglevel":"warning" 12 | }, 13 | "policy":{ 14 | "levels":{ 15 | "8":{ 16 | "connIdle":300, 17 | "downlinkOnly":1, 18 | "handshake":4, 19 | "uplinkOnly":1 20 | } 21 | }, 22 | "system":{ 23 | "statsOutboundUplink":true, 24 | "statsOutboundDownlink":true 25 | } 26 | }, 27 | "stats":{ 28 | 29 | } 30 | } -------------------------------------------------------------------------------- /configs-node/base.json: -------------------------------------------------------------------------------- 1 | { 2 | "dns":{ 3 | "hosts":{ 4 | "domain:googleapis.cn":"googleapis.com" 5 | }, 6 | "servers":[ 7 | "1.1.1.1" 8 | ] 9 | }, 10 | "log":{ 11 | "loglevel":"warning" 12 | }, 13 | "policy":{ 14 | "levels":{ 15 | "8":{ 16 | "connIdle":300, 17 | "downlinkOnly":1, 18 | "handshake":4, 19 | "uplinkOnly":1 20 | } 21 | }, 22 | "system":{ 23 | "statsOutboundUplink":true, 24 | "statsOutboundDownlink":true 25 | } 26 | }, 27 | "stats":{ 28 | 29 | } 30 | } -------------------------------------------------------------------------------- /Dockerfile-xray-node: -------------------------------------------------------------------------------- 1 | FROM docker.arvancloud.ir/golang as builder 2 | 3 | WORKDIR /root/go/ 4 | COPY . . 5 | RUN go get . 6 | RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o xray-iran-bridge-updater . 7 | 8 | 9 | FROM hub.hamdocker.ir/alpine:3.17 10 | 11 | RUN wget https://github.com/XTLS/Xray-core/releases/download/v1.8.24/Xray-linux-64.zip 12 | RUN unzip Xray-linux-64.zip -d /root/xray-core 13 | 14 | WORKDIR /root/xray-core 15 | 16 | COPY ./configs-node /root/xray-core/configs 17 | COPY --chmod=777 ./rebootXray.sh /root/xray-core/rebootXray.sh 18 | COPY --from=builder --chmod=777 /root/go/xray-iran-bridge-updater /root/xray-core/xray-iran-bridge-updater 19 | 20 | CMD sh -c "/root/xray-core/xray-iran-bridge-updater && /root/xray-core/xray run -confdir /root/xray-core/configs" 21 | #CMD ["/root/xray-core/xray-iran-bridge-updater", "&&" ,"/root/xray-core/xray", "run", "-confdir", "/root/xray-core/configs"] 22 | -------------------------------------------------------------------------------- /configs-master/outbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "outbounds": [ 3 | { 4 | "tag": "node1", 5 | "protocol": "socks", 6 | "settings": { 7 | "servers": [ 8 | { 9 | "address": "xray-node1", 10 | "port": 1080 11 | } 12 | ] 13 | } 14 | }, 15 | { 16 | "tag": "node2", 17 | "protocol": "socks", 18 | "settings": { 19 | "servers": [ 20 | { 21 | "address": "xray-node2", 22 | "port": 1080 23 | } 24 | ] 25 | } 26 | }, 27 | { 28 | "tag": "node3", 29 | "protocol": "socks", 30 | "settings": { 31 | "servers": [ 32 | { 33 | "address": "xray-node3", 34 | "port": 1080 35 | } 36 | ] 37 | } 38 | }, 39 | { 40 | "tag": "direct-out", 41 | "protocol": "freedom" 42 | } 43 | ] 44 | } -------------------------------------------------------------------------------- /configs-node/routing.json: -------------------------------------------------------------------------------- 1 | { 2 | "routing": { 3 | "domainStrategy": "IPIfNonMatch", 4 | "domainMatcher": "hybrid", 5 | "balancers": [ 6 | { 7 | "tag": "public-proxies", 8 | "selector": [ 9 | "proxy-111" 10 | ], 11 | "strategy": { 12 | "type":"leastLoad", 13 | "settings": { 14 | "baselines": null, 15 | "expected": 10 16 | } 17 | } 18 | } 19 | ], 20 | "rules": [ 21 | { 22 | "inboundTag": [ 23 | "proxy" 24 | ], 25 | "balancerTag": "public-proxies", 26 | "type": "field" 27 | } 28 | ] 29 | }, 30 | "burstObservatory": { 31 | "subjectSelector":[ 32 | "proxy-111" 33 | ], 34 | "pingConfig": { 35 | "destination": "http://www.google.com/gen_204", 36 | "interval": "15m", 37 | "connectivity": "http://www.google.com/gen_204", 38 | "timeout": "3s", 39 | "sampling": 2 40 | } 41 | } 42 | } -------------------------------------------------------------------------------- /faces.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | type RoutingFile struct { 4 | Routing struct { 5 | DomainStrategy string `json:"domainStrategy"` 6 | DomainMatcher string `json:"domainMatcher"` 7 | Balancers []struct { 8 | Tag string `json:"tag"` 9 | Selector []string `json:"selector"` 10 | } `json:"balancers"` 11 | Rules []struct { 12 | InboundTag []string `json:"inboundTag"` 13 | Domain []any `json:"domain,omitempty"` 14 | BalancerTag string `json:"balancerTag,omitempty"` 15 | Type string `json:"type"` 16 | OutboundTag string `json:"outboundTag,omitempty"` 17 | IP []string `json:"ip,omitempty"` 18 | } `json:"rules"` 19 | } `json:"routing"` 20 | BurstObservatory struct { 21 | SubjectSelector []string `json:"subjectSelector"` 22 | PingConfig struct { 23 | Destination string `json:"destination"` 24 | Interval string `json:"interval"` 25 | Connectivity string `json:"connectivity"` 26 | Timeout string `json:"timeout"` 27 | Sampling int `json:"sampling"` 28 | } `json:"pingConfig"` 29 | } `json:"burstObservatory"` 30 | } 31 | 32 | type OutboundConfigBase struct { 33 | Tag string `json:"tag"` 34 | Protocol string `json:"protocol"` 35 | } 36 | 37 | type OutboundsFile struct { 38 | Outbounds string `json:"outbounds"` 39 | } 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Iran bridge Xray config generator 2 | ###### **HA:** Multi node support 3 | will generate `outbounds.json` base on provided proxies from [`proxies_active_no_403_under_1000ms.txt`](https://raw.githubusercontent.com/MrMohebi/xray-proxy-grabber-telegram/master/collected-proxies/xray-json/actives_no_403_under_1000ms.txt) 4 | and update hosted xray-core as bridge. 5 | 6 | 7 | ### Run 8 | ```bash 9 | git clone https://github.com/MrMohebi/xray-iran-bridge-configs.git 10 | cd xray-iran-bridge-configs 11 | ``` 12 | then run: 13 | ```bash 14 | docker compose up -d --build 15 | ``` 16 | 17 | ### Connecting configs 18 | 19 | socks5 : 20 | > proxy all --> `socks5://myuser:123654789@SERVER_IP:9901` 21 | > 22 | > not ir --> `socks5://myuser:123654789@SERVER_IP:9902` 23 | > 24 | > proxy all --> `socks5://myuser:123654789@SERVER_IP:9900` 25 | 26 | vless: 27 | > not ir --> `vless://1ca7eeef-fd8b-4eef-8127-8583e44943bc@server_ip:7700?security=&type=tcp&encryption=none#my-proxy_not-ir` 28 | 29 | 30 | ### configs: 31 | you can change the default passwords and usernames from [master inbounds file](configs-master/inbounds.json) 32 | 33 | ### Routing rules 34 | There are some pre-config routing rules 35 | 36 | - `bypass iranian websites`: It won't proxy iranian websites and just pass them from bridge iran server 37 | ###### **Note:** Base on *.ir domains and provided list from [iran-hosted-domains](https://github.com/bootmortis/iran-hosted-domains) 38 | - `just bans`: It will only proxy censored and sanctioned websites 39 | ###### **Note:** Base on [domain-list-iran-bans](https://github.com/MrMohebi/domain-list-iran-bans) 40 | - `proxy all`: I think no explanation is required. 41 | 42 | 43 | 44 | ### Inbounds 45 | - socks5 46 | - not ir 47 | - just bans 48 | - proxy all 49 | - vless: 50 | - not ir 51 | -------------------------------------------------------------------------------- /configs-master/inbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "inbounds":[ 3 | { 4 | "tag":"vless-not-ir", 5 | "listen":"0.0.0.0", 6 | "port":7700, 7 | "protocol": "vless", 8 | "settings": { 9 | "clients": [ 10 | { 11 | "id": "1ca7eeef-fd8b-4eef-8127-8583e44943bc", 12 | "alterId": 0, 13 | "email": "t@t.tt", 14 | "flow": "" 15 | } 16 | ], 17 | "decryption": "none", 18 | "allowTransparent": false 19 | }, 20 | "streamSettings": { 21 | "network": "grpc", 22 | "security": "none", 23 | "grpcSettings": { 24 | "serviceName": "mame" 25 | } 26 | } 27 | }, 28 | { 29 | "tag":"socks-just-bans", 30 | "listen":"0.0.0.0", 31 | "port":9900, 32 | "protocol":"socks", 33 | "settings":{ 34 | "auth":"password", 35 | "accounts": [ 36 | { 37 | "user": "myuser", 38 | "pass": "123654789" 39 | } 40 | ], 41 | "udp":true, 42 | "userLevel":8 43 | }, 44 | "sniffing":{ 45 | "destOverride":[ 46 | "http", 47 | "tls" 48 | ], 49 | "enabled":true 50 | } 51 | }, 52 | { 53 | "tag":"socks-all", 54 | "listen":"0.0.0.0", 55 | "port":9901, 56 | "protocol":"socks", 57 | "settings":{ 58 | "auth":"password", 59 | "accounts": [ 60 | { 61 | "user": "myuser", 62 | "pass": "123654789" 63 | } 64 | ], 65 | "udp":true, 66 | "userLevel":8 67 | }, 68 | "sniffing":{ 69 | "destOverride":[ 70 | "http", 71 | "tls" 72 | ], 73 | "enabled":true 74 | } 75 | }, 76 | { 77 | "tag":"socks-not-ir", 78 | "listen":"0.0.0.0", 79 | "port":9902, 80 | "protocol":"socks", 81 | "settings":{ 82 | "auth":"password", 83 | "accounts": [ 84 | { 85 | "user": "myuser", 86 | "pass": "123654789" 87 | } 88 | ], 89 | "udp":true, 90 | "userLevel":8 91 | }, 92 | "sniffing":{ 93 | "destOverride":[ 94 | "http", 95 | "tls" 96 | ], 97 | "enabled":true 98 | } 99 | } 100 | ] 101 | } 102 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | # ports: HOST:CONTAINER 2 | version: '3.8' 3 | services: 4 | xray-ofelia: 5 | image: docker.arvancloud.ir/mcuadros/ofelia:latest 6 | container_name: xray-ofelia 7 | command: daemon --docker 8 | volumes: 9 | - /var/run/docker.sock:/var/run/docker.sock:ro 10 | labels: 11 | ofelia.job-local.ofelia.schedule: "@every 4h" 12 | ofelia.job-local.ofelia.command: "date" 13 | 14 | xray-node1: 15 | build: 16 | context: ./ 17 | dockerfile: Dockerfile-xray-node 18 | container_name: xray-node1 19 | command: sh -c "/root/xray-core/xray-iran-bridge-updater && /root/xray-core/xray run -confdir /root/xray-core/configs" 20 | environment: 21 | - URL_PROXY_FILE=https://raw.githubusercontent.com/MrMohebi/xray-proxy-grabber-telegram/master/collected-proxies/xray-json/actives_no_403_under_1000ms.txt 22 | restart: unless-stopped 23 | labels: 24 | ofelia.enabled: "true" 25 | ofelia.job-exec.xray-node1-update.schedule: "@every 3h" 26 | ofelia.job-exec.xray-node1-update.command: '/root/xray-core/rebootXray.sh' 27 | 28 | 29 | xray-node2: 30 | build: 31 | context: ./ 32 | dockerfile: Dockerfile-xray-node 33 | container_name: xray-node2 34 | command: sh -c "sleep 600 && /root/xray-core/xray-iran-bridge-updater && /root/xray-core/xray run -confdir /root/xray-core/configs" 35 | environment: 36 | - URL_PROXY_FILE=https://raw.githubusercontent.com/MrMohebi/xray-proxy-grabber-telegram/master/collected-proxies/xray-json/actives_no_403_under_1000ms.txt 37 | restart: unless-stopped 38 | labels: 39 | ofelia.enabled: "true" 40 | ofelia.job-exec.xray-node2-update.schedule: "@every 4h" 41 | ofelia.job-exec.xray-node2-update.command: '/root/xray-core/rebootXray.sh' 42 | 43 | 44 | xray-node3: 45 | build: 46 | context: ./ 47 | dockerfile: Dockerfile-xray-node 48 | container_name: xray-node3 49 | command: sh -c "sleep 1200 && /root/xray-core/xray-iran-bridge-updater && /root/xray-core/xray run -confdir /root/xray-core/configs" 50 | environment: 51 | - URL_PROXY_FILE=https://raw.githubusercontent.com/MrMohebi/xray-proxy-grabber-telegram/master/collected-proxies/xray-json/actives_no_403_under_1000ms.txt 52 | restart: unless-stopped 53 | labels: 54 | ofelia.enabled: "true" 55 | ofelia.job-exec.xray-node3-update.schedule: "@every 5h" 56 | ofelia.job-exec.xray-node3-update.command: '/root/xray-core/rebootXray.sh' 57 | 58 | xray-master: 59 | build: 60 | context: ./ 61 | dockerfile: Dockerfile-xray-master 62 | container_name: xray-master 63 | command: sh -c "/root/xray-core/xray run -confdir /root/xray-core/configs" 64 | restart: unless-stopped 65 | ports: 66 | - "9900:9900" 67 | - "9901:9901" 68 | - "9902:9902" 69 | - "7700:7700" -------------------------------------------------------------------------------- /configs-master/routing.json: -------------------------------------------------------------------------------- 1 | { 2 | "routing": { 3 | "domainStrategy": "IPIfNonMatch", 4 | "domainMatcher": "hybrid", 5 | "balancers": [ 6 | { 7 | "tag": "slave-nodes", 8 | "selector": [ 9 | "node1", 10 | "node2", 11 | "node3" 12 | ], 13 | "strategy": { 14 | "type":"leastLoad" 15 | } 16 | } 17 | ], 18 | "rules": [ 19 | { 20 | "inboundTag": [ 21 | "socks-all" 22 | ], 23 | "balancerTag": "slave-nodes", 24 | "type": "field" 25 | }, 26 | { 27 | "inboundTag": [ 28 | "socks-not-ir", 29 | "socks-just-bans", 30 | "vless-not-ir" 31 | ], 32 | "domain": [ 33 | "regexp:.*\\.ir$", 34 | "ext:iran.dat:ir", 35 | "ext:iran.dat:other", 36 | "snapp", 37 | "digikala", 38 | "tapsi", 39 | "blogfa", 40 | "bank", 41 | "sb24.com", 42 | "sheypoor.com", 43 | "tebyan.net", 44 | "beytoote.com", 45 | "telewebion.com", 46 | "Film2movie.ws", 47 | "Setare.com", 48 | "Filimo.com", 49 | "Torob.com", 50 | "Tgju.org", 51 | "Sarzamindownload.com", 52 | "downloadha.com", 53 | "P30download.com", 54 | "Sanjesh.org" 55 | ], 56 | "type": "field", 57 | "outboundTag": "direct-out" 58 | }, 59 | { 60 | "inboundTag": [ 61 | "socks-just-bans" 62 | ], 63 | "domain": [ 64 | "ext:iran-bans.dat:censored", 65 | "ext:iran-bans.dat:sanctioned" 66 | ], 67 | "balancerTag": "slave-nodes", 68 | "type": "field" 69 | }, 70 | { 71 | "inboundTag": [ 72 | "socks-just-bans" 73 | ], 74 | "balancerTag": "slave-nodes", 75 | "type": "field", 76 | "ip": [ 77 | "149.154.160.0/21", 78 | "149.154.168.0/22", 79 | "149.154.172.0/22", 80 | "185.76.151.0/24" 81 | ] 82 | }, 83 | { 84 | "inboundTag": [ 85 | "socks-just-bans" 86 | ], 87 | "type": "field", 88 | "outboundTag": "direct-out" 89 | }, 90 | { 91 | "inboundTag": [ 92 | "socks-not-ir", 93 | "vless-not-ir" 94 | ], 95 | "balancerTag": "slave-nodes", 96 | "type": "field" 97 | } 98 | ] 99 | }, 100 | "burstObservatory": { 101 | "subjectSelector":[ 102 | "node1", 103 | "node2", 104 | "node3" 105 | ], 106 | "pingConfig": { 107 | "destination": "http://www.google.com/gen_204", 108 | "interval": "5m", 109 | "connectivity": "http://www.google.com/gen_204", 110 | "timeout": "3s", 111 | "sampling": 5 112 | } 113 | } 114 | } -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "encoding/json" 5 | "fmt" 6 | "io/ioutil" 7 | "log" 8 | "net/http" 9 | "os" 10 | "os/exec" 11 | "strings" 12 | ) 13 | 14 | // nodemon --exec go run . --signal SIGTERM 15 | 16 | func main() { 17 | var UrlProxies = "https://raw.githubusercontent.com/MrMohebi/xray-proxy-grabber-telegram/master/collected-proxies/xray-json/actives_no_403_under_1000ms.txt" 18 | if len(os.Getenv("URL_PROXY_FILE")) > 3 { 19 | UrlProxies = os.Getenv("URL_PROXY_FILE") 20 | } 21 | configBases, configsStr := getFreshPublicProxies(UrlProxies) 22 | 23 | var outboundTags []string 24 | for _, configBase := range configBases { 25 | if configBase.Tag != "direct-out" { 26 | outboundTags = append(outboundTags, configBase.Tag) 27 | } 28 | } 29 | 30 | err := os.WriteFile("configs/outbounds.json", []byte("{\"outbounds\":"+configsStr+"}"), 0644) 31 | if err != nil { 32 | log.Fatalf("failed writing to outboundsFile: %s", err) 33 | } 34 | println("updated outbounds.json") 35 | 36 | routing := getRouting() 37 | for index, balancer := range routing.Routing.Balancers { 38 | if balancer.Tag == "public-proxies" { 39 | routing.Routing.Balancers[index].Selector = outboundTags 40 | routing.BurstObservatory.SubjectSelector = outboundTags 41 | } 42 | } 43 | 44 | routingStr, err := json.Marshal(routing) 45 | if err != nil { 46 | fmt.Println(err) 47 | } 48 | err = os.WriteFile("configs/routing.json", routingStr, 0644) 49 | if err != nil { 50 | log.Fatalf("failed writing to routingFile: %s", err) 51 | } 52 | println("updated routing.json") 53 | 54 | //reloadXrayCore() 55 | 56 | } 57 | 58 | func reloadXrayCore() { 59 | cmdRebootXray := exec.Command("/bin/sh", "/root/xray-core/rebootXray.sh") 60 | err := cmdRebootXray.Start() 61 | if err != nil { 62 | fmt.Println(err.Error()) 63 | } 64 | fmt.Println("xray core Reloaded.") 65 | } 66 | 67 | func getRouting() RoutingFile { 68 | jsonFile, err := os.Open("configs/routing.json") 69 | if err != nil { 70 | fmt.Println(err) 71 | } 72 | defer jsonFile.Close() 73 | byteValue, _ := ioutil.ReadAll(jsonFile) 74 | 75 | var routingFile RoutingFile 76 | err = json.Unmarshal(byteValue, &routingFile) 77 | if err != nil { 78 | fmt.Println(err) 79 | } 80 | return routingFile 81 | } 82 | 83 | func getFreshPublicProxies(url string) ([]OutboundConfigBase, string) { 84 | resp, err := http.Get(url) 85 | if err != nil { 86 | log.Fatalln(err) 87 | } 88 | body, err := ioutil.ReadAll(resp.Body) 89 | if err != nil { 90 | log.Fatalln(err) 91 | } 92 | bodyStr := string(body) 93 | bodyStr = "[" + strings.Trim(strings.Replace(bodyStr, "\n", ",", -1), ",") + ",{\"tag\": \"direct-out\",\"protocol\": \"freedom\"}]" 94 | 95 | var configs []OutboundConfigBase 96 | err = json.Unmarshal([]byte(bodyStr), &configs) 97 | if err != nil { 98 | fmt.Println(err) 99 | } 100 | println("Got new proxies from => " + url) 101 | return configs, bodyStr 102 | } 103 | -------------------------------------------------------------------------------- /configs-node/outbounds.json: -------------------------------------------------------------------------------- 1 | { 2 | "outbounds": [ 3 | { 4 | "tag": "proxy_1137_Kiava-SW-U7vless://53d6cb51-395d-4db2-84ed-bd35ed833046@chaaaaanel.vpnprosec.shop:2087/?type=tcp&security=reality&pbk=xeZVtb0ug038nNaUOPcHQdU_SN7Z1nZZLPfnEM624xo&fp=firefox&sni=zula.ir&sid=e2&spx=%2F#VIP-VpnProSec", 5 | "protocol": "vless", 6 | "settings": { 7 | "vnext": [ 8 | { 9 | "address": "sp7.kiava.fun", 10 | "port": 8443, 11 | "users": [ 12 | { 13 | "id": "ac4e2c70-d86f-4ace-d50d-14218ec66e19", 14 | "alterId": 0, 15 | "email": "t@t.tt", 16 | "security": "auto", 17 | "encryption": "none", 18 | "flow": null 19 | } 20 | ] 21 | } 22 | ] 23 | }, 24 | "streamSettings": { 25 | "network": "ws", 26 | "security": "tls", 27 | "tlsSettings": { 28 | "serverName": "sp7.kiava.fun", 29 | "fingerprint": "chrome" 30 | }, 31 | "wsSettings": { 32 | "path": "/", 33 | "headers": {} 34 | } 35 | }, 36 | "mux": { 37 | "enabled": false, 38 | "concurrency": -1 39 | } 40 | }, 41 | { 42 | "tag": "proxy_6069_Telegram+%28%40shopingv2ray%29", 43 | "protocol": "vless", 44 | "settings": { 45 | "vnext": [ 46 | { 47 | "address": "nimv2chanel.ddns.net", 48 | "port": 2096, 49 | "users": [ 50 | { 51 | "id": "492c8ded-2459-4ae9-a42b-757df6e30316", 52 | "alterId": 0, 53 | "email": "t@t.tt", 54 | "security": "auto", 55 | "encryption": "none", 56 | "flow": null 57 | } 58 | ] 59 | } 60 | ] 61 | }, 62 | "streamSettings": { 63 | "network": "grpc", 64 | "security": "tls", 65 | "tlsSettings": { 66 | "serverName": "ch.nimvpnir.xyz" 67 | }, 68 | "grpcSettings": { 69 | "serviceName": "@NIM_VPN_ir@NIM_VPN_ir@NIM_VPN_ir@NIM_VPN_ir" 70 | } 71 | }, 72 | "mux": { 73 | "enabled": false, 74 | "concurrency": -1 75 | } 76 | }, 77 | { 78 | "tag": "proxy_2836_Telegram+%28%40shopingv2ray%29", 79 | "protocol": "vless", 80 | "settings": { 81 | "vnext": [ 82 | { 83 | "address": "185.126.255.88", 84 | "port": 45077, 85 | "users": [ 86 | { 87 | "id": "f328bd85-f5cd-4dc1-a2fc-383af5fec94d", 88 | "alterId": 0, 89 | "email": "t@t.tt", 90 | "security": "auto", 91 | "encryption": "none", 92 | "flow": null 93 | } 94 | ] 95 | } 96 | ] 97 | }, 98 | "streamSettings": { 99 | "network": "tcp", 100 | "security": "reality", 101 | "realitySettings": { 102 | "serverName": "www.speedtest.net", 103 | "publicKey": "eBdj8fFccTPnnz966Cl7kTEQDASdCLu15YOgGPJbyTo", 104 | "fingerprint": "chrome", 105 | "show": false, 106 | "shortId": "218f8557", 107 | "spiderX": "/" 108 | }, 109 | "tcpSettings": { 110 | "acceptProxyProtocol": false 111 | } 112 | }, 113 | "mux": { 114 | "enabled": false, 115 | "concurrency": -1 116 | } 117 | }, 118 | { 119 | "tag": "proxy_9897_SAT(@Outline_Vpn)", 120 | "protocol": "vless", 121 | "settings": { 122 | "vnext": [ 123 | { 124 | "address": "185.22.153.168", 125 | "port": 30252, 126 | "users": [ 127 | { 128 | "id": "8d4e3f14-467c-4bd6-b665-763e4d731418", 129 | "alterId": 0, 130 | "email": "t@t.tt", 131 | "security": "auto", 132 | "encryption": "none", 133 | "flow": null 134 | } 135 | ] 136 | } 137 | ] 138 | }, 139 | "streamSettings": { 140 | "network": "tcp", 141 | "security": "reality", 142 | "realitySettings": { 143 | "serverName": "www.speedtest.org", 144 | "publicKey": "UtL7E0Gmxj3X5JdcPAutpTRKo7K2hugkR0vwk2XroUM", 145 | "fingerprint": "chrome", 146 | "show": false, 147 | "shortId": "", 148 | "spiderX": "/" 149 | }, 150 | "tcpSettings": { 151 | "acceptProxyProtocol": false 152 | } 153 | }, 154 | "mux": { 155 | "enabled": false, 156 | "concurrency": -1 157 | } 158 | }, 159 | { 160 | "tag": "proxy_4699_SAT10(@Outline_Vpn)", 161 | "protocol": "vless", 162 | "settings": { 163 | "vnext": [ 164 | { 165 | "address": "panel.wenyx.gq", 166 | "port": 443, 167 | "users": [ 168 | { 169 | "id": "242c49c9-71a6-422a-a1a3-cf151ca9b77c", 170 | "alterId": 0, 171 | "email": "t@t.tt", 172 | "security": "auto", 173 | "encryption": "none", 174 | "flow": "xtls-rprx-vision" 175 | } 176 | ] 177 | } 178 | ] 179 | }, 180 | "streamSettings": { 181 | "network": "tcp", 182 | "security": "reality", 183 | "realitySettings": { 184 | "serverName": "www.speedtest.net", 185 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 186 | "fingerprint": "ios", 187 | "show": false, 188 | "shortId": "6a3dff33", 189 | "spiderX": "/" 190 | }, 191 | "tcpSettings": { 192 | "acceptProxyProtocol": false 193 | } 194 | }, 195 | "mux": { 196 | "enabled": false, 197 | "concurrency": -1 198 | } 199 | }, 200 | { 201 | "tag": "proxy_1633_%F0%9F%87%BA%F0%9F%87%B8%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 202 | "protocol": "vless", 203 | "settings": { 204 | "vnext": [ 205 | { 206 | "address": "panel.wenyx.gq", 207 | "port": 443, 208 | "users": [ 209 | { 210 | "id": "242c49c9-71a6-422a-a1a3-cf151ca9b77c", 211 | "alterId": 0, 212 | "email": "t@t.tt", 213 | "security": "auto", 214 | "encryption": "none", 215 | "flow": "xtls-rprx-vision" 216 | } 217 | ] 218 | } 219 | ] 220 | }, 221 | "streamSettings": { 222 | "network": "tcp", 223 | "security": "reality", 224 | "realitySettings": { 225 | "serverName": "www.speedtest.net", 226 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 227 | "fingerprint": "ios", 228 | "show": false, 229 | "shortId": "6a3dff33", 230 | "spiderX": "/" 231 | }, 232 | "tcpSettings": { 233 | "acceptProxyProtocol": false 234 | } 235 | }, 236 | "mux": { 237 | "enabled": false, 238 | "concurrency": -1 239 | } 240 | }, 241 | { 242 | "tag": "proxy_8664_%F0%9F%87%A9%F0%9F%87%AA%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 243 | "protocol": "vless", 244 | "settings": { 245 | "vnext": [ 246 | { 247 | "address": "hamrah.kanal-tel-nufilter.store", 248 | "port": 443, 249 | "users": [ 250 | { 251 | "id": "bc9ff680-e526-48e8-a818-d111b0425591", 252 | "alterId": 0, 253 | "email": "t@t.tt", 254 | "security": "auto", 255 | "encryption": "none", 256 | "flow": "xtls-rprx-vision" 257 | } 258 | ] 259 | } 260 | ] 261 | }, 262 | "streamSettings": { 263 | "network": "tcp", 264 | "security": "reality", 265 | "realitySettings": { 266 | "serverName": "www.speedtest.net", 267 | "publicKey": "W5jAswnd_wfiaDerY2yy3zIyNUbWoks2-tmkAFOE7VA", 268 | "fingerprint": "chrome", 269 | "show": false, 270 | "shortId": "d77fdb611c4c", 271 | "spiderX": "/" 272 | }, 273 | "tcpSettings": { 274 | "acceptProxyProtocol": false 275 | } 276 | }, 277 | "mux": { 278 | "enabled": false, 279 | "concurrency": -1 280 | } 281 | }, 282 | { 283 | "tag": "proxy_5486_%F0%9F%87%A8%F0%9F%87%A6%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 284 | "protocol": "vless", 285 | "settings": { 286 | "vnext": [ 287 | { 288 | "address": "167.235.249.207", 289 | "port": 1111, 290 | "users": [ 291 | { 292 | "id": "c30e7dcc-79dd-49d9-bdce-ac0aa775dfbe", 293 | "alterId": 0, 294 | "email": "t@t.tt", 295 | "security": "auto", 296 | "encryption": "none", 297 | "flow": "xtls-rprx-vision" 298 | } 299 | ] 300 | } 301 | ] 302 | }, 303 | "streamSettings": { 304 | "network": "tcp", 305 | "security": "reality", 306 | "realitySettings": { 307 | "serverName": "flutter.dev", 308 | "publicKey": "TzZMN1ACUuOFRrJEARi80qTR4sXDi_qA9qiflWbY8jM", 309 | "fingerprint": "chrome", 310 | "show": false, 311 | "shortId": "4a4c780f", 312 | "spiderX": "/" 313 | }, 314 | "tcpSettings": { 315 | "acceptProxyProtocol": false 316 | } 317 | }, 318 | "mux": { 319 | "enabled": false, 320 | "concurrency": -1 321 | } 322 | }, 323 | { 324 | "tag": "proxy_7353_%F0%9F%87%AC%F0%9F%87%A7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 325 | "protocol": "vless", 326 | "settings": { 327 | "vnext": [ 328 | { 329 | "address": "104.31.16.192", 330 | "port": 2083, 331 | "users": [ 332 | { 333 | "id": "Telegram-Parsashonam-0", 334 | "alterId": 0, 335 | "email": "t@t.tt", 336 | "security": "auto", 337 | "encryption": "none", 338 | "flow": null 339 | } 340 | ] 341 | } 342 | ] 343 | }, 344 | "streamSettings": { 345 | "network": "grpc", 346 | "security": "tls", 347 | "tlsSettings": { 348 | "serverName": "cloud2.tel-Parsashonam.fun" 349 | }, 350 | "grpcSettings": { 351 | "serviceName": "@Parsashonam" 352 | } 353 | }, 354 | "mux": { 355 | "enabled": false, 356 | "concurrency": -1 357 | } 358 | }, 359 | { 360 | "tag": "proxy_8235_SAT15(@Outline_Vpn)", 361 | "protocol": "vless", 362 | "settings": { 363 | "vnext": [ 364 | { 365 | "address": "panel.wenyx.gq", 366 | "port": 443, 367 | "users": [ 368 | { 369 | "id": "242c49c9-71a6-422a-a1a3-cf151ca9b77c", 370 | "alterId": 0, 371 | "email": "t@t.tt", 372 | "security": "auto", 373 | "encryption": "none", 374 | "flow": "xtls-rprx-vision" 375 | } 376 | ] 377 | } 378 | ] 379 | }, 380 | "streamSettings": { 381 | "network": "tcp", 382 | "security": "reality", 383 | "realitySettings": { 384 | "serverName": "www.speedtest.net", 385 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 386 | "fingerprint": "ios", 387 | "show": false, 388 | "shortId": "6a3dff33", 389 | "spiderX": "/" 390 | }, 391 | "tcpSettings": { 392 | "acceptProxyProtocol": false 393 | } 394 | }, 395 | "mux": { 396 | "enabled": false, 397 | "concurrency": -1 398 | } 399 | }, 400 | { 401 | "tag": "proxy_8335_SAR17(@Outline_Vpn)", 402 | "protocol": "vless", 403 | "settings": { 404 | "vnext": [ 405 | { 406 | "address": "167.235.249.207", 407 | "port": 1111, 408 | "users": [ 409 | { 410 | "id": "c30e7dcc-79dd-49d9-bdce-ac0aa775dfbe", 411 | "alterId": 0, 412 | "email": "t@t.tt", 413 | "security": "auto", 414 | "encryption": "none", 415 | "flow": "xtls-rprx-vision" 416 | } 417 | ] 418 | } 419 | ] 420 | }, 421 | "streamSettings": { 422 | "network": "tcp", 423 | "security": "reality", 424 | "realitySettings": { 425 | "serverName": "flutter.dev", 426 | "publicKey": "TzZMN1ACUuOFRrJEARi80qTR4sXDi_qA9qiflWbY8jM", 427 | "fingerprint": "chrome", 428 | "show": false, 429 | "shortId": "4a4c780f", 430 | "spiderX": "/" 431 | }, 432 | "tcpSettings": { 433 | "acceptProxyProtocol": false 434 | } 435 | }, 436 | "mux": { 437 | "enabled": false, 438 | "concurrency": -1 439 | } 440 | }, 441 | { 442 | "tag": "proxy_6589_SAT19(@Outline_Vpn)", 443 | "protocol": "vless", 444 | "settings": { 445 | "vnext": [ 446 | { 447 | "address": "hamrah.kanal-tel-nufilter.store", 448 | "port": 443, 449 | "users": [ 450 | { 451 | "id": "bc9ff680-e526-48e8-a818-d111b0425591", 452 | "alterId": 0, 453 | "email": "t@t.tt", 454 | "security": "auto", 455 | "encryption": "none", 456 | "flow": "xtls-rprx-vision" 457 | } 458 | ] 459 | } 460 | ] 461 | }, 462 | "streamSettings": { 463 | "network": "tcp", 464 | "security": "reality", 465 | "realitySettings": { 466 | "serverName": "www.speedtest.net", 467 | "publicKey": "W5jAswnd_wfiaDerY2yy3zIyNUbWoks2-tmkAFOE7VA", 468 | "fingerprint": "chrome", 469 | "show": false, 470 | "shortId": "d77fdb611c4c", 471 | "spiderX": "/" 472 | }, 473 | "tcpSettings": { 474 | "acceptProxyProtocol": false 475 | } 476 | }, 477 | "mux": { 478 | "enabled": false, 479 | "concurrency": -1 480 | } 481 | }, 482 | { 483 | "tag": "proxy_4913_SAT21(@Outline_Vpn)", 484 | "protocol": "vless", 485 | "settings": { 486 | "vnext": [ 487 | { 488 | "address": "167.235.249.207", 489 | "port": 1111, 490 | "users": [ 491 | { 492 | "id": "c30e7dcc-79dd-49d9-bdce-ac0aa775dfbe", 493 | "alterId": 0, 494 | "email": "t@t.tt", 495 | "security": "auto", 496 | "encryption": "none", 497 | "flow": "xtls-rprx-vision" 498 | } 499 | ] 500 | } 501 | ] 502 | }, 503 | "streamSettings": { 504 | "network": "tcp", 505 | "security": "reality", 506 | "realitySettings": { 507 | "serverName": "flutter.dev", 508 | "publicKey": "TzZMN1ACUuOFRrJEARi80qTR4sXDi_qA9qiflWbY8jM", 509 | "fingerprint": "chrome", 510 | "show": false, 511 | "shortId": "4a4c780f", 512 | "spiderX": "/" 513 | }, 514 | "tcpSettings": { 515 | "acceptProxyProtocol": false 516 | } 517 | }, 518 | "mux": { 519 | "enabled": false, 520 | "concurrency": -1 521 | } 522 | }, 523 | { 524 | "tag": "proxy_3125_Telegram+%28%40shopingv2ray%29", 525 | "protocol": "vless", 526 | "settings": { 527 | "vnext": [ 528 | { 529 | "address": "167.235.249.207", 530 | "port": 1111, 531 | "users": [ 532 | { 533 | "id": "c30e7dcc-79dd-49d9-bdce-ac0aa775dfbe", 534 | "alterId": 0, 535 | "email": "t@t.tt", 536 | "security": "auto", 537 | "encryption": "none", 538 | "flow": "xtls-rprx-vision" 539 | } 540 | ] 541 | } 542 | ] 543 | }, 544 | "streamSettings": { 545 | "network": "tcp", 546 | "security": "reality", 547 | "realitySettings": { 548 | "serverName": "flutter.dev", 549 | "publicKey": "TzZMN1ACUuOFRrJEARi80qTR4sXDi_qA9qiflWbY8jM", 550 | "fingerprint": "chrome", 551 | "show": false, 552 | "shortId": "4a4c780f", 553 | "spiderX": "/" 554 | }, 555 | "tcpSettings": { 556 | "acceptProxyProtocol": false 557 | } 558 | }, 559 | "mux": { 560 | "enabled": false, 561 | "concurrency": -1 562 | } 563 | }, 564 | { 565 | "tag": "proxy_8762_%5B%F0%9F%8C%90%5DTelegram%3A+%40iran_ray", 566 | "protocol": "vless", 567 | "settings": { 568 | "vnext": [ 569 | { 570 | "address": "37.252.8.153", 571 | "port": 2053, 572 | "users": [ 573 | { 574 | "id": "f396e3a8-b8fa-4e42-9d84-a91dec4d7609", 575 | "alterId": 0, 576 | "email": "t@t.tt", 577 | "security": "auto", 578 | "encryption": "none", 579 | "flow": null 580 | } 581 | ] 582 | } 583 | ] 584 | }, 585 | "streamSettings": { 586 | "network": "grpc", 587 | "security": "reality", 588 | "realitySettings": { 589 | "serverName": "cdn-fastly.deb.debian.org", 590 | "publicKey": "SbVKOEMjK0sIlbwg4akyBg5mL5KZwwB-ed4eEE7YnRc", 591 | "fingerprint": "chrome", 592 | "show": false, 593 | "shortId": "", 594 | "spiderX": "/" 595 | }, 596 | "grpcSettings": { 597 | "serviceName": "xyz" 598 | } 599 | }, 600 | "mux": { 601 | "enabled": false, 602 | "concurrency": -1 603 | } 604 | }, 605 | { 606 | "tag": "proxy_3754_%5B%F0%9F%8C%90%5DTelegram%3A+%40iran_ray", 607 | "protocol": "vless", 608 | "settings": { 609 | "vnext": [ 610 | { 611 | "address": "panel.wenyx.gq", 612 | "port": 443, 613 | "users": [ 614 | { 615 | "id": "242c49c9-71a6-422a-a1a3-cf151ca9b77c", 616 | "alterId": 0, 617 | "email": "t@t.tt", 618 | "security": "auto", 619 | "encryption": "none", 620 | "flow": "xtls-rprx-vision" 621 | } 622 | ] 623 | } 624 | ] 625 | }, 626 | "streamSettings": { 627 | "network": "tcp", 628 | "security": "reality", 629 | "realitySettings": { 630 | "serverName": "www.speedtest.net", 631 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 632 | "fingerprint": "ios", 633 | "show": false, 634 | "shortId": "6a3dff33", 635 | "spiderX": "/" 636 | }, 637 | "tcpSettings": { 638 | "acceptProxyProtocol": false 639 | } 640 | }, 641 | "mux": { 642 | "enabled": false, 643 | "concurrency": -1 644 | } 645 | }, 646 | { 647 | "tag": "proxy_4187_Sasan_web", 648 | "protocol": "vless", 649 | "settings": { 650 | "vnext": [ 651 | { 652 | "address": "sasan_web.allaansell.online", 653 | "port": 8080, 654 | "users": [ 655 | { 656 | "id": "03d6bab0-8249-4adc-b335-b862fb16a374", 657 | "alterId": 0, 658 | "email": "t@t.tt", 659 | "security": "auto", 660 | "encryption": "none", 661 | "flow": null 662 | } 663 | ] 664 | } 665 | ] 666 | }, 667 | "streamSettings": { 668 | "network": "tcp", 669 | "security": "reality", 670 | "realitySettings": { 671 | "serverName": "icloud.com", 672 | "publicKey": "DCSBSGrD05mZVfDCbMb0cQriT043JO9XuP9Yybli2Ao", 673 | "fingerprint": "firefox", 674 | "show": false, 675 | "shortId": "36585736", 676 | "spiderX": "/" 677 | }, 678 | "tcpSettings": { 679 | "acceptProxyProtocol": false 680 | } 681 | }, 682 | "mux": { 683 | "enabled": false, 684 | "concurrency": -1 685 | } 686 | }, 687 | { 688 | "tag": "proxy_6814_%F0%9F%87%B3%F0%9F%87%B4%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 689 | "protocol": "vless", 690 | "settings": { 691 | "vnext": [ 692 | { 693 | "address": "panel.wenyx.gq", 694 | "port": 443, 695 | "users": [ 696 | { 697 | "id": "242c49c9-71a6-422a-a1a3-cf151ca9b77c", 698 | "alterId": 0, 699 | "email": "t@t.tt", 700 | "security": "auto", 701 | "encryption": "none", 702 | "flow": "xtls-rprx-vision" 703 | } 704 | ] 705 | } 706 | ] 707 | }, 708 | "streamSettings": { 709 | "network": "tcp", 710 | "security": "reality", 711 | "realitySettings": { 712 | "serverName": "www.speedtest.net", 713 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 714 | "fingerprint": "ios", 715 | "show": false, 716 | "shortId": "6a3dff33", 717 | "spiderX": "/" 718 | }, 719 | "tcpSettings": { 720 | "acceptProxyProtocol": false 721 | } 722 | }, 723 | "mux": { 724 | "enabled": false, 725 | "concurrency": -1 726 | } 727 | }, 728 | { 729 | "tag": "proxy_6007_%F0%9F%87%AC%F0%9F%87%A7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 730 | "protocol": "vless", 731 | "settings": { 732 | "vnext": [ 733 | { 734 | "address": "185.126.255.88", 735 | "port": 45077, 736 | "users": [ 737 | { 738 | "id": "f328bd85-f5cd-4dc1-a2fc-383af5fec94d", 739 | "alterId": 0, 740 | "email": "t@t.tt", 741 | "security": "auto", 742 | "encryption": "none", 743 | "flow": null 744 | } 745 | ] 746 | } 747 | ] 748 | }, 749 | "streamSettings": { 750 | "network": "tcp", 751 | "security": "reality", 752 | "realitySettings": { 753 | "serverName": "www.speedtest.net", 754 | "publicKey": "eBdj8fFccTPnnz966Cl7kTEQDASdCLu15YOgGPJbyTo", 755 | "fingerprint": "chrome", 756 | "show": false, 757 | "shortId": "218f8557", 758 | "spiderX": "/@DashV2ray" 759 | }, 760 | "tcpSettings": { 761 | "acceptProxyProtocol": false 762 | } 763 | }, 764 | "mux": { 765 | "enabled": false, 766 | "concurrency": -1 767 | } 768 | }, 769 | { 770 | "tag": "proxy_5355_MCI600(@Outline_Vpn)vmess://eyJ2IjogIjIiLCAicHMiOiAiQEhvcGVfTmV0LWpvaW4tdXMtb24tVGVsZWdyYW0iLCAiYWRkIjogInYwMi5ndXRpbmd0aW5nLmNvbSIsICJwb3J0IjogIjMwMDAwIiwgInR5cGUiOiAibm9uZSIsICJpZCI6ICJmZmEwM2UxMS1mYThiLTRjYzMtOTQ0OC02OTI5ZTljODk0MWQiLCAiYWlkIjogIjAiLCAibmV0IjogIndzIiwgInBhdGgiOiAiL2FjZWFtZWR2IiwgImhvc3QiOiAiZ3ouZmFzdGNsb3VkLmNsdWIiLCAidGxzIjogIiJ9", 771 | "protocol": "vless", 772 | "settings": { 773 | "vnext": [ 774 | { 775 | "address": "88.198.127.143", 776 | "port": 8080, 777 | "users": [ 778 | { 779 | "id": "25e4ddab-6a6b-4ee1-ee63-5df3ff034724", 780 | "alterId": 0, 781 | "email": "t@t.tt", 782 | "security": "auto", 783 | "encryption": "none", 784 | "flow": null 785 | } 786 | ] 787 | } 788 | ] 789 | }, 790 | "streamSettings": { 791 | "network": "tcp", 792 | "security": "reality", 793 | "realitySettings": { 794 | "serverName": "yahoo.com", 795 | "publicKey": "4vzcHogWNZp6r5Bj0dVcycRGfD5QWJphSzV_cYVCDBo", 796 | "fingerprint": "chrome", 797 | "show": false, 798 | "shortId": "e5759fff", 799 | "spiderX": "/" 800 | }, 801 | "tcpSettings": { 802 | "acceptProxyProtocol": false 803 | } 804 | }, 805 | "mux": { 806 | "enabled": false, 807 | "concurrency": -1 808 | } 809 | }, 810 | { 811 | "tag": "proxy_3963_%40unlimiteddev-link2", 812 | "protocol": "vless", 813 | "settings": { 814 | "vnext": [ 815 | { 816 | "address": "bia-to5.unlimiteddev.xyz", 817 | "port": 8080, 818 | "users": [ 819 | { 820 | "id": "186ce8f1-81f5-4544-db14-967503a749f9", 821 | "alterId": 0, 822 | "email": "t@t.tt", 823 | "security": "auto", 824 | "encryption": "none", 825 | "flow": "xtls-rprx-vision" 826 | } 827 | ] 828 | } 829 | ] 830 | }, 831 | "streamSettings": { 832 | "network": "tcp", 833 | "security": "reality", 834 | "realitySettings": { 835 | "serverName": "discord.com", 836 | "publicKey": "HOoJ3WxAwQY_fQcdADMOyodERKBQpjlcd7MsJyha6R4", 837 | "fingerprint": "random", 838 | "show": false, 839 | "shortId": "3e958d2b59bd", 840 | "spiderX": "/" 841 | }, 842 | "tcpSettings": { 843 | "acceptProxyProtocol": false 844 | } 845 | }, 846 | "mux": { 847 | "enabled": false, 848 | "concurrency": -1 849 | } 850 | }, 851 | { 852 | "tag": "proxy_9120_SUN3(@Outline_Vpn)", 853 | "protocol": "vless", 854 | "settings": { 855 | "vnext": [ 856 | { 857 | "address": "172.232.32.137", 858 | "port": 8443, 859 | "users": [ 860 | { 861 | "id": "e847356b-c7e0-40bf-987d-3eb4d2cd6647", 862 | "alterId": 0, 863 | "email": "t@t.tt", 864 | "security": "auto", 865 | "encryption": "none", 866 | "flow": "xtls-rprx-vision" 867 | } 868 | ] 869 | } 870 | ] 871 | }, 872 | "streamSettings": { 873 | "network": "tcp", 874 | "security": "reality", 875 | "realitySettings": { 876 | "serverName": "cdn.discordapp.com", 877 | "publicKey": "SbVKOEMjK0sIlbwg4akyBg5mL5KZwwB-ed4eEE7YnRc", 878 | "fingerprint": "chrome", 879 | "show": false, 880 | "shortId": "", 881 | "spiderX": "/" 882 | }, 883 | "tcpSettings": { 884 | "acceptProxyProtocol": false 885 | } 886 | }, 887 | "mux": { 888 | "enabled": false, 889 | "concurrency": -1 890 | } 891 | }, 892 | { 893 | "tag": "proxy_2038_SUN6(@Outline_Vpn)", 894 | "protocol": "vless", 895 | "settings": { 896 | "vnext": [ 897 | { 898 | "address": "91.107.244.190", 899 | "port": 443, 900 | "users": [ 901 | { 902 | "id": "AmiroNetwork", 903 | "alterId": 0, 904 | "email": "t@t.tt", 905 | "security": "auto", 906 | "encryption": "none", 907 | "flow": "xtls-rprx-vision" 908 | } 909 | ] 910 | } 911 | ] 912 | }, 913 | "streamSettings": { 914 | "network": "tcp", 915 | "security": "reality", 916 | "realitySettings": { 917 | "serverName": "www.speedtest.net", 918 | "publicKey": "ToUaxsM7y0gnrZX_d390Jp_n5RlBSj0JSnN_ujwMEw0", 919 | "fingerprint": "firefox", 920 | "show": false, 921 | "shortId": "20e83df1", 922 | "spiderX": "/" 923 | }, 924 | "tcpSettings": { 925 | "acceptProxyProtocol": false 926 | } 927 | }, 928 | "mux": { 929 | "enabled": false, 930 | "concurrency": -1 931 | } 932 | }, 933 | { 934 | "tag": "proxy_6013_@unlimiteddev-link1", 935 | "protocol": "vless", 936 | "settings": { 937 | "vnext": [ 938 | { 939 | "address": "bia-to5.unlimiteddev.xyz", 940 | "port": 443, 941 | "users": [ 942 | { 943 | "id": "dadfe898-e0d3-4d1a-ea6d-10f8ffa6eb3d", 944 | "alterId": 0, 945 | "email": "t@t.tt", 946 | "security": "auto", 947 | "encryption": "none", 948 | "flow": "xtls-rprx-vision" 949 | } 950 | ] 951 | } 952 | ] 953 | }, 954 | "streamSettings": { 955 | "network": "tcp", 956 | "security": "reality", 957 | "realitySettings": { 958 | "serverName": "zula.ir", 959 | "publicKey": "STFCKIrssyQnu6aJYmO9rIlPWXHB_c_h6waF6yt_ETw", 960 | "fingerprint": "chrome", 961 | "show": false, 962 | "shortId": "9f5b", 963 | "spiderX": "/" 964 | }, 965 | "tcpSettings": { 966 | "acceptProxyProtocol": false 967 | } 968 | }, 969 | "mux": { 970 | "enabled": false, 971 | "concurrency": -1 972 | } 973 | }, 974 | { 975 | "tag": "proxy_9448_@INIT1984-REALITY:S1", 976 | "protocol": "vless", 977 | "settings": { 978 | "vnext": [ 979 | { 980 | "address": "37.252.4.81", 981 | "port": 443, 982 | "users": [ 983 | { 984 | "id": "6cb2ef13-c7f6-4c54-bccc-040d53f1cff6", 985 | "alterId": 0, 986 | "email": "t@t.tt", 987 | "security": "auto", 988 | "encryption": "none", 989 | "flow": "xtls-rprx-vision" 990 | } 991 | ] 992 | } 993 | ] 994 | }, 995 | "streamSettings": { 996 | "network": "tcp", 997 | "security": "reality", 998 | "realitySettings": { 999 | "serverName": "www.speedtest.net", 1000 | "publicKey": "ntRHNvvzSaBwI_dwJC_iCggwZ7VuUl-Y9wAJeokuIS0", 1001 | "fingerprint": "safari", 1002 | "show": false, 1003 | "shortId": "85e4", 1004 | "spiderX": "/" 1005 | }, 1006 | "tcpSettings": { 1007 | "acceptProxyProtocol": false 1008 | } 1009 | }, 1010 | "mux": { 1011 | "enabled": false, 1012 | "concurrency": -1 1013 | } 1014 | }, 1015 | { 1016 | "tag": "proxy_8028_@INIT1984-REALITY:S2", 1017 | "protocol": "vless", 1018 | "settings": { 1019 | "vnext": [ 1020 | { 1021 | "address": "37.252.4.81", 1022 | "port": 12579, 1023 | "users": [ 1024 | { 1025 | "id": "5fdce0fa-7163-4943-897e-07d527e6de8a", 1026 | "alterId": 0, 1027 | "email": "t@t.tt", 1028 | "security": "auto", 1029 | "encryption": "none", 1030 | "flow": "xtls-rprx-vision" 1031 | } 1032 | ] 1033 | } 1034 | ] 1035 | }, 1036 | "streamSettings": { 1037 | "network": "tcp", 1038 | "security": "reality", 1039 | "realitySettings": { 1040 | "serverName": "ftp.debian.org", 1041 | "publicKey": "pvgBy-y4-SUC3e2kZiuiUR4IAuQllNWC5Rt4_oMidQI", 1042 | "fingerprint": "chrome", 1043 | "show": false, 1044 | "shortId": "7ee122", 1045 | "spiderX": "/" 1046 | }, 1047 | "tcpSettings": { 1048 | "acceptProxyProtocol": false 1049 | } 1050 | }, 1051 | "mux": { 1052 | "enabled": false, 1053 | "concurrency": -1 1054 | } 1055 | }, 1056 | { 1057 | "tag": "proxy_8826_@INIT1984-REALITY:S3", 1058 | "protocol": "vless", 1059 | "settings": { 1060 | "vnext": [ 1061 | { 1062 | "address": "172.232.54.30", 1063 | "port": 443, 1064 | "users": [ 1065 | { 1066 | "id": "2d939c0c-5ead-40cb-a72e-c79a8f58b0ef", 1067 | "alterId": 0, 1068 | "email": "t@t.tt", 1069 | "security": "auto", 1070 | "encryption": "none", 1071 | "flow": "xtls-rprx-vision" 1072 | } 1073 | ] 1074 | } 1075 | ] 1076 | }, 1077 | "streamSettings": { 1078 | "network": "tcp", 1079 | "security": "reality", 1080 | "realitySettings": { 1081 | "serverName": "www.speedtest.net", 1082 | "publicKey": "brjQ2OADfGApTC--YPjtgQrw_oqPBS855rbsbnJ0Ojs", 1083 | "fingerprint": "safari", 1084 | "show": false, 1085 | "shortId": "751e8598d5", 1086 | "spiderX": "/" 1087 | }, 1088 | "tcpSettings": { 1089 | "acceptProxyProtocol": false 1090 | } 1091 | }, 1092 | "mux": { 1093 | "enabled": false, 1094 | "concurrency": -1 1095 | } 1096 | }, 1097 | { 1098 | "tag": "proxy_3684_@INIT1984-REALITY:S4vless://8c883de6-78e9-41e9-9d85-23774b945c16@f-off.melov2ray.store:446?type=tcp&security=reality&fp=chrome&pbk=k-VQ6pgOfyN5EAfsdKrtE_bVjObglboUdTV_nFJbESc&sni=www.speedtest.net&flow=xtls-rprx-vision&sid=3429df77&spx=%2F#@melov2ray-reality-all", 1099 | "protocol": "vless", 1100 | "settings": { 1101 | "vnext": [ 1102 | { 1103 | "address": "172.232.54.30", 1104 | "port": 55430, 1105 | "users": [ 1106 | { 1107 | "id": "60fba8e3-78d7-4126-cdad-6d094c07524d", 1108 | "alterId": 0, 1109 | "email": "t@t.tt", 1110 | "security": "auto", 1111 | "encryption": "none", 1112 | "flow": null 1113 | } 1114 | ] 1115 | } 1116 | ] 1117 | }, 1118 | "streamSettings": { 1119 | "network": "tcp", 1120 | "security": "reality", 1121 | "realitySettings": { 1122 | "serverName": "ftp.debian.org", 1123 | "publicKey": "VLgPQxJDIDPmoECfwvmc6BlG2a13KyyTXNetsJ_FXCs", 1124 | "fingerprint": "chrome", 1125 | "show": false, 1126 | "shortId": "", 1127 | "spiderX": "/" 1128 | }, 1129 | "tcpSettings": { 1130 | "acceptProxyProtocol": false 1131 | } 1132 | }, 1133 | "mux": { 1134 | "enabled": false, 1135 | "concurrency": -1 1136 | } 1137 | }, 1138 | { 1139 | "tag": "proxy_6650_Kiava-RLT-S1-U34", 1140 | "protocol": "vless", 1141 | "settings": { 1142 | "vnext": [ 1143 | { 1144 | "address": "srv9.kiava.fun", 1145 | "port": 443, 1146 | "users": [ 1147 | { 1148 | "id": "9dd91462-55e1-4654-cd15-515dd1a2223a", 1149 | "alterId": 0, 1150 | "email": "t@t.tt", 1151 | "security": "auto", 1152 | "encryption": "none", 1153 | "flow": "xtls-rprx-vision" 1154 | } 1155 | ] 1156 | } 1157 | ] 1158 | }, 1159 | "streamSettings": { 1160 | "network": "tcp", 1161 | "security": "reality", 1162 | "realitySettings": { 1163 | "serverName": "coinmarketcap.com", 1164 | "publicKey": "VOhYOoqVgcJaVtNEmvnbIJZGtfdfGOC1WCHU050FHkY", 1165 | "fingerprint": "chrome", 1166 | "show": false, 1167 | "shortId": "", 1168 | "spiderX": "/coins" 1169 | }, 1170 | "tcpSettings": { 1171 | "acceptProxyProtocol": false 1172 | } 1173 | }, 1174 | "mux": { 1175 | "enabled": false, 1176 | "concurrency": -1 1177 | } 1178 | }, 1179 | { 1180 | "tag": "proxy_2839_Kiava-RLT-S2-U34", 1181 | "protocol": "vless", 1182 | "settings": { 1183 | "vnext": [ 1184 | { 1185 | "address": "srv10.kiava.fun", 1186 | "port": 443, 1187 | "users": [ 1188 | { 1189 | "id": "9dd91462-55e1-4654-cd15-515dd1a2223a", 1190 | "alterId": 0, 1191 | "email": "t@t.tt", 1192 | "security": "auto", 1193 | "encryption": "none", 1194 | "flow": "xtls-rprx-vision" 1195 | } 1196 | ] 1197 | } 1198 | ] 1199 | }, 1200 | "streamSettings": { 1201 | "network": "tcp", 1202 | "security": "reality", 1203 | "realitySettings": { 1204 | "serverName": "coinmarketcap.com", 1205 | "publicKey": "aQulRHjEQp4JAX5iiSdUk8E9UFFEohAByL5248Qvs0s", 1206 | "fingerprint": "chrome", 1207 | "show": false, 1208 | "shortId": "", 1209 | "spiderX": "/coins" 1210 | }, 1211 | "tcpSettings": { 1212 | "acceptProxyProtocol": false 1213 | } 1214 | }, 1215 | "mux": { 1216 | "enabled": false, 1217 | "concurrency": -1 1218 | } 1219 | }, 1220 | { 1221 | "tag": "proxy_7171_MON(@Outline_Vpn)", 1222 | "protocol": "vless", 1223 | "settings": { 1224 | "vnext": [ 1225 | { 1226 | "address": "big.melov2ray.store", 1227 | "port": 27078, 1228 | "users": [ 1229 | { 1230 | "id": "ba94c718-b23d-4e08-ba32-d15b8c4cdb19", 1231 | "alterId": 0, 1232 | "email": "t@t.tt", 1233 | "security": "auto", 1234 | "encryption": "none", 1235 | "flow": "xtls-rprx-vision" 1236 | } 1237 | ] 1238 | } 1239 | ] 1240 | }, 1241 | "streamSettings": { 1242 | "network": "tcp", 1243 | "security": "reality", 1244 | "realitySettings": { 1245 | "serverName": "ftp.debian.org", 1246 | "publicKey": "INX2VXKWv7KOxQbMzKSFSLRut5z3uLyKUkEEUyB3C3Q", 1247 | "fingerprint": "chrome", 1248 | "show": false, 1249 | "shortId": "e50bf730", 1250 | "spiderX": "/" 1251 | }, 1252 | "tcpSettings": { 1253 | "acceptProxyProtocol": false 1254 | } 1255 | }, 1256 | "mux": { 1257 | "enabled": false, 1258 | "concurrency": -1 1259 | } 1260 | }, 1261 | { 1262 | "tag": "proxy_6861_Kiava-RLT-S3-U34", 1263 | "protocol": "vless", 1264 | "settings": { 1265 | "vnext": [ 1266 | { 1267 | "address": "srv11.kiava.fun", 1268 | "port": 443, 1269 | "users": [ 1270 | { 1271 | "id": "9dd91462-55e1-4654-cd15-515dd1a2223a", 1272 | "alterId": 0, 1273 | "email": "t@t.tt", 1274 | "security": "auto", 1275 | "encryption": "none", 1276 | "flow": "xtls-rprx-vision" 1277 | } 1278 | ] 1279 | } 1280 | ] 1281 | }, 1282 | "streamSettings": { 1283 | "network": "tcp", 1284 | "security": "reality", 1285 | "realitySettings": { 1286 | "serverName": "coinmarketcap.com", 1287 | "publicKey": "rpDKafEWby_j_PBc4xodBAAkAjCW7rR-iNJrXZiFUhw", 1288 | "fingerprint": "chrome", 1289 | "show": false, 1290 | "shortId": "", 1291 | "spiderX": "/coins" 1292 | }, 1293 | "tcpSettings": { 1294 | "acceptProxyProtocol": false 1295 | } 1296 | }, 1297 | "mux": { 1298 | "enabled": false, 1299 | "concurrency": -1 1300 | } 1301 | }, 1302 | { 1303 | "tag": "proxy_2537_HamRahAvaL2-VpnProSec", 1304 | "protocol": "vless", 1305 | "settings": { 1306 | "vnext": [ 1307 | { 1308 | "address": "mci2.vpnprosec.shop", 1309 | "port": 2095, 1310 | "users": [ 1311 | { 1312 | "id": "b3490eaa-00a7-4638-ee87-2e0f33afcf0c", 1313 | "alterId": 0, 1314 | "email": "t@t.tt", 1315 | "security": "auto", 1316 | "encryption": "none", 1317 | "flow": null 1318 | } 1319 | ] 1320 | } 1321 | ] 1322 | }, 1323 | "streamSettings": { 1324 | "network": "tcp", 1325 | "security": "reality", 1326 | "realitySettings": { 1327 | "serverName": "zula.ir", 1328 | "publicKey": "lJi9VxMYKfD51GBcDYdo6xJnGUicuqI5pAd--icggS0", 1329 | "fingerprint": "firefox", 1330 | "show": false, 1331 | "shortId": "1253d8", 1332 | "spiderX": "/" 1333 | }, 1334 | "tcpSettings": { 1335 | "acceptProxyProtocol": false 1336 | } 1337 | }, 1338 | "mux": { 1339 | "enabled": false, 1340 | "concurrency": -1 1341 | } 1342 | }, 1343 | { 1344 | "tag": "proxy_5941_irancell1-VpnProSec", 1345 | "protocol": "vless", 1346 | "settings": { 1347 | "vnext": [ 1348 | { 1349 | "address": "mtn1.vpnprosec.shop", 1350 | "port": 2095, 1351 | "users": [ 1352 | { 1353 | "id": "30d58e11-acc4-4899-f663-c5f52e685080", 1354 | "alterId": 0, 1355 | "email": "t@t.tt", 1356 | "security": "auto", 1357 | "encryption": "none", 1358 | "flow": null 1359 | } 1360 | ] 1361 | } 1362 | ] 1363 | }, 1364 | "streamSettings": { 1365 | "network": "tcp", 1366 | "security": "reality", 1367 | "realitySettings": { 1368 | "serverName": "zula.ir", 1369 | "publicKey": "6tKZ-wQ1SoFZb-JQm-dpmsxFP6fKkjJQqRWOB8m4PUE", 1370 | "fingerprint": "firefox", 1371 | "show": false, 1372 | "shortId": "e2", 1373 | "spiderX": "/" 1374 | }, 1375 | "tcpSettings": { 1376 | "acceptProxyProtocol": false 1377 | } 1378 | }, 1379 | "mux": { 1380 | "enabled": false, 1381 | "concurrency": -1 1382 | } 1383 | }, 1384 | { 1385 | "tag": "proxy_5508_irancell2-VpnProSec", 1386 | "protocol": "vless", 1387 | "settings": { 1388 | "vnext": [ 1389 | { 1390 | "address": "mtnn2.vpnprosec.shop", 1391 | "port": 2095, 1392 | "users": [ 1393 | { 1394 | "id": "1d72aaba-e4be-4a00-b190-3d8a87c67d8c", 1395 | "alterId": 0, 1396 | "email": "t@t.tt", 1397 | "security": "auto", 1398 | "encryption": "none", 1399 | "flow": null 1400 | } 1401 | ] 1402 | } 1403 | ] 1404 | }, 1405 | "streamSettings": { 1406 | "network": "tcp", 1407 | "security": "reality", 1408 | "realitySettings": { 1409 | "serverName": "zula.ir", 1410 | "publicKey": "ADESzRAjAHUklyB7Y3dmyb0tpF8a9PS8vj3dxH3HTHg", 1411 | "fingerprint": "firefox", 1412 | "show": false, 1413 | "shortId": "768c66ab", 1414 | "spiderX": "/" 1415 | }, 1416 | "tcpSettings": { 1417 | "acceptProxyProtocol": false 1418 | } 1419 | }, 1420 | "mux": { 1421 | "enabled": false, 1422 | "concurrency": -1 1423 | } 1424 | }, 1425 | { 1426 | "tag": "proxy_3919_Kiava-RLT-S4-U34", 1427 | "protocol": "vless", 1428 | "settings": { 1429 | "vnext": [ 1430 | { 1431 | "address": "srv12.kiava.fun", 1432 | "port": 443, 1433 | "users": [ 1434 | { 1435 | "id": "9dd91462-55e1-4654-cd15-515dd1a2223a", 1436 | "alterId": 0, 1437 | "email": "t@t.tt", 1438 | "security": "auto", 1439 | "encryption": "none", 1440 | "flow": "xtls-rprx-vision" 1441 | } 1442 | ] 1443 | } 1444 | ] 1445 | }, 1446 | "streamSettings": { 1447 | "network": "tcp", 1448 | "security": "reality", 1449 | "realitySettings": { 1450 | "serverName": "coinmarketcap.com", 1451 | "publicKey": "PXTqiUR0bBKjs37hfbBe2jUabTP8Jtk2DDVJM4OAsEw", 1452 | "fingerprint": "chrome", 1453 | "show": false, 1454 | "shortId": "", 1455 | "spiderX": "/coins" 1456 | }, 1457 | "tcpSettings": { 1458 | "acceptProxyProtocol": false 1459 | } 1460 | }, 1461 | "mux": { 1462 | "enabled": false, 1463 | "concurrency": -1 1464 | } 1465 | }, 1466 | { 1467 | "tag": "proxy_7010_MON3(@Outline_Vpn)", 1468 | "protocol": "vless", 1469 | "settings": { 1470 | "vnext": [ 1471 | { 1472 | "address": "mci2.vpnprosec.shop", 1473 | "port": 2095, 1474 | "users": [ 1475 | { 1476 | "id": "b3490eaa-00a7-4638-ee87-2e0f33afcf0c", 1477 | "alterId": 0, 1478 | "email": "t@t.tt", 1479 | "security": "auto", 1480 | "encryption": "none", 1481 | "flow": null 1482 | } 1483 | ] 1484 | } 1485 | ] 1486 | }, 1487 | "streamSettings": { 1488 | "network": "tcp", 1489 | "security": "reality", 1490 | "realitySettings": { 1491 | "serverName": "zula.ir", 1492 | "publicKey": "lJi9VxMYKfD51GBcDYdo6xJnGUicuqI5pAd--icggS0", 1493 | "fingerprint": "firefox", 1494 | "show": false, 1495 | "shortId": "1253d8", 1496 | "spiderX": "/" 1497 | }, 1498 | "tcpSettings": { 1499 | "acceptProxyProtocol": false 1500 | } 1501 | }, 1502 | "mux": { 1503 | "enabled": false, 1504 | "concurrency": -1 1505 | } 1506 | }, 1507 | { 1508 | "tag": "proxy_7637_%40ServerNett+Mtn+Unlimited+1", 1509 | "protocol": "vless", 1510 | "settings": { 1511 | "vnext": [ 1512 | { 1513 | "address": "95.179.250.185", 1514 | "port": 443, 1515 | "users": [ 1516 | { 1517 | "id": "42bdfd8d-4c5e-46d3-87dc-e0864f748e80", 1518 | "alterId": 0, 1519 | "email": "t@t.tt", 1520 | "security": "auto", 1521 | "encryption": "none", 1522 | "flow": null 1523 | } 1524 | ] 1525 | } 1526 | ] 1527 | }, 1528 | "streamSettings": { 1529 | "network": "grpc", 1530 | "security": "tls", 1531 | "tlsSettings": { 1532 | "serverName": "asdfgw.numallaf.shop" 1533 | }, 1534 | "grpcSettings": { 1535 | "serviceName": "@ServerNett" 1536 | } 1537 | }, 1538 | "mux": { 1539 | "enabled": false, 1540 | "concurrency": -1 1541 | } 1542 | }, 1543 | { 1544 | "tag": "proxy_9973_%40ServerNett+Mtn+Unlimited+2", 1545 | "protocol": "vless", 1546 | "settings": { 1547 | "vnext": [ 1548 | { 1549 | "address": "199.247.2.20", 1550 | "port": 443, 1551 | "users": [ 1552 | { 1553 | "id": "42bdfd8d-4c5e-46d3-87dc-e0864f748e80", 1554 | "alterId": 0, 1555 | "email": "t@t.tt", 1556 | "security": "auto", 1557 | "encryption": "none", 1558 | "flow": null 1559 | } 1560 | ] 1561 | } 1562 | ] 1563 | }, 1564 | "streamSettings": { 1565 | "network": "grpc", 1566 | "security": "tls", 1567 | "tlsSettings": { 1568 | "serverName": "asdfgw.numallaf.shop" 1569 | }, 1570 | "grpcSettings": { 1571 | "serviceName": "@ServerNett" 1572 | } 1573 | }, 1574 | "mux": { 1575 | "enabled": false, 1576 | "concurrency": -1 1577 | } 1578 | }, 1579 | { 1580 | "tag": "proxy_3021_%F0%9F%87%A8%F0%9F%87%A6%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1581 | "protocol": "vless", 1582 | "settings": { 1583 | "vnext": [ 1584 | { 1585 | "address": "mci-msv2ray.ddns.net", 1586 | "port": 2087, 1587 | "users": [ 1588 | { 1589 | "id": "2fac0e66-13a0-443f-fd7a-8c0b027e4631", 1590 | "alterId": 0, 1591 | "email": "t@t.tt", 1592 | "security": "auto", 1593 | "encryption": "none", 1594 | "flow": null 1595 | } 1596 | ] 1597 | } 1598 | ] 1599 | }, 1600 | "streamSettings": { 1601 | "network": "grpc", 1602 | "security": "tls", 1603 | "tlsSettings": { 1604 | "serverName": "tm.MsV2ray.fun" 1605 | }, 1606 | "grpcSettings": { 1607 | "serviceName": "@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray,@MsV2ray" 1608 | } 1609 | }, 1610 | "mux": { 1611 | "enabled": false, 1612 | "concurrency": -1 1613 | } 1614 | }, 1615 | { 1616 | "tag": "proxy_6417_%F0%9F%87%AB%F0%9F%87%B7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1617 | "protocol": "vless", 1618 | "settings": { 1619 | "vnext": [ 1620 | { 1621 | "address": "mci-vpncustomize.aparat.lol", 1622 | "port": 2096, 1623 | "users": [ 1624 | { 1625 | "id": "VPNCUSTOMIZE", 1626 | "alterId": 0, 1627 | "email": "t@t.tt", 1628 | "security": "auto", 1629 | "encryption": "none", 1630 | "flow": null 1631 | } 1632 | ] 1633 | } 1634 | ] 1635 | }, 1636 | "streamSettings": { 1637 | "network": "grpc", 1638 | "security": "tls", 1639 | "tlsSettings": { 1640 | "serverName": "yiy.trv2rAy.cfd" 1641 | }, 1642 | "grpcSettings": { 1643 | "serviceName": "@VPNCUSTOMIZE" 1644 | } 1645 | }, 1646 | "mux": { 1647 | "enabled": false, 1648 | "concurrency": -1 1649 | } 1650 | }, 1651 | { 1652 | "tag": "proxy_7264_%F0%9F%87%B8%F0%9F%87%AC%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1653 | "protocol": "vless", 1654 | "settings": { 1655 | "vnext": [ 1656 | { 1657 | "address": "172.232.56.7", 1658 | "port": 16711, 1659 | "users": [ 1660 | { 1661 | "id": "486bb4f1-b6bf-430f-ace8-f0d63347491c", 1662 | "alterId": 0, 1663 | "email": "t@t.tt", 1664 | "security": "auto", 1665 | "encryption": "none", 1666 | "flow": null 1667 | } 1668 | ] 1669 | } 1670 | ] 1671 | }, 1672 | "streamSettings": { 1673 | "network": "tcp", 1674 | "security": "reality", 1675 | "realitySettings": { 1676 | "serverName": "yahoo.com", 1677 | "publicKey": "Cllh2AgdT8NUZiw14_DVpalWB6Vwxo59npTEu0L-8wY", 1678 | "fingerprint": "firefox", 1679 | "show": false, 1680 | "shortId": "3d9def47", 1681 | "spiderX": "/" 1682 | }, 1683 | "tcpSettings": { 1684 | "acceptProxyProtocol": false 1685 | } 1686 | }, 1687 | "mux": { 1688 | "enabled": false, 1689 | "concurrency": -1 1690 | } 1691 | }, 1692 | { 1693 | "tag": "proxy_2992_%F0%9F%87%AF%F0%9F%87%B5%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1694 | "protocol": "vless", 1695 | "settings": { 1696 | "vnext": [ 1697 | { 1698 | "address": "188.64.12.3", 1699 | "port": 443, 1700 | "users": [ 1701 | { 1702 | "id": "d0236924-dd68-4c96-8113-cbea03b917a1", 1703 | "alterId": 0, 1704 | "email": "t@t.tt", 1705 | "security": "auto", 1706 | "encryption": "none", 1707 | "flow": null 1708 | } 1709 | ] 1710 | } 1711 | ] 1712 | }, 1713 | "streamSettings": { 1714 | "network": "tcp", 1715 | "security": "reality", 1716 | "realitySettings": { 1717 | "serverName": "cdn.accuweather.com", 1718 | "publicKey": "R6OukSQVCA1QQUvrFziJhaDe6icgBG7kXUa7-7Ve1mI", 1719 | "fingerprint": "firefox", 1720 | "show": false, 1721 | "shortId": "7e4d2e6e", 1722 | "spiderX": "/" 1723 | }, 1724 | "tcpSettings": { 1725 | "acceptProxyProtocol": false 1726 | } 1727 | }, 1728 | "mux": { 1729 | "enabled": false, 1730 | "concurrency": -1 1731 | } 1732 | }, 1733 | { 1734 | "tag": "proxy_8062_%F0%9F%87%AC%F0%9F%87%A7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1735 | "protocol": "vless", 1736 | "settings": { 1737 | "vnext": [ 1738 | { 1739 | "address": "panel.wenyx.gq", 1740 | "port": 443, 1741 | "users": [ 1742 | { 1743 | "id": "53310fc3-81a7-43be-b269-09354cfb4453", 1744 | "alterId": 0, 1745 | "email": "t@t.tt", 1746 | "security": "auto", 1747 | "encryption": "none", 1748 | "flow": "xtls-rprx-vision" 1749 | } 1750 | ] 1751 | } 1752 | ] 1753 | }, 1754 | "streamSettings": { 1755 | "network": "tcp", 1756 | "security": "reality", 1757 | "realitySettings": { 1758 | "serverName": "www.speedtest.net", 1759 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 1760 | "fingerprint": "ios", 1761 | "show": false, 1762 | "shortId": "6a3dff33", 1763 | "spiderX": "/" 1764 | }, 1765 | "tcpSettings": { 1766 | "acceptProxyProtocol": false 1767 | } 1768 | }, 1769 | "mux": { 1770 | "enabled": false, 1771 | "concurrency": -1 1772 | } 1773 | }, 1774 | { 1775 | "tag": "proxy_8530_%F0%9F%87%A9%F0%9F%87%AA%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1776 | "protocol": "vless", 1777 | "settings": { 1778 | "vnext": [ 1779 | { 1780 | "address": "167.235.249.207", 1781 | "port": 1111, 1782 | "users": [ 1783 | { 1784 | "id": "c30e7dcc-79dd-49d9-bdce-ac0aa775dfbe", 1785 | "alterId": 0, 1786 | "email": "t@t.tt", 1787 | "security": "auto", 1788 | "encryption": "none", 1789 | "flow": "xtls-rprx-vision" 1790 | } 1791 | ] 1792 | } 1793 | ] 1794 | }, 1795 | "streamSettings": { 1796 | "network": "tcp", 1797 | "security": "reality", 1798 | "realitySettings": { 1799 | "serverName": "flutter.dev", 1800 | "publicKey": "TzZMN1ACUuOFRrJEARi80qTR4sXDi_qA9qiflWbY8jM", 1801 | "fingerprint": "chrome", 1802 | "show": false, 1803 | "shortId": "4a4c780f", 1804 | "spiderX": "/" 1805 | }, 1806 | "tcpSettings": { 1807 | "acceptProxyProtocol": false 1808 | } 1809 | }, 1810 | "mux": { 1811 | "enabled": false, 1812 | "concurrency": -1 1813 | } 1814 | }, 1815 | { 1816 | "tag": "proxy_9486_%F0%9F%87%BA%F0%9F%87%B8%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1817 | "protocol": "vless", 1818 | "settings": { 1819 | "vnext": [ 1820 | { 1821 | "address": "big.melov2ray.store", 1822 | "port": 27078, 1823 | "users": [ 1824 | { 1825 | "id": "ba94c718-b23d-4e08-ba32-d15b8c4cdb19", 1826 | "alterId": 0, 1827 | "email": "t@t.tt", 1828 | "security": "auto", 1829 | "encryption": "none", 1830 | "flow": "xtls-rprx-vision" 1831 | } 1832 | ] 1833 | } 1834 | ] 1835 | }, 1836 | "streamSettings": { 1837 | "network": "tcp", 1838 | "security": "reality", 1839 | "realitySettings": { 1840 | "serverName": "ftp.debian.org", 1841 | "publicKey": "INX2VXKWv7KOxQbMzKSFSLRut5z3uLyKUkEEUyB3C3Q", 1842 | "fingerprint": "chrome", 1843 | "show": false, 1844 | "shortId": "e50bf730", 1845 | "spiderX": "/" 1846 | }, 1847 | "tcpSettings": { 1848 | "acceptProxyProtocol": false 1849 | } 1850 | }, 1851 | "mux": { 1852 | "enabled": false, 1853 | "concurrency": -1 1854 | } 1855 | }, 1856 | { 1857 | "tag": "proxy_8331_%F0%9F%87%AB%F0%9F%87%B7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1858 | "protocol": "vless", 1859 | "settings": { 1860 | "vnext": [ 1861 | { 1862 | "address": "mci2.vpnprosec.shop", 1863 | "port": 2095, 1864 | "users": [ 1865 | { 1866 | "id": "b3490eaa-00a7-4638-ee87-2e0f33afcf0c", 1867 | "alterId": 0, 1868 | "email": "t@t.tt", 1869 | "security": "auto", 1870 | "encryption": "none", 1871 | "flow": null 1872 | } 1873 | ] 1874 | } 1875 | ] 1876 | }, 1877 | "streamSettings": { 1878 | "network": "tcp", 1879 | "security": "reality", 1880 | "realitySettings": { 1881 | "serverName": "zula.ir", 1882 | "publicKey": "lJi9VxMYKfD51GBcDYdo6xJnGUicuqI5pAd--icggS0", 1883 | "fingerprint": "firefox", 1884 | "show": false, 1885 | "shortId": "1253d8", 1886 | "spiderX": "/" 1887 | }, 1888 | "tcpSettings": { 1889 | "acceptProxyProtocol": false 1890 | } 1891 | }, 1892 | "mux": { 1893 | "enabled": false, 1894 | "concurrency": -1 1895 | } 1896 | }, 1897 | { 1898 | "tag": "proxy_6487_%F0%9F%87%AE%F0%9F%87%B8%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1899 | "protocol": "vless", 1900 | "settings": { 1901 | "vnext": [ 1902 | { 1903 | "address": "xv2rayng-xv2rayng-xv2rayng-xv2rayng-xv2rayng-xv2rayng-xv2rayng.vazagh.top", 1904 | "port": 443, 1905 | "users": [ 1906 | { 1907 | "id": "Xv2rayNG-Xv2rayNG-Xv2rayNG-1", 1908 | "alterId": 0, 1909 | "email": "t@t.tt", 1910 | "security": "auto", 1911 | "encryption": "none", 1912 | "flow": "xtls-rprx-vision" 1913 | } 1914 | ] 1915 | } 1916 | ] 1917 | }, 1918 | "streamSettings": { 1919 | "network": "tcp", 1920 | "security": "reality", 1921 | "realitySettings": { 1922 | "serverName": "www.speedtest.net", 1923 | "publicKey": "Gd2ARjMwPVkVRScqKREI2OqHZP00zyhXRBUkC1OYrSk", 1924 | "fingerprint": "firefox", 1925 | "show": false, 1926 | "shortId": "e1ecffeeee", 1927 | "spiderX": "/" 1928 | }, 1929 | "tcpSettings": { 1930 | "acceptProxyProtocol": false 1931 | } 1932 | }, 1933 | "mux": { 1934 | "enabled": false, 1935 | "concurrency": -1 1936 | } 1937 | }, 1938 | { 1939 | "tag": "proxy_8069_%F0%9F%87%AF%F0%9F%87%B5%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1940 | "protocol": "vless", 1941 | "settings": { 1942 | "vnext": [ 1943 | { 1944 | "address": "188.64.12.3", 1945 | "port": 443, 1946 | "users": [ 1947 | { 1948 | "id": "d0236924-dd68-4c96-8113-cbea03b917a1", 1949 | "alterId": 0, 1950 | "email": "t@t.tt", 1951 | "security": "auto", 1952 | "encryption": "none", 1953 | "flow": null 1954 | } 1955 | ] 1956 | } 1957 | ] 1958 | }, 1959 | "streamSettings": { 1960 | "network": "tcp", 1961 | "security": "reality", 1962 | "realitySettings": { 1963 | "serverName": "cdn.accuweather.com", 1964 | "publicKey": "R6OukSQVCA1QQUvrFziJhaDe6icgBG7kXUa7-7Ve1mI", 1965 | "fingerprint": "firefox", 1966 | "show": false, 1967 | "shortId": "7e4d2e6e", 1968 | "spiderX": "/" 1969 | }, 1970 | "tcpSettings": { 1971 | "acceptProxyProtocol": false 1972 | } 1973 | }, 1974 | "mux": { 1975 | "enabled": false, 1976 | "concurrency": -1 1977 | } 1978 | }, 1979 | { 1980 | "tag": "proxy_5048_%F0%9F%87%AC%F0%9F%87%A7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 1981 | "protocol": "vless", 1982 | "settings": { 1983 | "vnext": [ 1984 | { 1985 | "address": "panel.wenyx.gq", 1986 | "port": 443, 1987 | "users": [ 1988 | { 1989 | "id": "53310fc3-81a7-43be-b269-09354cfb4453", 1990 | "alterId": 0, 1991 | "email": "t@t.tt", 1992 | "security": "auto", 1993 | "encryption": "none", 1994 | "flow": "xtls-rprx-vision" 1995 | } 1996 | ] 1997 | } 1998 | ] 1999 | }, 2000 | "streamSettings": { 2001 | "network": "tcp", 2002 | "security": "reality", 2003 | "realitySettings": { 2004 | "serverName": "www.speedtest.net", 2005 | "publicKey": "xD1RNQH_HaXIIP4Kz1D2VIjNToIehfOEdhy84PR4HVI", 2006 | "fingerprint": "ios", 2007 | "show": false, 2008 | "shortId": "6a3dff33", 2009 | "spiderX": "/" 2010 | }, 2011 | "tcpSettings": { 2012 | "acceptProxyProtocol": false 2013 | } 2014 | }, 2015 | "mux": { 2016 | "enabled": false, 2017 | "concurrency": -1 2018 | } 2019 | }, 2020 | { 2021 | "tag": "proxy_7357_%F0%9F%87%A9%F0%9F%87%AA%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 2022 | "protocol": "vless", 2023 | "settings": { 2024 | "vnext": [ 2025 | { 2026 | "address": "167.235.249.207", 2027 | "port": 1111, 2028 | "users": [ 2029 | { 2030 | "id": "c30e7dcc-79dd-49d9-bdce-ac0aa775dfbe", 2031 | "alterId": 0, 2032 | "email": "t@t.tt", 2033 | "security": "auto", 2034 | "encryption": "none", 2035 | "flow": "xtls-rprx-vision" 2036 | } 2037 | ] 2038 | } 2039 | ] 2040 | }, 2041 | "streamSettings": { 2042 | "network": "tcp", 2043 | "security": "reality", 2044 | "realitySettings": { 2045 | "serverName": "flutter.dev", 2046 | "publicKey": "TzZMN1ACUuOFRrJEARi80qTR4sXDi_qA9qiflWbY8jM", 2047 | "fingerprint": "chrome", 2048 | "show": false, 2049 | "shortId": "4a4c780f", 2050 | "spiderX": "/" 2051 | }, 2052 | "tcpSettings": { 2053 | "acceptProxyProtocol": false 2054 | } 2055 | }, 2056 | "mux": { 2057 | "enabled": false, 2058 | "concurrency": -1 2059 | } 2060 | }, 2061 | { 2062 | "tag": "proxy_6884_%F0%9F%87%BA%F0%9F%87%B8%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 2063 | "protocol": "vless", 2064 | "settings": { 2065 | "vnext": [ 2066 | { 2067 | "address": "big.melov2ray.store", 2068 | "port": 27078, 2069 | "users": [ 2070 | { 2071 | "id": "ba94c718-b23d-4e08-ba32-d15b8c4cdb19", 2072 | "alterId": 0, 2073 | "email": "t@t.tt", 2074 | "security": "auto", 2075 | "encryption": "none", 2076 | "flow": "xtls-rprx-vision" 2077 | } 2078 | ] 2079 | } 2080 | ] 2081 | }, 2082 | "streamSettings": { 2083 | "network": "tcp", 2084 | "security": "reality", 2085 | "realitySettings": { 2086 | "serverName": "ftp.debian.org", 2087 | "publicKey": "INX2VXKWv7KOxQbMzKSFSLRut5z3uLyKUkEEUyB3C3Q", 2088 | "fingerprint": "chrome", 2089 | "show": false, 2090 | "shortId": "e50bf730", 2091 | "spiderX": "/" 2092 | }, 2093 | "tcpSettings": { 2094 | "acceptProxyProtocol": false 2095 | } 2096 | }, 2097 | "mux": { 2098 | "enabled": false, 2099 | "concurrency": -1 2100 | } 2101 | }, 2102 | { 2103 | "tag": "proxy_9760_%F0%9F%87%AB%F0%9F%87%B7%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 2104 | "protocol": "vless", 2105 | "settings": { 2106 | "vnext": [ 2107 | { 2108 | "address": "mci2.vpnprosec.shop", 2109 | "port": 2095, 2110 | "users": [ 2111 | { 2112 | "id": "b3490eaa-00a7-4638-ee87-2e0f33afcf0c", 2113 | "alterId": 0, 2114 | "email": "t@t.tt", 2115 | "security": "auto", 2116 | "encryption": "none", 2117 | "flow": null 2118 | } 2119 | ] 2120 | } 2121 | ] 2122 | }, 2123 | "streamSettings": { 2124 | "network": "tcp", 2125 | "security": "reality", 2126 | "realitySettings": { 2127 | "serverName": "zula.ir", 2128 | "publicKey": "lJi9VxMYKfD51GBcDYdo6xJnGUicuqI5pAd--icggS0", 2129 | "fingerprint": "firefox", 2130 | "show": false, 2131 | "shortId": "1253d8", 2132 | "spiderX": "/" 2133 | }, 2134 | "tcpSettings": { 2135 | "acceptProxyProtocol": false 2136 | } 2137 | }, 2138 | "mux": { 2139 | "enabled": false, 2140 | "concurrency": -1 2141 | } 2142 | }, 2143 | { 2144 | "tag": "proxy_3159_%F0%9F%87%AE%F0%9F%87%B8%F0%9F%8C%8F+%40customv2ray+%DA%A9%D8%A7%D9%86%D9%81%DB%8C%DA%AF+%D9%87%D8%A7%DB%8C+%D8%A8%DB%8C%D8%B4%D8%AA%D8%B1+%D8%B9%D8%B6%D9%88+%D8%B4%D9%88", 2145 | "protocol": "vless", 2146 | "settings": { 2147 | "vnext": [ 2148 | { 2149 | "address": "xv2rayng-xv2rayng-xv2rayng-xv2rayng-xv2rayng-xv2rayng-xv2rayng.vazagh.top", 2150 | "port": 443, 2151 | "users": [ 2152 | { 2153 | "id": "Xv2rayNG-Xv2rayNG-Xv2rayNG-1", 2154 | "alterId": 0, 2155 | "email": "t@t.tt", 2156 | "security": "auto", 2157 | "encryption": "none", 2158 | "flow": "xtls-rprx-vision" 2159 | } 2160 | ] 2161 | } 2162 | ] 2163 | }, 2164 | "streamSettings": { 2165 | "network": "tcp", 2166 | "security": "reality", 2167 | "realitySettings": { 2168 | "serverName": "www.speedtest.net", 2169 | "publicKey": "Gd2ARjMwPVkVRScqKREI2OqHZP00zyhXRBUkC1OYrSk", 2170 | "fingerprint": "firefox", 2171 | "show": false, 2172 | "shortId": "e1ecffeeee", 2173 | "spiderX": "/" 2174 | }, 2175 | "tcpSettings": { 2176 | "acceptProxyProtocol": false 2177 | } 2178 | }, 2179 | "mux": { 2180 | "enabled": false, 2181 | "concurrency": -1 2182 | } 2183 | }, 2184 | { 2185 | "tag": "proxy_3194_-%F0%9F%87%A9%F0%9F%87%AA%7CAll", 2186 | "protocol": "vless", 2187 | "settings": { 2188 | "vnext": [ 2189 | { 2190 | "address": "all-shhproxy.ddns.net", 2191 | "port": 2096, 2192 | "users": [ 2193 | { 2194 | "id": "5478f998-8040-4233-b7c1-a7a5ad1e4f40", 2195 | "alterId": 0, 2196 | "email": "t@t.tt", 2197 | "security": "auto", 2198 | "encryption": "none", 2199 | "flow": null 2200 | } 2201 | ] 2202 | } 2203 | ] 2204 | }, 2205 | "streamSettings": { 2206 | "network": "grpc", 2207 | "security": "tls", 2208 | "tlsSettings": { 2209 | "serverName": "dl.SpV2ray.cfd" 2210 | }, 2211 | "grpcSettings": { 2212 | "serviceName": "@Shh_Proxy" 2213 | } 2214 | }, 2215 | "mux": { 2216 | "enabled": false, 2217 | "concurrency": -1 2218 | } 2219 | }, 2220 | { 2221 | "tag": "proxy_6480_STOR", 2222 | "protocol": "vless", 2223 | "settings": { 2224 | "vnext": [ 2225 | { 2226 | "address": "64.176.180.94", 2227 | "port": 25340, 2228 | "users": [ 2229 | { 2230 | "id": "c8daaf06-ada0-4408-8d86-a47c6ba9b640", 2231 | "alterId": 0, 2232 | "email": "t@t.tt", 2233 | "security": "auto", 2234 | "encryption": "none", 2235 | "flow": null 2236 | } 2237 | ] 2238 | } 2239 | ] 2240 | }, 2241 | "streamSettings": { 2242 | "network": "grpc", 2243 | "security": "reality", 2244 | "realitySettings": { 2245 | "serverName": "www.speedtest.net", 2246 | "publicKey": "RZpvvOrDH3p7a1xHzDMHA6_eG5ZjPnATjEfFp-XEYB8", 2247 | "fingerprint": "firefox", 2248 | "show": false, 2249 | "shortId": "7af5b36c", 2250 | "spiderX": "/" 2251 | }, 2252 | "grpcSettings": { 2253 | "serviceName": "@KILID_STOR" 2254 | } 2255 | }, 2256 | "mux": { 2257 | "enabled": false, 2258 | "concurrency": -1 2259 | } 2260 | }, 2261 | { 2262 | "tag": "proxy_8835_%40V2RayNgTE", 2263 | "protocol": "vless", 2264 | "settings": { 2265 | "vnext": [ 2266 | { 2267 | "address": "free4.foxnim.cam", 2268 | "port": 2087, 2269 | "users": [ 2270 | { 2271 | "id": "d7c68357-16ed-4737-a4a3-0d845a26a588", 2272 | "alterId": 0, 2273 | "email": "t@t.tt", 2274 | "security": "auto", 2275 | "encryption": "none", 2276 | "flow": null 2277 | } 2278 | ] 2279 | } 2280 | ] 2281 | }, 2282 | "streamSettings": { 2283 | "network": "grpc", 2284 | "security": "tls", 2285 | "tlsSettings": { 2286 | "serverName": "free.foxnim.cam" 2287 | }, 2288 | "grpcSettings": { 2289 | "serviceName": "@foxnim" 2290 | } 2291 | }, 2292 | "mux": { 2293 | "enabled": false, 2294 | "concurrency": -1 2295 | } 2296 | }, 2297 | { 2298 | "tag": "proxy_2769_%40V2RayNgTE", 2299 | "protocol": "vless", 2300 | "settings": { 2301 | "vnext": [ 2302 | { 2303 | "address": "free3.foxnim.cam", 2304 | "port": 2087, 2305 | "users": [ 2306 | { 2307 | "id": "d7c68357-16ed-4737-a4a3-0d845a26a588", 2308 | "alterId": 0, 2309 | "email": "t@t.tt", 2310 | "security": "auto", 2311 | "encryption": "none", 2312 | "flow": null 2313 | } 2314 | ] 2315 | } 2316 | ] 2317 | }, 2318 | "streamSettings": { 2319 | "network": "grpc", 2320 | "security": "tls", 2321 | "tlsSettings": { 2322 | "serverName": "free.foxnim.cam" 2323 | }, 2324 | "grpcSettings": { 2325 | "serviceName": "@foxnim" 2326 | } 2327 | }, 2328 | "mux": { 2329 | "enabled": false, 2330 | "concurrency": -1 2331 | } 2332 | }, 2333 | { 2334 | "tag": "proxy_1448_%40V2RayNgTE", 2335 | "protocol": "vless", 2336 | "settings": { 2337 | "vnext": [ 2338 | { 2339 | "address": "free2.foxnim.cam", 2340 | "port": 2087, 2341 | "users": [ 2342 | { 2343 | "id": "d7c68357-16ed-4737-a4a3-0d845a26a588", 2344 | "alterId": 0, 2345 | "email": "t@t.tt", 2346 | "security": "auto", 2347 | "encryption": "none", 2348 | "flow": null 2349 | } 2350 | ] 2351 | } 2352 | ] 2353 | }, 2354 | "streamSettings": { 2355 | "network": "grpc", 2356 | "security": "tls", 2357 | "tlsSettings": { 2358 | "serverName": "free.foxnim.cam" 2359 | }, 2360 | "grpcSettings": { 2361 | "serviceName": "@foxnim" 2362 | } 2363 | }, 2364 | "mux": { 2365 | "enabled": false, 2366 | "concurrency": -1 2367 | } 2368 | }, 2369 | { 2370 | "tag": "proxy_5265_@melov2ray-reality-all", 2371 | "protocol": "vless", 2372 | "settings": { 2373 | "vnext": [ 2374 | { 2375 | "address": "f-off.melov2ray.store", 2376 | "port": 447, 2377 | "users": [ 2378 | { 2379 | "id": "8c883de6-78e9-41e9-9d85-23774b945c16", 2380 | "alterId": 0, 2381 | "email": "t@t.tt", 2382 | "security": "auto", 2383 | "encryption": "none", 2384 | "flow": "xtls-rprx-vision" 2385 | } 2386 | ] 2387 | } 2388 | ] 2389 | }, 2390 | "streamSettings": { 2391 | "network": "tcp", 2392 | "security": "reality", 2393 | "realitySettings": { 2394 | "serverName": "www.speedtest.net", 2395 | "publicKey": "k-VQ6pgOfyN5EAfsdKrtE_bVjObglboUdTV_nFJbESc", 2396 | "fingerprint": "chrome", 2397 | "show": false, 2398 | "shortId": "3429df77", 2399 | "spiderX": "/" 2400 | }, 2401 | "tcpSettings": { 2402 | "acceptProxyProtocol": false 2403 | } 2404 | }, 2405 | "mux": { 2406 | "enabled": false, 2407 | "concurrency": -1 2408 | } 2409 | }, 2410 | { 2411 | "tag": "direct-out", 2412 | "protocol": "freedom" 2413 | } 2414 | ] 2415 | } --------------------------------------------------------------------------------