├── .github └── workflows │ ├── codeql.yml │ └── geodata.yml ├── .gitignore ├── LICENCE ├── README.md ├── V2RayGen.py ├── XRayAgent.py ├── contents ├── content1.png ├── content2.png ├── content3.png └── content4.png ├── geodata ├── IranIPs.txt ├── ads.txt ├── clash_rules.yaml ├── iran.dat └── qv2ray-client.json └── utils └── geodata.py /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/geodata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/.github/workflows/geodata.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/README.md -------------------------------------------------------------------------------- /V2RayGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/V2RayGen.py -------------------------------------------------------------------------------- /XRayAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/XRayAgent.py -------------------------------------------------------------------------------- /contents/content1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/contents/content1.png -------------------------------------------------------------------------------- /contents/content2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/contents/content2.png -------------------------------------------------------------------------------- /contents/content3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/contents/content3.png -------------------------------------------------------------------------------- /contents/content4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/contents/content4.png -------------------------------------------------------------------------------- /geodata/IranIPs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/geodata/IranIPs.txt -------------------------------------------------------------------------------- /geodata/ads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/geodata/ads.txt -------------------------------------------------------------------------------- /geodata/clash_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/geodata/clash_rules.yaml -------------------------------------------------------------------------------- /geodata/iran.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/geodata/iran.dat -------------------------------------------------------------------------------- /geodata/qv2ray-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/geodata/qv2ray-client.json -------------------------------------------------------------------------------- /utils/geodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonyaCore/V2RayGen/HEAD/utils/geodata.py --------------------------------------------------------------------------------