Files
metasploit-gs/lib/msf/base/simple/payload.rb
T

98 lines
2.4 KiB
Ruby
Raw Normal View History

2005-07-10 09:42:49 +00:00
require 'msf/base'
module Msf
module Simple
###
#
# Simple payload wrapper class for performing generation.
#
###
module Payload
include Module
2005-07-10 09:42:49 +00:00
#
# Generate a payload with the mad skillz. The payload can be generated in
# a number of ways.
#
# opts can have:
#
2005-11-25 01:59:54 +00:00
# Encoder => A encoder module name.
# BadChars => A string of bad characters.
# Format => The format to represent the data as: ruby, perl, c, raw
# Options => A hash of options to set.
# OptionStr => A string of options in VAR=VAL form separated by
# whitespace.
# NoComment => Disables prepention of a comment
# NopSledSize => The number of NOPs to use
2005-11-25 01:59:54 +00:00
# MaxSize => The maximum size of the payload.
2005-07-10 09:42:49 +00:00
#
# raises:
#
# BadcharError => If the supplied encoder fails to encode the payload
# NoKeyError => No valid encoder key could be found
# ArgumentParseError => Options were supplied improperly
#
def self.generate_simple(payload, opts)
# Import any options we may need
payload._import_extra_options(opts)
2005-07-10 19:21:40 +00:00
2005-07-10 09:42:49 +00:00
# Generate the payload
e = EncodedPayload.create(payload,
'BadChars' => opts['BadChars'],
'MinNops' => opts['NopSledSize'],
2005-11-25 01:59:54 +00:00
'Encoder' => opts['Encoder'],
'Space' => opts['MaxSize'])
2005-07-10 09:42:49 +00:00
2005-07-10 19:21:40 +00:00
fmt = opts['Format'] || 'raw'
2005-07-11 05:25:50 +00:00
# Save off the original payload length
len = e.encoded.length
2005-07-11 05:25:50 +00:00
2005-07-10 09:42:49 +00:00
# Serialize the generated payload to some sort of format
buf = Buffer.transform(e.encoded, fmt)
2005-07-10 19:21:40 +00:00
# Prepend a comment
if (fmt != 'raw' and opts['NoComment'] != true)
((ou = payload.options.options_used_to_s(payload.datastore)) and ou.length > 0) ? ou += "\n" : ou = ''
2005-07-10 19:21:40 +00:00
buf = Buffer.comment(
2005-11-12 05:11:56 +00:00
"#{payload.refname} - #{len} bytes#{payload.staged? ? " (stage 1)" : ""}\n" +
"http://www.metasploit.com\n" +
((e.encoder) ? "Encoder: #{e.encoder.refname}\n" : '') +
((e.nop) ? "NOP gen: #{e.nop.refname}\n" : '') +
"#{ou}",
fmt) + buf
2005-11-12 05:11:56 +00:00
# If it's multistage, include the second stage too
if payload.staged?
stage = payload.generate_stage
# If a stage was generated, then display it
if stage and stage.length > 0
buf +=
"\n" +
Buffer.comment(
"#{payload.refname} - #{stage.length} bytes (stage 2)\n" +
"http://www.metasploit.com\n",
fmt) + Buffer.transform(stage, fmt)
end
2005-11-12 05:11:56 +00:00
end
2005-07-10 19:21:40 +00:00
end
return buf
2005-07-10 09:42:49 +00:00
end
#
2005-11-15 15:11:43 +00:00
# Calls the class method.
#
def generate_simple(opts)
Msf::Simple::Payload.generate_simple(self, opts)
end
2005-07-10 09:42:49 +00:00
end
end
2008-10-19 21:03:39 +00:00
end