Files
metasploit-gs/modules/payloads/singles/windows/loadlibrary.rb
T
Brent Cook 6b1e911041 Instantiate payload modules so parameter validation occurs
Calling .new on payload modules does not perform parameter validation, leading
to a number cached sizes based on invalid parameters. Most notably,
normalization does not occur either, which makes all OptBool params default to
true.
2015-08-14 11:35:39 -05:00

21 lines
350 B
Ruby

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