1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-03-30 22:19:17 +02:00
OJ 7ba39c982a First version of "working" bindings (getsystem works)
More to do, including reading of TLV packets.
2016-03-23 13:39:25 +10:00

13 lines
448 B
C
Executable File

/*!
* @file powershell_bindings.h
* @brief Declarations for bindings to meterpreter functions that can be called from Powershell.
*/
#ifndef _METERPRETER_SOURCE_EXTENSION_POWERSHELL_BINDINGS_H
#define _METERPRETER_SOURCE_EXTENSION_POWERSHELL_BINDINGS_H
extern Remote* gRemote;
VOID MeterpreterInvoke(unsigned int isLocal, unsigned char* input, unsigned int inputLength, unsigned char** output, unsigned int* outputLength);
#endif