20 lines
337 B
Ruby
20 lines
337 B
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
require 'msf/core/payload/windows/loadlibrary'
|
|
|
|
###
|
|
#
|
|
# Executes a command on the target machine
|
|
#
|
|
###
|
|
module MetasploitModule
|
|
|
|
CachedSize = 230
|
|
|
|
include Msf::Payload::Windows::LoadLibrary
|
|
|
|
end
|