1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-01-20 20:37:27 +01:00
metasploit-payloads/c/meterpreter/source/extensions/extapi/window.h
OJ 52e13ad2d3 New extended API extension with window enum
Decided to kick off a new extended API extension with mubix and
kernelsmith to include some more advanced enumeration stuff. The goal of
this extension is to take stuff that wouldn't be part of the std api but
is rather useful for enumeration of a target once meterpreter has been
established.

This commit kicks things off with enumeration of top level windows on the
current desktop.
2013-10-09 22:16:47 +10:00

11 lines
261 B
C

/*!
* @file window.h
* @brief Declarations for window management functionality
*/
#ifndef _METERPRETER_SOURCE_EXTENSION_EXTAPI_WINDOW_H
#define _METERPRETER_SOURCE_EXTENSION_EXTAPI_WINDOW_H
DWORD request_window_enum(Remote *remote, Packet *packet);
#endif