class Rex::Exploitation::OpcodeDb::ImageModule::Export
This class contains information about a module-associated export.
Attributes
address[R]
The address of the exported function.
name[R]
The name of the exported function.
ordinal[R]
The ordinal of the exported symbol.
Public Class Methods
new(hash)
click to toggle source
# File lib/rex/exploitation/opcodedb.rb, line 163 def initialize(hash) @name = hash['name'] @address = hash['address'].to_i @ordinal = hash['ordinal'].to_i end