/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/encoders/generic/none.rb
26 строк
586 B
bcoles
modules/encoders: Resolve RuboCop violations
13 апр 2025, 17:10
Не верифицирован
13 апр 2025, 17:10
d85ccb2
Код
Авторство
О чём код?
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Encoder def initialize super( 'Name' => 'The "none" Encoder', 'Description' => %q{ This "encoder" does not transform the payload in any way. }, 'Author' => 'spoonm', 'License' => MSF_LICENSE, 'Arch' => ARCH_ALL, 'EncoderType' => Msf::Encoder::Type::Raw) end # # Simply return the buf straight back. # def encode_block(_state, buf) buf end end