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/data/templates/src/pe/exe/template.c
Views: 11788
1
#include <stdio.h>
2
3
#define SCSIZE 4096
4
char payload[SCSIZE] = "PAYLOAD:";
5
6
char comment[512] = "";
7
8
int main(int argc, char **argv) {
9
(*(void (*)()) payload)();
10
return(0);
11
}
12
13