metasploit-framework/lib/rex/post/meterpreter/extensions/espia/tlv.rb

18 lines
380 B
Ruby

# -*- coding: binary -*-
module Rex
module Post
module Meterpreter
module Extensions
module Espia
TLV_TYPE_DEV_IMAGE = TLV_META_TYPE_UINT| (TLV_EXTENSIONS + 911)
TLV_TYPE_DEV_AUDIO = TLV_META_TYPE_STRING| (TLV_EXTENSIONS + 912)
TLV_TYPE_DEV_SCREEN = TLV_META_TYPE_RAW| (TLV_EXTENSIONS + 913)
TLV_TYPE_DEV_RECTIME = TLV_META_TYPE_UINT| (TLV_EXTENSIONS + 914)
end
end
end
end
end