metasploit-framework/modules/payloads/singles/tty/unix/interact.rb

35 lines
854 B
Ruby
Raw Normal View History

##
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core'
require 'msf/core/handler/find_tty'
require 'msf/base/sessions/command_shell'
module Metasploit3
2013-08-30 21:28:54 +00:00
include Msf::Payload::Single
2013-08-30 21:28:54 +00:00
def initialize(info = {})
super(merge_info(info,
'Name' => 'Unix TTY, Interact with Established Connection',
'Description' => 'Interacts with a TTY on an established socket connection',
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Platform' => 'unix',
'Arch' => ARCH_TTY,
'Handler' => Msf::Handler::FindTty,
'Session' => Msf::Sessions::TTY,
'Payload' =>
{
'Offsets' => { },
'Payload' => ''
}
))
end
end