├── .gitignore ├── LICENSE ├── NTR ├── NTR.cpp ├── NTR.sln ├── NTR.vcxproj └── NTR.vcxproj.filters ├── README.md └── picture ├── cuckold.png ├── func_LdrInitializeThunk.png └── yellow_hair.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/LICENSE -------------------------------------------------------------------------------- /NTR/NTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/NTR/NTR.cpp -------------------------------------------------------------------------------- /NTR/NTR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/NTR/NTR.sln -------------------------------------------------------------------------------- /NTR/NTR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/NTR/NTR.vcxproj -------------------------------------------------------------------------------- /NTR/NTR.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/NTR/NTR.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/README.md -------------------------------------------------------------------------------- /picture/cuckold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/picture/cuckold.png -------------------------------------------------------------------------------- /picture/func_LdrInitializeThunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/picture/func_LdrInitializeThunk.png -------------------------------------------------------------------------------- /picture/yellow_hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miunasu/NativeThreadRobber/HEAD/picture/yellow_hair.png --------------------------------------------------------------------------------