mirror of
https://github.com/trustedsec/ELFLoader
synced 2026-06-08 17:56:51 +00:00
9 lines
300 B
C
9 lines
300 B
C
#ifndef ELFLOADER_INCLUDE_H_
|
|
#define ELFLOADER_INCLUDE_H_
|
|
|
|
int ELFRunner(char* functionName, unsigned char* elfObjectData, unsigned int size, unsigned char* argumentdata, int argumentSize);
|
|
char* BeaconGetOutputData(int *outsize);
|
|
unsigned char* unhexlify(unsigned char* value, int *outlen);
|
|
|
|
#endif
|