├── .gitattributes ├── .gitignore ├── HideProcessInTaskmgr.sln ├── README.md ├── Sulution1 ├── LdrHeader.cpp ├── LdrHeader.h ├── Sulution1.vcxproj ├── Sulution1.vcxproj.filters └── dllmain.cpp ├── Sulution2 ├── LdrHeader.cpp ├── LdrHeader.h ├── Sulution2.vcxproj ├── Sulution2.vcxproj.filters └── dllmain.cpp ├── TestLoadDLL ├── TestLoadDLL.cpp ├── TestLoadDLL.vcxproj ├── TestLoadDLL.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h └── screenshot ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/.gitignore -------------------------------------------------------------------------------- /HideProcessInTaskmgr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/HideProcessInTaskmgr.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/README.md -------------------------------------------------------------------------------- /Sulution1/LdrHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution1/LdrHeader.cpp -------------------------------------------------------------------------------- /Sulution1/LdrHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution1/LdrHeader.h -------------------------------------------------------------------------------- /Sulution1/Sulution1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution1/Sulution1.vcxproj -------------------------------------------------------------------------------- /Sulution1/Sulution1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution1/Sulution1.vcxproj.filters -------------------------------------------------------------------------------- /Sulution1/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution1/dllmain.cpp -------------------------------------------------------------------------------- /Sulution2/LdrHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution2/LdrHeader.cpp -------------------------------------------------------------------------------- /Sulution2/LdrHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution2/LdrHeader.h -------------------------------------------------------------------------------- /Sulution2/Sulution2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution2/Sulution2.vcxproj -------------------------------------------------------------------------------- /Sulution2/Sulution2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution2/Sulution2.vcxproj.filters -------------------------------------------------------------------------------- /Sulution2/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/Sulution2/dllmain.cpp -------------------------------------------------------------------------------- /TestLoadDLL/TestLoadDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/TestLoadDLL/TestLoadDLL.cpp -------------------------------------------------------------------------------- /TestLoadDLL/TestLoadDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/TestLoadDLL/TestLoadDLL.vcxproj -------------------------------------------------------------------------------- /TestLoadDLL/TestLoadDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/TestLoadDLL/TestLoadDLL.vcxproj.filters -------------------------------------------------------------------------------- /TestLoadDLL/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/TestLoadDLL/stdafx.cpp -------------------------------------------------------------------------------- /TestLoadDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/TestLoadDLL/stdafx.h -------------------------------------------------------------------------------- /TestLoadDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/TestLoadDLL/targetver.h -------------------------------------------------------------------------------- /screenshot/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/1.jpg -------------------------------------------------------------------------------- /screenshot/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/2.jpg -------------------------------------------------------------------------------- /screenshot/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/3.jpg -------------------------------------------------------------------------------- /screenshot/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/4.jpg -------------------------------------------------------------------------------- /screenshot/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/5.jpg -------------------------------------------------------------------------------- /screenshot/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/6.jpg -------------------------------------------------------------------------------- /screenshot/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/7.jpg -------------------------------------------------------------------------------- /screenshot/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/8.jpg -------------------------------------------------------------------------------- /screenshot/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyexe/HideProcessInTaskmgr/HEAD/screenshot/9.jpg --------------------------------------------------------------------------------