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