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
-
#compatible_encoders ⇒ Object
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.
- #initialize(info = {}) ⇒ Object
Instance Method Details
#compatible_encoders ⇒ Object
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
19 20 21 22 |
# File 'lib/msf/core/payload/hardware.rb', line 19 def compatible_encoders encoders2 = ['/generic\/none/', 'none'] encoders2 end |
#initialize(info = {}) ⇒ Object
10 11 12 |
# File 'lib/msf/core/payload/hardware.rb', line 10 def initialize(info = {}) super(info) end |