CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/dllinject/tester.c
Views: 11766
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