KernelRootkit constructor

KernelRootkit({
  1. String? name,
  2. bool? unexpectedCodeModification,
  3. bool? unexpectedFtraceHandler,
  4. bool? unexpectedInterruptHandler,
  5. bool? unexpectedKernelCodePages,
  6. bool? unexpectedKprobeHandler,
  7. bool? unexpectedProcessesInRunqueue,
  8. bool? unexpectedReadOnlyDataModification,
  9. bool? unexpectedSystemCallHandler,
})

Implementation

KernelRootkit({
  this.name,
  this.unexpectedCodeModification,
  this.unexpectedFtraceHandler,
  this.unexpectedInterruptHandler,
  this.unexpectedKernelCodePages,
  this.unexpectedKprobeHandler,
  this.unexpectedProcessesInRunqueue,
  this.unexpectedReadOnlyDataModification,
  this.unexpectedSystemCallHandler,
});