├── .gitignore ├── Image1.PNG ├── Image2.PNG ├── Image3.PNG ├── Includes.hpp ├── LICENSE ├── README.md ├── Read Me.txt ├── SimpleByPass.sln ├── SimpleByPass.vcxproj ├── SimpleByPass.vcxproj.filters ├── SimpleByPass.vcxproj.user ├── SysCall.hpp ├── hdlog.hpp ├── main.cpp └── syscalls.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/.gitignore -------------------------------------------------------------------------------- /Image1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/Image1.PNG -------------------------------------------------------------------------------- /Image2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/Image2.PNG -------------------------------------------------------------------------------- /Image3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/Image3.PNG -------------------------------------------------------------------------------- /Includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/Includes.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/README.md -------------------------------------------------------------------------------- /Read Me.txt: -------------------------------------------------------------------------------- 1 | Powered By ShaShen -------------------------------------------------------------------------------- /SimpleByPass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/SimpleByPass.sln -------------------------------------------------------------------------------- /SimpleByPass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/SimpleByPass.vcxproj -------------------------------------------------------------------------------- /SimpleByPass.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/SimpleByPass.vcxproj.filters -------------------------------------------------------------------------------- /SimpleByPass.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/SimpleByPass.vcxproj.user -------------------------------------------------------------------------------- /SysCall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/SysCall.hpp -------------------------------------------------------------------------------- /hdlog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/hdlog.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/main.cpp -------------------------------------------------------------------------------- /syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0sha0/SimpleByPass/HEAD/syscalls.asm --------------------------------------------------------------------------------