19 lines
275 B
Ruby
19 lines
275 B
Ruby
# -*- coding: binary -*-
|
|
module Rex
|
|
module Post
|
|
module Meterpreter
|
|
module Extensions
|
|
module Kiwi
|
|
|
|
# ID for the extension (needs to be a multiple of 1000)
|
|
EXTENSION_ID_KIWI = 8000
|
|
|
|
# Associated command ids
|
|
COMMAND_ID_KIWI_EXEC_CMD = EXTENSION_ID_KIWI + 1
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|