CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/post/meterpreter/extensions/python/command_ids.rb
Views: 11791
1
# -*- coding: binary -*-
2
module Rex
3
module Post
4
module Meterpreter
5
module Extensions
6
module Python
7
8
# ID for the extension (needs to be a multiple of 1000)
9
EXTENSION_ID_PYTHON = 13000
10
11
# Associated command ids
12
COMMAND_ID_PYTHON_EXECUTE = EXTENSION_ID_PYTHON + 1
13
COMMAND_ID_PYTHON_RESET = EXTENSION_ID_PYTHON + 2
14
15
end
16
end
17
end
18
end
19
end
20
21