mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-06 01:16:37 +02:00

We now use ints, and hopefully this means we don't have as much obvious stuff in the binaries! ``` $ # Before: $ strings metsrv.x86.dll | grep core_ | wc -l 46 $ # After: $ strings metsrv.x86.dll | grep core_ | wc -l 0 ``` Big win, and it's even bigger for the likes of stdapi. Had to fix a bunch of other stuff along the way, including a subtle issue with the Powershell Meterp bindings.
13 lines
299 B
C
13 lines
299 B
C
/*!
|
|
* @file python_meterpreter_binding.y
|
|
* @brief Declrations for functions that support meterpreter bindings.
|
|
*/
|
|
|
|
#ifndef PYTHON_METERPRETER_BINDING_H
|
|
#define PYTHON_METERPRETER_BINDING_H
|
|
|
|
VOID binding_startup();
|
|
VOID binding_add_command(UINT commandId);
|
|
VOID binding_init();
|
|
|
|
#endif |