class Rex::Exploitation::OpcodeDb::ImageModule::Import

This class contains information about a module-associated import.

Attributes

address[R]

The address of the function pointer in the IAT.

name[R]

The name of the imported function.

ordinal[R]

The ordinal of the imported symbol.

Public Class Methods

new(hash) click to toggle source
# File lib/rex/exploitation/opcodedb.rb, line 137
def initialize(hash)
  @name    = hash['name']
  @address = hash['address'].to_i
  @ordinal = hash['ordinal'].to_i
end