Module: Msf::Payload::Hardware

Defined in:
lib/msf/core/payload/hardware.rb

Overview

This class is here to implement advanced features for hardware bridged payloads. HWBridge payloads are expected to include this module if they want to support these features.

Instance Method Summary collapse

Instance Method Details

#compatible_encodersObject

Returns a list of compatible encoders based on mainframe architecture most will not work because of the different architecture an XOR-based encoder will be defined soon



18
19
20
21
# File 'lib/msf/core/payload/hardware.rb', line 18

def compatible_encoders
  encoders2 = ['/generic\/none/', 'none']
  encoders2
end

#initialize(info = {}) ⇒ Object



9
10
11
# File 'lib/msf/core/payload/hardware.rb', line 9

def initialize(info = {})
  super(info)
end