Parent

Methods

Class/Module Index [+]

Quicksearch

Rex::PeParsey::PeBase::UnwindCode

Attributes

code_offset[RW]
frame_offset[RW]
op_info[RW]
unwind_op[RW]

Public Class Methods

new(data) click to toggle source
# File lib/rex/peparsey/pebase.rb, line 1052
def initialize(data)

        self.code_offset  = data[0].to_i
        self.unwind_op    = data[1].to_i & 0xf
        self.op_info      = data[1].to_i >> 4
        self.frame_offset = data[2..3].unpack("v")[0]

        data.slice!(0, 4)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.