├── Cmd.sln ├── Cmd.vcxproj ├── Cmd.vcxproj.filters ├── Cmd.vcxproj.user ├── LICENSE ├── README.md ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h /Cmd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/Cmd.sln -------------------------------------------------------------------------------- /Cmd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/Cmd.vcxproj -------------------------------------------------------------------------------- /Cmd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/Cmd.vcxproj.filters -------------------------------------------------------------------------------- /Cmd.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/Cmd.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CMDLL 2 | the most basic DLL ever to pop a cmd. 3 | -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/framework.h -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/pch.cpp -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfmaes/CMDLL/HEAD/pch.h --------------------------------------------------------------------------------