Parent

Methods

Class/Module Index [+]

Quicksearch

Rex::Post::Meterpreter::Extensions::Stdapi::Sys::EventLogSubsystem::EventRecord

This class encapsulates the data from an event log record.

Attributes

category[RW]
data[RW]
eventid[RW]
generated[RW]
num[RW]
strings[RW]
type[RW]
written[RW]

Public Class Methods

new(recnum, timegen, timewri, id, type, cat, strs, data) click to toggle source
# File lib/rex/post/meterpreter/extensions/stdapi/sys/event_log_subsystem/event_record.rb, line 27
def initialize(recnum, timegen, timewri, id, type, cat, strs, data)
        self.num       = recnum
        self.generated = Time.at(timegen)
        self.written   = Time.at(timewri)
        self.eventid   = id
        self.type      = type
        self.category  = cat
        self.strings   = strs
        self.data      = data
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.