An opcode that has a specific address and is associated with one or more modules.
A Group instance that reflects the group to which the opcode type found at the instance's address belongs.
The type of the opcode indicating which instruction is found at the address. This is an instance of the Type class.
# File lib/rex/exploitation/opcodedb.rb, line 423 def initialize(hash) super @address = hash['address'].to_i @type = Type.create(hash['type']) @group = @type.group @modules = hash['modules'].map { |ent| ImageModule.create(ent) } if (hash['modules']) @modules = [] unless(@modules) end
Generated with the Darkfish Rdoc Generator 2.