├── .gitignore ├── .gitmodules ├── README.md ├── hijacken.sln └── hijacken ├── Commands.cpp ├── Commands.h ├── Hijacken.cpp ├── ImageScan.cpp ├── ImageScan.h ├── PEParser.cpp ├── PEParser.h ├── ProcessScan.cpp ├── ProcessScan.h ├── System.cpp ├── System.h ├── Utils.cpp ├── Utils.h ├── hijacken.vcxproj └── hijacken.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/README.md -------------------------------------------------------------------------------- /hijacken.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken.sln -------------------------------------------------------------------------------- /hijacken/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/Commands.cpp -------------------------------------------------------------------------------- /hijacken/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/Commands.h -------------------------------------------------------------------------------- /hijacken/Hijacken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/Hijacken.cpp -------------------------------------------------------------------------------- /hijacken/ImageScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/ImageScan.cpp -------------------------------------------------------------------------------- /hijacken/ImageScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/ImageScan.h -------------------------------------------------------------------------------- /hijacken/PEParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/PEParser.cpp -------------------------------------------------------------------------------- /hijacken/PEParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/PEParser.h -------------------------------------------------------------------------------- /hijacken/ProcessScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/ProcessScan.cpp -------------------------------------------------------------------------------- /hijacken/ProcessScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/ProcessScan.h -------------------------------------------------------------------------------- /hijacken/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/System.cpp -------------------------------------------------------------------------------- /hijacken/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/System.h -------------------------------------------------------------------------------- /hijacken/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/Utils.cpp -------------------------------------------------------------------------------- /hijacken/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/Utils.h -------------------------------------------------------------------------------- /hijacken/hijacken.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/hijacken.vcxproj -------------------------------------------------------------------------------- /hijacken/hijacken.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/hijacken/HEAD/hijacken/hijacken.vcxproj.filters --------------------------------------------------------------------------------