Sha256: 4202744de4252ca135f2418503218c5c466a3d1af42644b7108de056ab527302

Contents?: true

Size: 1.85 KB

Versions: 2

Compression:

Stored size: 1.85 KB

Contents

# -*- coding: binary -*-
require 'rex/text'
require 'rex/exploitation/obfuscatejs'
require 'rex/exploitation/jsobfu'

module Rex
module Exploitation

#
# Encapsulates the generation of the Alexander Sotirov's HeapLib javascript
# stub
#
class HeapLib

	#
	# The source file to load the javascript from
	#
	JavascriptFile = File.join(File.dirname(__FILE__), "heaplib.js.b64")

	#
	# The list of symbols found in the file.  This is used to dynamically
	# replace contents.
	#
	SymbolNames =
		{
			"Methods" =>
				[
					"vtable",
					"lookasideAddr",
					"lookaside",
					"freeList",
					"gc",
					"flushOleaut32",
					"freeOleaut32",
					"allocOleaut32",
					"free",
					"alloc",
					"addr",
					"hex",
					"round",
					"paddingStr",
					"padding",
					"debugBreak",
					"debugHeap",
					"debug",
				],
			"Classes" =>
				[
					{ 'Namespace' => "heapLib", 'Class' => "ie" }
				],
			"Namespaces" =>
				[
					"heapLib"
				]
		}

	#
	# Initializes the heap library javascript
	#
	def initialize(custom_js = '', opts = {})
		load_js(custom_js, opts)
	end

	#
	# Return the replaced version of the javascript
	#
	def to_s
		@js
	end

protected

	#
	# Loads the raw javascript from the source file and strips out comments
	#
	def load_js(custom_js, opts = {})

		# Grab the complete javascript
		File.open(JavascriptFile) do |f|
			@js = f.read
		end

		# Decode the text
		@js = Rex::Text.decode_base64(@js)

		# Append the real code
		@js += "\n" + custom_js

		if opts[:newobfu]
			# Obfuscate the javascript using the new lexer method
			@js = JSObfu.new(@js)
			return @js.obfuscate
		elsif opts[:noobfu]
			# Do not obfuscate, let the exploit do the work (useful to avoid double obfuscation)
			return @js
		end

		# Default to the old method
		# Obfuscate the javascript using the old method
		@js = ObfuscateJS.obfuscate(@js, 'Symbols' => SymbolNames)
	end
end

end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
librex-0.0.68 lib/rex/exploitation/heaplib.rb
librex-0.0.66 lib/rex/exploitation/heaplib.rb