├── .gitattributes ├── .gitignore ├── README.md ├── ShadeLoader.sln └── ShadeLoader ├── README.md ├── ShadeLoader.vcxproj ├── ShadeLoader.vcxproj.filters ├── config.h ├── encrypt.py ├── encryption.cpp ├── encryption.h ├── main.cpp ├── process_hollowing.cpp ├── process_hollowing.h ├── protection.cpp ├── protection.h ├── self_delete.cpp ├── self_delete.h ├── shellcode_dowloader.cpp ├── shellcode_downloader.h └── slef_destruct.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/README.md -------------------------------------------------------------------------------- /ShadeLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader.sln -------------------------------------------------------------------------------- /ShadeLoader/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ShadeLoader/ShadeLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/ShadeLoader.vcxproj -------------------------------------------------------------------------------- /ShadeLoader/ShadeLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/ShadeLoader.vcxproj.filters -------------------------------------------------------------------------------- /ShadeLoader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/config.h -------------------------------------------------------------------------------- /ShadeLoader/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/encrypt.py -------------------------------------------------------------------------------- /ShadeLoader/encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/encryption.cpp -------------------------------------------------------------------------------- /ShadeLoader/encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/encryption.h -------------------------------------------------------------------------------- /ShadeLoader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/main.cpp -------------------------------------------------------------------------------- /ShadeLoader/process_hollowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/process_hollowing.cpp -------------------------------------------------------------------------------- /ShadeLoader/process_hollowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/process_hollowing.h -------------------------------------------------------------------------------- /ShadeLoader/protection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/protection.cpp -------------------------------------------------------------------------------- /ShadeLoader/protection.h: -------------------------------------------------------------------------------- 1 | 2 | bool protection(); -------------------------------------------------------------------------------- /ShadeLoader/self_delete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/self_delete.cpp -------------------------------------------------------------------------------- /ShadeLoader/self_delete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/self_delete.h -------------------------------------------------------------------------------- /ShadeLoader/shellcode_dowloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/shellcode_dowloader.cpp -------------------------------------------------------------------------------- /ShadeLoader/shellcode_downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/shellcode_downloader.h -------------------------------------------------------------------------------- /ShadeLoader/slef_destruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vasco0x4/ShadeLoader/HEAD/ShadeLoader/slef_destruct.cpp --------------------------------------------------------------------------------