/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/msf/core/payload/hardware.rb
23 строки
582 B
dwelch-r7
Use zeitwerk for lib/msf/core folder
07 дек 2020, 13:31
07 дек 2020, 13:31
1617b3e
Код
Авторство
О чём код?
# -*- coding: binary -*- ### # 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. ### module Msf::Payload::Hardware def initialize(info = {}) super(info) end ## # 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 ## def compatible_encoders encoders2 = ['/generic\/none/', 'none'] encoders2 end end