Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/post/meterpreter/extensions/kiwi/command_ids.rb
21560 views
1
# -*- coding: binary -*-
2
module Rex
3
module Post
4
module Meterpreter
5
module Extensions
6
module Kiwi
7
8
# ID for the extension (needs to be a multiple of 1000)
9
EXTENSION_ID_KIWI = 8000
10
11
# Associated command ids
12
COMMAND_ID_KIWI_EXEC_CMD = EXTENSION_ID_KIWI + 1
13
14
end
15
end
16
end
17
end
18
end
19
20