Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/post/meterpreter/extensions/appapi/tlv.rb
21560 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
##
11
#
12
# Apps
13
#
14
##
15
16
TLV_TYPE_APPS_LIST = TLV_META_TYPE_STRING | (TLV_EXTENSIONS + 2911)
17
TLV_TYPE_APPS_LIST_OPT = TLV_META_TYPE_UINT | (TLV_EXTENSIONS + 2912)
18
19
TLV_TYPE_APP_PACKAGE_NAME = TLV_META_TYPE_STRING | (TLV_EXTENSIONS + 2913)
20
TLV_TYPE_APP_APK_PATH = TLV_META_TYPE_STRING | (TLV_EXTENSIONS + 2914)
21
TLV_TYPE_APP_ENUM = TLV_META_TYPE_UINT | (TLV_EXTENSIONS + 2915)
22
23
TLV_TYPE_APP_RUN_ENUM = TLV_META_TYPE_UINT | (TLV_EXTENSIONS + 2916)
24
25
26
end; end; end; end; end
27
28
29