Files
metasploit-gs/lib/rex/post/meterpreter/extensions/python/command_ids.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
335 B
Ruby
Raw Normal View History

2020-05-04 15:06:34 +10:00
# -*- coding: binary -*-
module Rex
module Post
module Meterpreter
module Extensions
module Python
# ID for the extension (needs to be a multiple of 1000)
EXTENSION_ID_PYTHON = 13000
# Associated command ids
COMMAND_ID_PYTHON_EXECUTE = EXTENSION_ID_PYTHON + 1
COMMAND_ID_PYTHON_RESET = EXTENSION_ID_PYTHON + 2
end
end
end
end
end