├── .gitignore ├── BypassAV-1.sln ├── BypassAV-1 ├── BypassAV-1.cpp ├── BypassAV-1.vcxproj └── BypassAV-1.vcxproj.filters ├── README.assets ├── demo.gif ├── img1.png └── img2.png ├── README.md ├── calc.bin ├── calc_encrypted.bin └── xorencrypt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/.gitignore -------------------------------------------------------------------------------- /BypassAV-1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/BypassAV-1.sln -------------------------------------------------------------------------------- /BypassAV-1/BypassAV-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/BypassAV-1/BypassAV-1.cpp -------------------------------------------------------------------------------- /BypassAV-1/BypassAV-1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/BypassAV-1/BypassAV-1.vcxproj -------------------------------------------------------------------------------- /BypassAV-1/BypassAV-1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/BypassAV-1/BypassAV-1.vcxproj.filters -------------------------------------------------------------------------------- /README.assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/README.assets/demo.gif -------------------------------------------------------------------------------- /README.assets/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/README.assets/img1.png -------------------------------------------------------------------------------- /README.assets/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/README.assets/img2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/README.md -------------------------------------------------------------------------------- /calc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/calc.bin -------------------------------------------------------------------------------- /calc_encrypted.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/calc_encrypted.bin -------------------------------------------------------------------------------- /xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yutianqaq/x1Ldr/HEAD/xorencrypt.py --------------------------------------------------------------------------------