├── .gitignore ├── LICENSE ├── README.md ├── check_distro.sh ├── images ├── 1.jpg ├── 2.jpg └── 3.jpg ├── ins.sh ├── ins.sh~ ├── switchyomega └── OmegaOptions.bak ├── template ├── client.json ├── trojan-gfw.service ├── trojan-gfw0.sh └── 测试方法 ├── test_menu.sh └── trojan-as-a-service ├── trojan-reg.cmd ├── trojan-service.exe ├── trojan-service.xml └── trojan-unreg.cmd /.gitignore: -------------------------------------------------------------------------------- 1 | check_distro.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/README.md -------------------------------------------------------------------------------- /check_distro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/check_distro.sh -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/images/3.jpg -------------------------------------------------------------------------------- /ins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/ins.sh -------------------------------------------------------------------------------- /ins.sh~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/ins.sh~ -------------------------------------------------------------------------------- /switchyomega/OmegaOptions.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/switchyomega/OmegaOptions.bak -------------------------------------------------------------------------------- /template/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/template/client.json -------------------------------------------------------------------------------- /template/trojan-gfw.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/template/trojan-gfw.service -------------------------------------------------------------------------------- /template/trojan-gfw0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/template/trojan-gfw0.sh -------------------------------------------------------------------------------- /template/测试方法: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/template/测试方法 -------------------------------------------------------------------------------- /test_menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/test_menu.sh -------------------------------------------------------------------------------- /trojan-as-a-service/trojan-reg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/trojan-as-a-service/trojan-reg.cmd -------------------------------------------------------------------------------- /trojan-as-a-service/trojan-service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/trojan-as-a-service/trojan-service.exe -------------------------------------------------------------------------------- /trojan-as-a-service/trojan-service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/trojan-as-a-service/trojan-service.xml -------------------------------------------------------------------------------- /trojan-as-a-service/trojan-unreg.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mark-logs-code-hub/trojan-wiz/HEAD/trojan-as-a-service/trojan-unreg.cmd --------------------------------------------------------------------------------