├── .gitignore ├── Build.txt ├── BuildDate.bat ├── IHF ├── BitMap.cpp ├── HookManager.cpp ├── IHF.vcxproj ├── IHF.vcxproj.filters ├── TextThread.cpp ├── language.cpp ├── language.h ├── main.cpp ├── main.h └── pipe.cpp ├── IHF_DLL ├── IHF_CLIENT.h ├── IHF_DLL.vcxproj ├── IHF_DLL.vcxproj.filters ├── main.cpp ├── pipe.cpp └── texthook.cpp ├── ITH ├── BitMap.cpp ├── CustomFilter.cpp ├── ITH.h ├── ITH.rc ├── ITH.vcxproj ├── ITH.vcxproj.filters ├── PointerTable.h ├── command.cpp ├── icon1.ico ├── language.cpp ├── language.h ├── main.cpp ├── profile.cpp ├── profile.h ├── resource.h ├── utility.cpp ├── window.cpp └── window.h ├── ITH3.sln ├── ITH_Engine ├── ITH_Engine.vcxproj ├── ITH_Engine.vcxproj.filters ├── engine.cpp ├── engine.h ├── util.cpp └── util.h ├── ITH_HashLib ├── ITH_HashLib.vcxproj ├── ITH_HashLib.vcxproj.filters └── sha.cpp ├── ITH_SYS ├── ITH_SYS.vcxproj ├── ITH_SYS.vcxproj.filters ├── SYS.cpp └── disasm.cpp ├── ITH_TLS ├── ITH_TLS.vcxproj ├── ITH_TLS.vcxproj.filters ├── aes256.cpp ├── aes256.h ├── arithmetic.cpp ├── arithmetic.h ├── hmac.cpp ├── hmac.h ├── main.cpp ├── prng.cpp ├── prng.h ├── sizedef.h ├── socket.cpp ├── socket.h ├── tls.cpp ├── tls.h ├── x509.cpp └── x509.h ├── ITH_TinyXmlLib ├── ITH_TinyXmlLib.vcxproj ├── ITH_TinyXmlLib.vcxproj.filters ├── tinystr.cpp ├── tinyxml.cpp ├── tinyxmlerror.cpp └── tinyxmlparser.cpp ├── README.md └── include ├── ITH ├── AVL.h ├── BitMap.h ├── CustomFilter.h ├── Hash.h ├── HookManager.h ├── IHF.h ├── IHF_DLL.h ├── IHF_SYS.h ├── ITH_TLS.h ├── SettingManager.h ├── TextThread.h ├── common.h ├── main_template.h ├── mem.h ├── ntdll.h ├── string.h ├── tinystr.h ├── tinyxml.h └── version.h └── winres.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/Build.txt -------------------------------------------------------------------------------- /BuildDate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/BuildDate.bat -------------------------------------------------------------------------------- /IHF/BitMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/BitMap.cpp -------------------------------------------------------------------------------- /IHF/HookManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/HookManager.cpp -------------------------------------------------------------------------------- /IHF/IHF.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/IHF.vcxproj -------------------------------------------------------------------------------- /IHF/IHF.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/IHF.vcxproj.filters -------------------------------------------------------------------------------- /IHF/TextThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/TextThread.cpp -------------------------------------------------------------------------------- /IHF/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/language.cpp -------------------------------------------------------------------------------- /IHF/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/language.h -------------------------------------------------------------------------------- /IHF/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/main.cpp -------------------------------------------------------------------------------- /IHF/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/main.h -------------------------------------------------------------------------------- /IHF/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF/pipe.cpp -------------------------------------------------------------------------------- /IHF_DLL/IHF_CLIENT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF_DLL/IHF_CLIENT.h -------------------------------------------------------------------------------- /IHF_DLL/IHF_DLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF_DLL/IHF_DLL.vcxproj -------------------------------------------------------------------------------- /IHF_DLL/IHF_DLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF_DLL/IHF_DLL.vcxproj.filters -------------------------------------------------------------------------------- /IHF_DLL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF_DLL/main.cpp -------------------------------------------------------------------------------- /IHF_DLL/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF_DLL/pipe.cpp -------------------------------------------------------------------------------- /IHF_DLL/texthook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/IHF_DLL/texthook.cpp -------------------------------------------------------------------------------- /ITH/BitMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/BitMap.cpp -------------------------------------------------------------------------------- /ITH/CustomFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/CustomFilter.cpp -------------------------------------------------------------------------------- /ITH/ITH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/ITH.h -------------------------------------------------------------------------------- /ITH/ITH.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/ITH.rc -------------------------------------------------------------------------------- /ITH/ITH.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/ITH.vcxproj -------------------------------------------------------------------------------- /ITH/ITH.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/ITH.vcxproj.filters -------------------------------------------------------------------------------- /ITH/PointerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/PointerTable.h -------------------------------------------------------------------------------- /ITH/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/command.cpp -------------------------------------------------------------------------------- /ITH/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/icon1.ico -------------------------------------------------------------------------------- /ITH/language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/language.cpp -------------------------------------------------------------------------------- /ITH/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/language.h -------------------------------------------------------------------------------- /ITH/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/main.cpp -------------------------------------------------------------------------------- /ITH/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/profile.cpp -------------------------------------------------------------------------------- /ITH/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/profile.h -------------------------------------------------------------------------------- /ITH/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/resource.h -------------------------------------------------------------------------------- /ITH/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/utility.cpp -------------------------------------------------------------------------------- /ITH/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/window.cpp -------------------------------------------------------------------------------- /ITH/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH/window.h -------------------------------------------------------------------------------- /ITH3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH3.sln -------------------------------------------------------------------------------- /ITH_Engine/ITH_Engine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_Engine/ITH_Engine.vcxproj -------------------------------------------------------------------------------- /ITH_Engine/ITH_Engine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_Engine/ITH_Engine.vcxproj.filters -------------------------------------------------------------------------------- /ITH_Engine/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_Engine/engine.cpp -------------------------------------------------------------------------------- /ITH_Engine/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_Engine/engine.h -------------------------------------------------------------------------------- /ITH_Engine/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_Engine/util.cpp -------------------------------------------------------------------------------- /ITH_Engine/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_Engine/util.h -------------------------------------------------------------------------------- /ITH_HashLib/ITH_HashLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_HashLib/ITH_HashLib.vcxproj -------------------------------------------------------------------------------- /ITH_HashLib/ITH_HashLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_HashLib/ITH_HashLib.vcxproj.filters -------------------------------------------------------------------------------- /ITH_HashLib/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_HashLib/sha.cpp -------------------------------------------------------------------------------- /ITH_SYS/ITH_SYS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_SYS/ITH_SYS.vcxproj -------------------------------------------------------------------------------- /ITH_SYS/ITH_SYS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_SYS/ITH_SYS.vcxproj.filters -------------------------------------------------------------------------------- /ITH_SYS/SYS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_SYS/SYS.cpp -------------------------------------------------------------------------------- /ITH_SYS/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_SYS/disasm.cpp -------------------------------------------------------------------------------- /ITH_TLS/ITH_TLS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/ITH_TLS.vcxproj -------------------------------------------------------------------------------- /ITH_TLS/ITH_TLS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/ITH_TLS.vcxproj.filters -------------------------------------------------------------------------------- /ITH_TLS/aes256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/aes256.cpp -------------------------------------------------------------------------------- /ITH_TLS/aes256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/aes256.h -------------------------------------------------------------------------------- /ITH_TLS/arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/arithmetic.cpp -------------------------------------------------------------------------------- /ITH_TLS/arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/arithmetic.h -------------------------------------------------------------------------------- /ITH_TLS/hmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/hmac.cpp -------------------------------------------------------------------------------- /ITH_TLS/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/hmac.h -------------------------------------------------------------------------------- /ITH_TLS/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/main.cpp -------------------------------------------------------------------------------- /ITH_TLS/prng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/prng.cpp -------------------------------------------------------------------------------- /ITH_TLS/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/prng.h -------------------------------------------------------------------------------- /ITH_TLS/sizedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/sizedef.h -------------------------------------------------------------------------------- /ITH_TLS/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/socket.cpp -------------------------------------------------------------------------------- /ITH_TLS/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/socket.h -------------------------------------------------------------------------------- /ITH_TLS/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/tls.cpp -------------------------------------------------------------------------------- /ITH_TLS/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/tls.h -------------------------------------------------------------------------------- /ITH_TLS/x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/x509.cpp -------------------------------------------------------------------------------- /ITH_TLS/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TLS/x509.h -------------------------------------------------------------------------------- /ITH_TinyXmlLib/ITH_TinyXmlLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TinyXmlLib/ITH_TinyXmlLib.vcxproj -------------------------------------------------------------------------------- /ITH_TinyXmlLib/ITH_TinyXmlLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TinyXmlLib/ITH_TinyXmlLib.vcxproj.filters -------------------------------------------------------------------------------- /ITH_TinyXmlLib/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TinyXmlLib/tinystr.cpp -------------------------------------------------------------------------------- /ITH_TinyXmlLib/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TinyXmlLib/tinyxml.cpp -------------------------------------------------------------------------------- /ITH_TinyXmlLib/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TinyXmlLib/tinyxmlerror.cpp -------------------------------------------------------------------------------- /ITH_TinyXmlLib/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/ITH_TinyXmlLib/tinyxmlparser.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/README.md -------------------------------------------------------------------------------- /include/ITH/AVL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/AVL.h -------------------------------------------------------------------------------- /include/ITH/BitMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/BitMap.h -------------------------------------------------------------------------------- /include/ITH/CustomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/CustomFilter.h -------------------------------------------------------------------------------- /include/ITH/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/Hash.h -------------------------------------------------------------------------------- /include/ITH/HookManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/HookManager.h -------------------------------------------------------------------------------- /include/ITH/IHF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/IHF.h -------------------------------------------------------------------------------- /include/ITH/IHF_DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/IHF_DLL.h -------------------------------------------------------------------------------- /include/ITH/IHF_SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/IHF_SYS.h -------------------------------------------------------------------------------- /include/ITH/ITH_TLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/ITH_TLS.h -------------------------------------------------------------------------------- /include/ITH/SettingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/SettingManager.h -------------------------------------------------------------------------------- /include/ITH/TextThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/TextThread.h -------------------------------------------------------------------------------- /include/ITH/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/common.h -------------------------------------------------------------------------------- /include/ITH/main_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/main_template.h -------------------------------------------------------------------------------- /include/ITH/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/mem.h -------------------------------------------------------------------------------- /include/ITH/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/ntdll.h -------------------------------------------------------------------------------- /include/ITH/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/string.h -------------------------------------------------------------------------------- /include/ITH/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/tinystr.h -------------------------------------------------------------------------------- /include/ITH/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/ITH/tinyxml.h -------------------------------------------------------------------------------- /include/ITH/version.h: -------------------------------------------------------------------------------- 1 | const wchar_t* build_date=L"05.02.2014"; 2 | -------------------------------------------------------------------------------- /include/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyScull/interactive-text-hooker/HEAD/include/winres.h --------------------------------------------------------------------------------