Class: Rex::ElfScan::Scanner::PopPopRetScanner

Inherits:
JmpRegScanner show all
Defined in:
lib/rex/elfscan/scanner.rb

Instance Attribute Summary

Attributes inherited from Generic

#elf, #regex

Instance Method Summary collapse

Methods inherited from JmpRegScanner

#_build_byte_list, #_parse_ret, #_ret_size

Methods inherited from Generic

#initialize, #scan

Constructor Details

This class inherits a constructor from Rex::ElfScan::Scanner::Generic

Instance Method Details

#config(param) ⇒ Object



137
138
139
140
# File 'lib/rex/elfscan/scanner.rb', line 137

def config(param)
	pops = _build_byte_list(0x58, (0 .. 7).to_a - [4]) # we don't want pop esp's...
	self.regex = Regexp.new("[#{pops}][#{pops}](\xc3|\xc2..)", nil, 'n')
end

#scan_segment(program_header, param = {}) ⇒ Object



142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/rex/elfscan/scanner.rb', line 142

def scan_segment(program_header, param={})
	offset = program_header.p_offset

	hits = []

	while offset < program_header.p_offset + program_header.p_filesz &&
	(offset = elf.index(regex, offset)) != nil

		rva     = elf.offset_to_rva(offset)
		message = ''

		pops = elf.read(offset, 2)
		reg1 = Rex::Arch::X86.reg_name32(pops[0,1].unpack('C*')[0] & 0x7)
		reg2 = Rex::Arch::X86.reg_name32(pops[1,1].unpack('C*')[0] & 0x7)

		message = "pop #{reg1}; pop #{reg2}; "

		retsize = _ret_size(offset+2)
		message += _parse_ret(elf.read(offset+2, retsize))

		offset += 2 + retsize

		hits << [ rva, message ]
	end

	return hits
end