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

20 lines
335 B
Ruby

# -*- 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