mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-30 22:19:17 +02:00
21 lines
361 B
C
21 lines
361 B
C
#include "../../common/common.h"
|
|
|
|
#include <sys/errno.h>
|
|
#include <fcntl.h>
|
|
|
|
/*
|
|
* trivial example to test loading functionality
|
|
*/
|
|
int
|
|
InitServerExtension(Remote *remote)
|
|
{
|
|
char *buf = "Veni Vedi Vici!\n";
|
|
int fd;
|
|
|
|
if ((fd = open("/tmp/meterpreter.txt", O_CREAT|O_WRONLY|O_TRUNC, 0200)) < 0)
|
|
return (errno);
|
|
|
|
write(fd, buf, strlen(buf));
|
|
close(fd);
|
|
}
|