Class: Rex::PeScan::Analyze::Information

Inherits:
Object
  • Object
show all
Defined in:
lib/rex/pescan/analyze.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(pe) ⇒ Information

Returns a new instance of Information.



74
75
76
# File 'lib/rex/pescan/analyze.rb', line 74

def initialize(pe)
	self.pe = pe
end

Instance Attribute Details

#peObject

Returns the value of attribute pe.



72
73
74
# File 'lib/rex/pescan/analyze.rb', line 72

def pe
  @pe
end

Instance Method Details

#add_fields(tbl, obj, fields) ⇒ Object



78
79
80
81
82
83
84
85
86
# File 'lib/rex/pescan/analyze.rb', line 78

def add_fields(tbl, obj, fields)
	fields.each do |name|
		begin
			tbl << [name, "0x%.8x" % obj.send(name)]
		rescue ::NoMethodError => e
			$stderr.puts "Invalid field #{name}"
		end
	end
end

#scan(param) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/rex/pescan/analyze.rb', line 88

def scan(param)

	$stdout.puts "\n\n"

	tbl = table("Image Headers", ['Name', 'Value'])
	add_fields(tbl, pe.hdr.file, %W{
		Characteristics
		SizeOfOptionalHeader
		PointerToSymbolTable
		TimeDateStamp
		NumberOfSections
		Machine
	})
	$stdout.puts tbl.to_s
	$stdout.puts "\n\n"

	tbl = table("Optional Image Headers", ['Name', 'Value'])
	add_fields(tbl, pe.hdr.opt, %W{
		ImageBase
		Magic
		MajorLinkerVersion
		MinorLinkerVersion
		SizeOfCode
		SizeOfInitializeData
		SizeOfUninitializeData
		AddressOfEntryPoint
		BaseOfCode
		BaseOfData
		SectionAlignment
		FileAlignment
		MajorOperatingSystemVersion
		MinorOperatingSystemVersion
		MajorImageVersion
		MinorImageVersion
		MajorSubsystemVersion
		MinorSubsystemVersion
		Win32VersionValue
		SizeOfImage
		SizeOfHeaders
		CheckSum
		Subsystem
		DllCharacteristics
		SizeOfStackReserve
		SizeOfStackCommit
		SizeOfHeapReserve
		SizeOfHeapCommit
		LoaderFlags
		NumberOfRvaAndSizes
	})
	$stdout.puts tbl.to_s
	$stdout.puts "\n\n"

	if (pe.exports)
		tbl = table("Exported Functions", ['Ordinal', 'Name', 'Address'])
		pe.exports.entries.each do |ent|
			tbl << [ent.ordinal, ent.name, "0x%.8x" % pe.rva_to_vma(ent.rva)]
		end
		$stdout.puts tbl.to_s
		$stdout.puts "\n\n"
	end

	if (pe.imports)
		tbl = table("Imported Functions", ['Library', 'Ordinal', 'Name'])
		pe.imports.each do |lib|
			lib.entries.each do |ent|
				tbl << [lib.name, ent.ordinal, ent.name]
			end
		end
		$stdout.puts tbl.to_s
		$stdout.puts "\n\n"
	end

	if(pe.config)
		tbl = table("Configuration Header", ['Name', 'Value'])
		add_fields(tbl, pe.config, %W{
			Size
			TimeDateStamp
			MajorVersion
			MinorVersion
			GlobalFlagsClear
			GlobalFlagsSet
			CriticalSectionDefaultTimeout
			DeCommitFreeBlockThreshold
			DeCommitTotalFreeThreshold
			LockPrefixTable
			MaximumAllocationSize
			VirtualMemoryThreshold
			ProcessAffinityMask
			ProcessHeapFlags
			CSDVersion
			Reserved1
			EditList
			SecurityCookie
			SEHandlerTable
			SEHandlerCount
		})
		$stdout.puts tbl.to_s
		$stdout.puts "\n\n"
	end


	if(pe.resources)
		tbl = table("Resources", ['ID', 'Language', 'Code Page', 'Size', 'Name'])
		pe.resources.keys.sort.each do |rkey|
			res = pe.resources[rkey]
			tbl << [rkey, res.lang, res.code, res.size, res.file]
		end
		$stdout.puts tbl.to_s
		$stdout.puts "\n\n"
	end

	tbl = table("Section Header", ["Name", "VirtualAddress", "SizeOfRawData", "Characteristics"])
	pe.sections.each do |sec|
		tbl << [ sec.name, *[sec.vma, sec.raw_size, sec.flags].map{|x| "0x%.8x" % x} ]
	end
	$stdout.puts tbl.to_s
	$stdout.puts "\n\n"

end

#table(name, cols) ⇒ Object



208
209
210
211
212
213
# File 'lib/rex/pescan/analyze.rb', line 208

def table(name, cols)
	Rex::Ui::Text::Table.new(
		'Header'  => name,
		'Columns' => cols
	)
end