MessageBox files (EXE, DLL) for testing purposes. These files will simply display a message box upon execution.
I sometimes find myself needing to test or call an executable or DLL, either from rundll32, using other injections methods, or simply from another application. Surprisingly, there's hardly any like these on Github. I decided to create this repository so it could perhaps assist others.
You should be able to compile the code, which is C++ and probably horrible, using either Visual Studio or GCC.
Compiled versions (32-bit only) are also available:
Execute or call the EXE or DLL. For the DLL, you can use rundll, for example:
rundll32 MsgBoxDLL.dll, MsgBox
EXE
DLL
If you don't like these, or you need 64-bit binaries, you can check out Matt Nelson's MessageBox version.
If you're looking for injection methods, have a look at Rui's injectAllTheThings project.