mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-01-20 20:37:27 +01:00
52e13ad2d3
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.
11 lines
261 B
C
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
|