├── .gitattributes ├── .gitignore ├── AltSyscallClient ├── AltSyscallClient.c ├── AltSyscallClient.sln ├── AltSyscallClient.vcxproj └── AltSyscallClient.vcxproj.filters ├── AltSyscallDriver ├── AltSyscall.c ├── AltSyscall.h ├── AltSyscallDriver.inf ├── AltSyscallDriver.sln ├── AltSyscallDriver.vcxproj └── AltSyscallDriver.vcxproj.filters ├── README.md └── images ├── PspEnableAltSystemCallHandling.png ├── gsod.png └── poc.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/.gitignore -------------------------------------------------------------------------------- /AltSyscallClient/AltSyscallClient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallClient/AltSyscallClient.c -------------------------------------------------------------------------------- /AltSyscallClient/AltSyscallClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallClient/AltSyscallClient.sln -------------------------------------------------------------------------------- /AltSyscallClient/AltSyscallClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallClient/AltSyscallClient.vcxproj -------------------------------------------------------------------------------- /AltSyscallClient/AltSyscallClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallClient/AltSyscallClient.vcxproj.filters -------------------------------------------------------------------------------- /AltSyscallDriver/AltSyscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallDriver/AltSyscall.c -------------------------------------------------------------------------------- /AltSyscallDriver/AltSyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallDriver/AltSyscall.h -------------------------------------------------------------------------------- /AltSyscallDriver/AltSyscallDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallDriver/AltSyscallDriver.inf -------------------------------------------------------------------------------- /AltSyscallDriver/AltSyscallDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallDriver/AltSyscallDriver.sln -------------------------------------------------------------------------------- /AltSyscallDriver/AltSyscallDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallDriver/AltSyscallDriver.vcxproj -------------------------------------------------------------------------------- /AltSyscallDriver/AltSyscallDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/AltSyscallDriver/AltSyscallDriver.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/README.md -------------------------------------------------------------------------------- /images/PspEnableAltSystemCallHandling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/images/PspEnableAltSystemCallHandling.png -------------------------------------------------------------------------------- /images/gsod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/images/gsod.png -------------------------------------------------------------------------------- /images/poc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcpu/WinAltSyscallHandler/HEAD/images/poc.jpg --------------------------------------------------------------------------------