Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/dllinject/tester.c
24679 views
1
#include <windows.h>
2
3
__declspec(dllexport) Init(SOCKET fd)
4
{
5
char passphrase[9] = { 0 };
6
7
recv(fd, passphrase, 8, 0);
8
9
MessageBox(NULL, passphrase, "you sent me", MB_OK);
10
11
return 0;
12
}
13
14