Created
March 18, 2024 06:39
-
-
Save lbr77/dabec9714fa75aeb14853964f7f2d9d2 to your computer and use it in GitHub Desktop.
DubheCTF authorized mess & unauthorized less v2ray config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"log": { | |
"loglevel":"debug" | |
}, | |
"inbounds": [ | |
{ | |
"protocol": "dokodemo-door", | |
"port": 50005, | |
"settings": { | |
"address": "172.20.0.2", | |
// "address": "10.89.1.2", | |
"port": 8787, | |
"network": "tcp,udp", | |
"followRedirect": true | |
} | |
} | |
], | |
"outbounds": [ | |
{ | |
"protocol": "vmess", | |
"settings": { | |
"vnext": [ | |
{ | |
// "address": "localhost", | |
// "port":46469, | |
"address": "1.95.11.7", // 服务器地址,请修改为你自己的服务器 ip 或域名 | |
"port": 40086, // 服务器端口 | |
"users": [ | |
{ | |
"id": "f3a5cae3-6bd2-40d1-b13b-2cc3d87af2c7", | |
"security":"auto" | |
} | |
] | |
} | |
] | |
} | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"log": { | |
"loglevel":"debug" | |
}, | |
"inbounds": [ | |
{ | |
"protocol": "dokodemo-door", | |
"port": 50006, | |
"settings": { | |
// "address": "172.20.0.2", | |
"address": "localhost", | |
"port": 9229, | |
"network": "tcp,udp", | |
"followRedirect": true | |
} | |
} | |
], | |
"outbounds": [ | |
{ | |
"tag": "proxy", | |
"protocol": "vless", | |
"settings": { | |
"vnext": [ | |
{ | |
"address": "localhost", | |
"port": 50005, | |
"users": [ | |
{ | |
"id": "5e5e7b9a-a251-441b-a81b-9d5b8a8f9019", | |
"alterId": 0, | |
"email": "t@t.tt", | |
"security": "auto", | |
"encryption": "none" | |
} | |
] | |
} | |
] | |
}, | |
"streamSettings": { | |
"network": "ws", | |
"wsSettings": { | |
"path": "/?ed=2048", | |
"headers": { | |
"Host": "localhost:50005" | |
} | |
} | |
}, | |
"mux": { | |
"enabled": false, | |
"concurrency": -1 | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment