├── .gitattributes ├── README.md ├── bin2c.exe ├── pe2shc.bat ├── pe2shc.exe ├── veh_debug ├── veh_debug.sln └── veh_debug │ ├── exports.def │ ├── main.cpp │ ├── main.h │ ├── ntex │ ├── ntex.def │ ├── ntex.exp │ └── ntex.lib │ ├── veh_debug.vcxproj │ ├── veh_debug.vcxproj.filters │ └── veh_debug.vcxproj.user └── veh_debug_plugin ├── veh_debug_plugin.sln └── veh_debug_plugin ├── cesdk ├── cepluginsdk.h ├── lauxlib.h ├── lua.h ├── lua.hpp ├── lua53-32.lib ├── lua53-64.lib ├── luaconf.h └── lualib.h ├── exports.def ├── main.cpp ├── main.h ├── minhook ├── MinHook.h ├── buffer.c ├── buffer.h ├── hde │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── pstdint.h │ ├── table32.h │ └── table64.h ├── hook.c ├── trampoline.c └── trampoline.h ├── ntex ├── ntex.def ├── ntex32.exp ├── ntex32.lib ├── ntex64.exp └── ntex64.lib ├── shellcode.h ├── veh_debug_plugin.vcxproj ├── veh_debug_plugin.vcxproj.filters └── veh_debug_plugin.vcxproj.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # veh 2 | VEH debug plugin 3 | -------------------------------------------------------------------------------- /bin2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/bin2c.exe -------------------------------------------------------------------------------- /pe2shc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/pe2shc.bat -------------------------------------------------------------------------------- /pe2shc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/pe2shc.exe -------------------------------------------------------------------------------- /veh_debug/veh_debug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug.sln -------------------------------------------------------------------------------- /veh_debug/veh_debug/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/exports.def -------------------------------------------------------------------------------- /veh_debug/veh_debug/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/main.cpp -------------------------------------------------------------------------------- /veh_debug/veh_debug/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/main.h -------------------------------------------------------------------------------- /veh_debug/veh_debug/ntex/ntex.def: -------------------------------------------------------------------------------- 1 | LIBRARY 2 | EXPORTS 3 | KiUserExceptionDispatcher 4 | RtlRestoreContext -------------------------------------------------------------------------------- /veh_debug/veh_debug/ntex/ntex.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/ntex/ntex.exp -------------------------------------------------------------------------------- /veh_debug/veh_debug/ntex/ntex.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/ntex/ntex.lib -------------------------------------------------------------------------------- /veh_debug/veh_debug/veh_debug.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/veh_debug.vcxproj -------------------------------------------------------------------------------- /veh_debug/veh_debug/veh_debug.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/veh_debug.vcxproj.filters -------------------------------------------------------------------------------- /veh_debug/veh_debug/veh_debug.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug/veh_debug/veh_debug.vcxproj.user -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin.sln -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/cepluginsdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/cepluginsdk.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/lauxlib.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/lua.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/lua.hpp -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/lua53-32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/lua53-32.lib -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/lua53-64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/lua53-64.lib -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/luaconf.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/cesdk/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/cesdk/lualib.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/exports.def -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/main.cpp -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/main.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/MinHook.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/buffer.c -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/buffer.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/hde32.c -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/hde32.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/hde64.c -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/hde64.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/pstdint.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/table32.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hde/table64.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/hook.c -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/trampoline.c -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/minhook/trampoline.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/ntex/ntex.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/ntex/ntex.def -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/ntex/ntex32.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/ntex/ntex32.exp -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/ntex/ntex32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/ntex/ntex32.lib -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/ntex/ntex64.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/ntex/ntex64.exp -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/ntex/ntex64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/ntex/ntex64.lib -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/shellcode.h -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/veh_debug_plugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/veh_debug_plugin.vcxproj -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/veh_debug_plugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/veh_debug_plugin.vcxproj.filters -------------------------------------------------------------------------------- /veh_debug_plugin/veh_debug_plugin/veh_debug_plugin.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user23333/veh/HEAD/veh_debug_plugin/veh_debug_plugin/veh_debug_plugin.vcxproj.user --------------------------------------------------------------------------------