├── APCInjection ├── .vs │ └── APCInjection │ │ └── v15 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ └── ipch │ │ └── APCINJECTION-3b268341 │ │ ├── APCINJECTION-31cecf1b.ipch │ │ ├── APCINJECTION-78043ba1.ipch │ │ ├── APCINJECTION-c4d9e6fd.ipch │ │ └── APCINJECTION-fc43f303.ipch ├── APCInjection.sln └── APCInjection │ ├── APCInjection.cpp │ ├── APCInjection.vcxproj │ ├── APCInjection.vcxproj.filters │ ├── ReadMe.txt │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── AutoCorrectProc_Injection ├── AutoCorrectProc_Injection.sln └── AutoCorrectProc_Injection │ ├── AutoCorrectProc_Injection.cpp │ ├── AutoCorrectProc_Injection.vcxproj │ ├── AutoCorrectProc_Injection.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Ctrlinject ├── Ctrlinject.sln └── Ctrlinject │ ├── Ctrlinject.cpp │ ├── Ctrlinject.vcxproj │ ├── Ctrlinject.vcxproj.filters │ ├── Ctrlinject.vcxproj.user │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EarlyBird ├── EarlyBird.sln └── EarlyBird │ ├── EarlyBird.cpp │ ├── EarlyBird.vcxproj │ ├── EarlyBird.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EditStreamCallback_injection ├── EditStreamCallback_injection.sln └── EditStreamCallback_injection │ ├── EditStreamCallback_injection.cpp │ ├── EditStreamCallback_injection.vcxproj │ ├── EditStreamCallback_injection.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EditWordBreakProc_Injection ├── EditWordBreakProc_Injection.sln └── EditWordBreakProc_Injection │ ├── EditWordBreakProc_Injection.cpp │ ├── EditWordBreakProc_Injection.vcxproj │ ├── EditWordBreakProc_Injection.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── HyphenateProc_Injection ├── HyphenateProc_Injection.sln └── HyphenateProc_Injection │ ├── HyphenateProc_Injection.cpp │ ├── HyphenateProc_Injection.vcxproj │ ├── HyphenateProc_Injection.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── IRichEditOleCallback_Injection ├── IRichEditOleCallback_Injection.sln └── IRichEditOleCallback_Injection │ ├── IRichEditOleCallback_Injection.cpp │ ├── IRichEditOleCallback_Injection.vcxproj │ ├── IRichEditOleCallback_Injection.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── InjectDLL ├── InjectDLL.sln └── InjectDLL │ ├── InjectDLL.cpp │ ├── InjectDLL.vcxproj │ ├── InjectDLL.vcxproj.filters │ ├── ReadMe.txt │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── InjectPE ├── InjectPE.sln └── InjectPE │ ├── InjectPE.cpp │ ├── InjectPE.vcxproj │ ├── InjectPE.vcxproj.filters │ ├── InjectPE.vcxproj.user │ ├── ReadMe.txt │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ListViewCompare_Injection ├── ListViewCompare_Injection.sln └── ListViewCompare_Injection │ ├── ListViewCompare_Injection.cpp │ ├── ListViewCompare_Injection.vcxproj │ ├── ListViewCompare_Injection.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── PROPagate ├── .vs │ └── PROPagate │ │ └── v15 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ └── ipch │ │ ├── 3c52fc6ec5a368da.ipch │ │ ├── 62e483cb8f18018a.ipch │ │ └── PROPAGATE-e9c93085 │ │ ├── PROPAGATE-38b3c747.ipch │ │ └── PROPAGATE-8a491a69.ipch ├── PROPagate.sln └── PROPagate │ ├── PROPagate.cpp │ ├── PROPagate.vcxproj │ ├── PROPagate.vcxproj.filters │ ├── PROPagate.vcxproj.user │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ProcessHollowing ├── ProcessHollowing.sln └── ProcessHollowing │ ├── ProcessHollowing.cpp │ ├── ProcessHollowing.vcxproj │ ├── ProcessHollowing.vcxproj.filters │ ├── ReadMe.txt │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── README.md ├── SetWindowsHookInjection ├── .vs │ └── SetWindowsHookInjection │ │ └── v15 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ └── ipch │ │ └── SETWINDOWSHOOKINJECTION-30b84ffd │ │ ├── SETWINDOWSHOOKINJECTION-5e572ad7.ipch │ │ ├── SETWINDOWSHOOKINJECTION-84b147ef.ipch │ │ └── SETWINDOWSHOOKINJECTION-aa8e14b5.ipch ├── SetWindowsHookInjection.sln └── SetWindowsHookInjection │ ├── ReadMe.txt │ ├── SetWindowsHookInjection.cpp │ ├── SetWindowsHookInjection.vcxproj │ ├── SetWindowsHookInjection.vcxproj.filters │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SimpleThreadInjection ├── .vs │ └── SimpleThreadInjection │ │ └── v15 │ │ ├── .suo │ │ ├── Browse.VC.db │ │ └── ipch │ │ └── SIMPLETHREADINJECTION-e49953cb │ │ ├── SIMPLETHREADINJECTION-454ef5ab.ipch │ │ ├── SIMPLETHREADINJECTION-9185df89.ipch │ │ └── SIMPLETHREADINJECTION-b05e871.ipch ├── SimpleThreadInjection.sln └── SimpleThreadInjection │ ├── ReadMe.txt │ ├── SimpleThreadInjection.cpp │ ├── SimpleThreadInjection.vcxproj │ ├── SimpleThreadInjection.vcxproj.filters │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ThreadExecutionHijack ├── ThreadExecutionHijack.sln └── ThreadExecutionHijack │ ├── ReadMe.txt │ ├── ThreadExecutionHijack.cpp │ ├── ThreadExecutionHijack.vcxproj │ ├── ThreadExecutionHijack.vcxproj.filters │ ├── general.cpp │ ├── general.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── TreeViewCompare_Injection ├── Release └── TreeViewCompare_Injection.exe ├── TreeViewCompare_Injection.sln ├── TreeViewCompare_Injection ├── ReadMe.txt ├── TreeViewCompare_Injection.cpp ├── TreeViewCompare_Injection.vcxproj ├── TreeViewCompare_Injection.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h └── x64 └── Release └── TreeViewCompare_Injection.exe /APCInjection/.vs/APCInjection/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/.vs/APCInjection/v15/.suo -------------------------------------------------------------------------------- /APCInjection/.vs/APCInjection/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/.vs/APCInjection/v15/Browse.VC.db -------------------------------------------------------------------------------- /APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-31cecf1b.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-31cecf1b.ipch -------------------------------------------------------------------------------- /APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-78043ba1.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-78043ba1.ipch -------------------------------------------------------------------------------- /APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-c4d9e6fd.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-c4d9e6fd.ipch -------------------------------------------------------------------------------- /APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-fc43f303.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/.vs/APCInjection/v15/ipch/APCINJECTION-3b268341/APCINJECTION-fc43f303.ipch -------------------------------------------------------------------------------- /APCInjection/APCInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection.sln -------------------------------------------------------------------------------- /APCInjection/APCInjection/APCInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/APCInjection.cpp -------------------------------------------------------------------------------- /APCInjection/APCInjection/APCInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/APCInjection.vcxproj -------------------------------------------------------------------------------- /APCInjection/APCInjection/APCInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/APCInjection.vcxproj.filters -------------------------------------------------------------------------------- /APCInjection/APCInjection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/ReadMe.txt -------------------------------------------------------------------------------- /APCInjection/APCInjection/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/general.cpp -------------------------------------------------------------------------------- /APCInjection/APCInjection/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/general.h -------------------------------------------------------------------------------- /APCInjection/APCInjection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/stdafx.cpp -------------------------------------------------------------------------------- /APCInjection/APCInjection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/stdafx.h -------------------------------------------------------------------------------- /APCInjection/APCInjection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/APCInjection/APCInjection/targetver.h -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection.sln -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/AutoCorrectProc_Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/AutoCorrectProc_Injection.cpp -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/AutoCorrectProc_Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/AutoCorrectProc_Injection.vcxproj -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/AutoCorrectProc_Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/AutoCorrectProc_Injection.vcxproj.filters -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/ReadMe.txt -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/stdafx.cpp -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/stdafx.h -------------------------------------------------------------------------------- /AutoCorrectProc_Injection/AutoCorrectProc_Injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/AutoCorrectProc_Injection/AutoCorrectProc_Injection/targetver.h -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject.sln -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/Ctrlinject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/Ctrlinject.cpp -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/Ctrlinject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/Ctrlinject.vcxproj -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/Ctrlinject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/Ctrlinject.vcxproj.filters -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/Ctrlinject.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/Ctrlinject.vcxproj.user -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/ReadMe.txt -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/stdafx.cpp -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/stdafx.h -------------------------------------------------------------------------------- /Ctrlinject/Ctrlinject/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/Ctrlinject/Ctrlinject/targetver.h -------------------------------------------------------------------------------- /EarlyBird/EarlyBird.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird.sln -------------------------------------------------------------------------------- /EarlyBird/EarlyBird/EarlyBird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird/EarlyBird.cpp -------------------------------------------------------------------------------- /EarlyBird/EarlyBird/EarlyBird.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird/EarlyBird.vcxproj -------------------------------------------------------------------------------- /EarlyBird/EarlyBird/EarlyBird.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird/EarlyBird.vcxproj.filters -------------------------------------------------------------------------------- /EarlyBird/EarlyBird/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird/stdafx.cpp -------------------------------------------------------------------------------- /EarlyBird/EarlyBird/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird/stdafx.h -------------------------------------------------------------------------------- /EarlyBird/EarlyBird/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EarlyBird/EarlyBird/targetver.h -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection.sln -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/EditStreamCallback_injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/EditStreamCallback_injection.cpp -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/EditStreamCallback_injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/EditStreamCallback_injection.vcxproj -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/EditStreamCallback_injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/EditStreamCallback_injection.vcxproj.filters -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/ReadMe.txt -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/stdafx.cpp -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/stdafx.h -------------------------------------------------------------------------------- /EditStreamCallback_injection/EditStreamCallback_injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditStreamCallback_injection/EditStreamCallback_injection/targetver.h -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection.sln -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/EditWordBreakProc_Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/EditWordBreakProc_Injection.cpp -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/EditWordBreakProc_Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/EditWordBreakProc_Injection.vcxproj -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/EditWordBreakProc_Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/EditWordBreakProc_Injection.vcxproj.filters -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/ReadMe.txt -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/stdafx.cpp -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/stdafx.h -------------------------------------------------------------------------------- /EditWordBreakProc_Injection/EditWordBreakProc_Injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/EditWordBreakProc_Injection/EditWordBreakProc_Injection/targetver.h -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection.sln -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/HyphenateProc_Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/HyphenateProc_Injection.cpp -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/HyphenateProc_Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/HyphenateProc_Injection.vcxproj -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/HyphenateProc_Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/HyphenateProc_Injection.vcxproj.filters -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/ReadMe.txt -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/stdafx.cpp -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/stdafx.h -------------------------------------------------------------------------------- /HyphenateProc_Injection/HyphenateProc_Injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/HyphenateProc_Injection/HyphenateProc_Injection/targetver.h -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.sln -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.cpp -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.vcxproj -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection.vcxproj.filters -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/ReadMe.txt -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/stdafx.cpp -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/stdafx.h -------------------------------------------------------------------------------- /IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/IRichEditOleCallback_Injection/IRichEditOleCallback_Injection/targetver.h -------------------------------------------------------------------------------- /InjectDLL/InjectDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL.sln -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/InjectDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/InjectDLL.cpp -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/InjectDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/InjectDLL.vcxproj -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/InjectDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/InjectDLL.vcxproj.filters -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/ReadMe.txt -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/general.cpp -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/general.h -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/stdafx.cpp -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/stdafx.h -------------------------------------------------------------------------------- /InjectDLL/InjectDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectDLL/InjectDLL/targetver.h -------------------------------------------------------------------------------- /InjectPE/InjectPE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE.sln -------------------------------------------------------------------------------- /InjectPE/InjectPE/InjectPE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/InjectPE.cpp -------------------------------------------------------------------------------- /InjectPE/InjectPE/InjectPE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/InjectPE.vcxproj -------------------------------------------------------------------------------- /InjectPE/InjectPE/InjectPE.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/InjectPE.vcxproj.filters -------------------------------------------------------------------------------- /InjectPE/InjectPE/InjectPE.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/InjectPE.vcxproj.user -------------------------------------------------------------------------------- /InjectPE/InjectPE/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/ReadMe.txt -------------------------------------------------------------------------------- /InjectPE/InjectPE/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/general.cpp -------------------------------------------------------------------------------- /InjectPE/InjectPE/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/general.h -------------------------------------------------------------------------------- /InjectPE/InjectPE/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/stdafx.cpp -------------------------------------------------------------------------------- /InjectPE/InjectPE/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/stdafx.h -------------------------------------------------------------------------------- /InjectPE/InjectPE/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/InjectPE/InjectPE/targetver.h -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection.sln -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/ListViewCompare_Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/ListViewCompare_Injection.cpp -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/ListViewCompare_Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/ListViewCompare_Injection.vcxproj -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/ListViewCompare_Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/ListViewCompare_Injection.vcxproj.filters -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/ReadMe.txt -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/stdafx.cpp -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/stdafx.h -------------------------------------------------------------------------------- /ListViewCompare_Injection/ListViewCompare_Injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ListViewCompare_Injection/ListViewCompare_Injection/targetver.h -------------------------------------------------------------------------------- /PROPagate/.vs/PROPagate/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/.vs/PROPagate/v15/.suo -------------------------------------------------------------------------------- /PROPagate/.vs/PROPagate/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/.vs/PROPagate/v15/Browse.VC.db -------------------------------------------------------------------------------- /PROPagate/.vs/PROPagate/v15/ipch/3c52fc6ec5a368da.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/.vs/PROPagate/v15/ipch/3c52fc6ec5a368da.ipch -------------------------------------------------------------------------------- /PROPagate/.vs/PROPagate/v15/ipch/62e483cb8f18018a.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/.vs/PROPagate/v15/ipch/62e483cb8f18018a.ipch -------------------------------------------------------------------------------- /PROPagate/.vs/PROPagate/v15/ipch/PROPAGATE-e9c93085/PROPAGATE-38b3c747.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/.vs/PROPagate/v15/ipch/PROPAGATE-e9c93085/PROPAGATE-38b3c747.ipch -------------------------------------------------------------------------------- /PROPagate/.vs/PROPagate/v15/ipch/PROPAGATE-e9c93085/PROPAGATE-8a491a69.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/.vs/PROPagate/v15/ipch/PROPAGATE-e9c93085/PROPAGATE-8a491a69.ipch -------------------------------------------------------------------------------- /PROPagate/PROPagate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate.sln -------------------------------------------------------------------------------- /PROPagate/PROPagate/PROPagate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/PROPagate.cpp -------------------------------------------------------------------------------- /PROPagate/PROPagate/PROPagate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/PROPagate.vcxproj -------------------------------------------------------------------------------- /PROPagate/PROPagate/PROPagate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/PROPagate.vcxproj.filters -------------------------------------------------------------------------------- /PROPagate/PROPagate/PROPagate.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/PROPagate.vcxproj.user -------------------------------------------------------------------------------- /PROPagate/PROPagate/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/general.cpp -------------------------------------------------------------------------------- /PROPagate/PROPagate/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/general.h -------------------------------------------------------------------------------- /PROPagate/PROPagate/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/stdafx.cpp -------------------------------------------------------------------------------- /PROPagate/PROPagate/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/stdafx.h -------------------------------------------------------------------------------- /PROPagate/PROPagate/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/PROPagate/PROPagate/targetver.h -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing.sln -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/ProcessHollowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/ProcessHollowing.cpp -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/ProcessHollowing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/ProcessHollowing.vcxproj -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/ProcessHollowing.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/ProcessHollowing.vcxproj.filters -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/ReadMe.txt -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/general.cpp -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/general.h -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/stdafx.cpp -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/stdafx.h -------------------------------------------------------------------------------- /ProcessHollowing/ProcessHollowing/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ProcessHollowing/ProcessHollowing/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/README.md -------------------------------------------------------------------------------- /SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/.suo -------------------------------------------------------------------------------- /SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/Browse.VC.db -------------------------------------------------------------------------------- /SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/ipch/SETWINDOWSHOOKINJECTION-30b84ffd/SETWINDOWSHOOKINJECTION-5e572ad7.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/ipch/SETWINDOWSHOOKINJECTION-30b84ffd/SETWINDOWSHOOKINJECTION-5e572ad7.ipch -------------------------------------------------------------------------------- /SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/ipch/SETWINDOWSHOOKINJECTION-30b84ffd/SETWINDOWSHOOKINJECTION-84b147ef.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/ipch/SETWINDOWSHOOKINJECTION-30b84ffd/SETWINDOWSHOOKINJECTION-84b147ef.ipch -------------------------------------------------------------------------------- /SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/ipch/SETWINDOWSHOOKINJECTION-30b84ffd/SETWINDOWSHOOKINJECTION-aa8e14b5.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/.vs/SetWindowsHookInjection/v15/ipch/SETWINDOWSHOOKINJECTION-30b84ffd/SETWINDOWSHOOKINJECTION-aa8e14b5.ipch -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection.sln -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/ReadMe.txt -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/SetWindowsHookInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/SetWindowsHookInjection.cpp -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/SetWindowsHookInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/SetWindowsHookInjection.vcxproj -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/SetWindowsHookInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/SetWindowsHookInjection.vcxproj.filters -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/general.cpp -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/general.h -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/stdafx.cpp -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/stdafx.h -------------------------------------------------------------------------------- /SetWindowsHookInjection/SetWindowsHookInjection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SetWindowsHookInjection/SetWindowsHookInjection/targetver.h -------------------------------------------------------------------------------- /SimpleThreadInjection/.vs/SimpleThreadInjection/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/.vs/SimpleThreadInjection/v15/.suo -------------------------------------------------------------------------------- /SimpleThreadInjection/.vs/SimpleThreadInjection/v15/Browse.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/.vs/SimpleThreadInjection/v15/Browse.VC.db -------------------------------------------------------------------------------- /SimpleThreadInjection/.vs/SimpleThreadInjection/v15/ipch/SIMPLETHREADINJECTION-e49953cb/SIMPLETHREADINJECTION-454ef5ab.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/.vs/SimpleThreadInjection/v15/ipch/SIMPLETHREADINJECTION-e49953cb/SIMPLETHREADINJECTION-454ef5ab.ipch -------------------------------------------------------------------------------- /SimpleThreadInjection/.vs/SimpleThreadInjection/v15/ipch/SIMPLETHREADINJECTION-e49953cb/SIMPLETHREADINJECTION-9185df89.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/.vs/SimpleThreadInjection/v15/ipch/SIMPLETHREADINJECTION-e49953cb/SIMPLETHREADINJECTION-9185df89.ipch -------------------------------------------------------------------------------- /SimpleThreadInjection/.vs/SimpleThreadInjection/v15/ipch/SIMPLETHREADINJECTION-e49953cb/SIMPLETHREADINJECTION-b05e871.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/.vs/SimpleThreadInjection/v15/ipch/SIMPLETHREADINJECTION-e49953cb/SIMPLETHREADINJECTION-b05e871.ipch -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection.sln -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/ReadMe.txt -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/SimpleThreadInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/SimpleThreadInjection.cpp -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/SimpleThreadInjection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/SimpleThreadInjection.vcxproj -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/SimpleThreadInjection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/SimpleThreadInjection.vcxproj.filters -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/general.cpp -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/general.h -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/stdafx.cpp -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/stdafx.h -------------------------------------------------------------------------------- /SimpleThreadInjection/SimpleThreadInjection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/SimpleThreadInjection/SimpleThreadInjection/targetver.h -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack.sln -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/ReadMe.txt -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/ThreadExecutionHijack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/ThreadExecutionHijack.cpp -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/ThreadExecutionHijack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/ThreadExecutionHijack.vcxproj -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/ThreadExecutionHijack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/ThreadExecutionHijack.vcxproj.filters -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/general.cpp -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/general.h -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/stdafx.cpp -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/stdafx.h -------------------------------------------------------------------------------- /ThreadExecutionHijack/ThreadExecutionHijack/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/ThreadExecutionHijack/ThreadExecutionHijack/targetver.h -------------------------------------------------------------------------------- /TreeViewCompare_Injection/Release/TreeViewCompare_Injection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/Release/TreeViewCompare_Injection.exe -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection.sln -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/ReadMe.txt -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/TreeViewCompare_Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/TreeViewCompare_Injection.cpp -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/TreeViewCompare_Injection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/TreeViewCompare_Injection.vcxproj -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/TreeViewCompare_Injection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/TreeViewCompare_Injection.vcxproj.filters -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/stdafx.cpp -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/stdafx.h -------------------------------------------------------------------------------- /TreeViewCompare_Injection/TreeViewCompare_Injection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/TreeViewCompare_Injection/targetver.h -------------------------------------------------------------------------------- /TreeViewCompare_Injection/x64/Release/TreeViewCompare_Injection.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theevilbit/injection/HEAD/TreeViewCompare_Injection/x64/Release/TreeViewCompare_Injection.exe --------------------------------------------------------------------------------