Path: blob/master/modules/payloads/singles/tty/unix/interact.rb
21547 views
##1# This module requires Metasploit: https://metasploit.com/download2# Current source: https://github.com/rapid7/metasploit-framework3##45module MetasploitModule6CachedSize = 078include Msf::Payload::Single910def initialize(info = {})11super(12merge_info(13info,14'Name' => 'Unix TTY, Interact with Established Connection',15'Description' => 'Interacts with a TTY on an established socket connection',16'Author' => 'hdm',17'License' => MSF_LICENSE,18'Platform' => 'unix',19'Arch' => ARCH_TTY,20'Handler' => Msf::Handler::FindTty,21'Session' => Msf::Sessions::TTY,22'Payload' => {23'Offsets' => {},24'Payload' => ''25}26)27)28end29end303132