blob: d49a18382372ac873e7c79dd1b871eb70e50b598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* Benjamin DELPY `gentilkiwi`
http://blog.gentilkiwi.com
benjamin@gentilkiwi.com
Licence : http://creativecommons.org/licenses/by/3.0/fr/
*/
#include "kelloworld.h"
__kextdll bool __cdecl helloworld(mod_pipe * monPipe, vector<wstring> * mesArguments)
{
MessageBox(NULL, L"Hello World!", MIMIKATZ_FULL, MB_ICONINFORMATION | MB_OK);
return true;
}
|