Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/post/meterpreter/extensions/appapi/command_ids.rb
19850 views
1
# -*- coding: binary -*-
2
# CorrM @ fb.me/IslamNofl
3
4
module Rex
5
module Post
6
module Meterpreter
7
module Extensions
8
module AppApi
9
10
# ID for the extension (needs to be a multiple of 1000)
11
EXTENSION_ID_APPAPI = 9000
12
13
# Associated command ids
14
COMMAND_ID_APPAPI_APP_INSTALL = EXTENSION_ID_APPAPI + 1
15
COMMAND_ID_APPAPI_APP_LIST = EXTENSION_ID_APPAPI + 2
16
COMMAND_ID_APPAPI_APP_RUN = EXTENSION_ID_APPAPI + 3
17
COMMAND_ID_APPAPI_APP_UNINSTALL = EXTENSION_ID_APPAPI + 4
18
19
end; end; end; end; end
20
21
22