├── .gitattributes ├── .gitignore ├── .vs └── MyIntercept │ └── v16 │ └── Browse.VC.db ├── MyIntercept.sln ├── MyIntercept ├── MyIntercept.cpp ├── MyIntercept.vcxproj ├── MyIntercept.vcxproj.filters ├── OllyDBG │ ├── MyIntercept.udd │ ├── help.pdf │ ├── ollydbg.exe │ └── ollydbg.ini ├── OpCode.h ├── OsSpecific.h └── WaitChar.h └── ReadMe.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/MyIntercept/v16/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/.vs/MyIntercept/v16/Browse.VC.db -------------------------------------------------------------------------------- /MyIntercept.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept.sln -------------------------------------------------------------------------------- /MyIntercept/MyIntercept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/MyIntercept.cpp -------------------------------------------------------------------------------- /MyIntercept/MyIntercept.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/MyIntercept.vcxproj -------------------------------------------------------------------------------- /MyIntercept/MyIntercept.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/MyIntercept.vcxproj.filters -------------------------------------------------------------------------------- /MyIntercept/OllyDBG/MyIntercept.udd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/OllyDBG/MyIntercept.udd -------------------------------------------------------------------------------- /MyIntercept/OllyDBG/help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/OllyDBG/help.pdf -------------------------------------------------------------------------------- /MyIntercept/OllyDBG/ollydbg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/OllyDBG/ollydbg.exe -------------------------------------------------------------------------------- /MyIntercept/OllyDBG/ollydbg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/OllyDBG/ollydbg.ini -------------------------------------------------------------------------------- /MyIntercept/OpCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/OpCode.h -------------------------------------------------------------------------------- /MyIntercept/OsSpecific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/OsSpecific.h -------------------------------------------------------------------------------- /MyIntercept/WaitChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/MyIntercept/WaitChar.h -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ststeiger/FunctionInterception/HEAD/ReadMe.md --------------------------------------------------------------------------------