1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-08-09 18:12:28 +02:00
Files
metasploit-payloads/c/meterpreter/source/extensions/python/Python/getplatform.c
2015-10-30 15:12:58 -05:00

13 lines
130 B
C

#include "Python.h"
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
const char *
Py_GetPlatform(void)
{
return PLATFORM;
}