CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/data/templates/src/pe/exe/template.c
Views: 1904
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