/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/nops/cmd/generic.rb
22 строки
618 B
Brendan Coles
Nops: Add cmd/generic
28 янв 2022, 18:29
28 янв 2022, 18:29
b7b7cdd
Код
Авторство
О чём код?
## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Nop def initialize super( 'Name' => 'Generic Command Nop Generator', 'Alias' => 'cmd_generic', 'Description' => 'Generates harmless padding for command payloads.', 'Author' => ['hdm', 'bcoles'], 'License' => MSF_LICENSE, 'Arch' => ARCH_CMD) end # Generate valid commands up to the requested length def generate_sled(length, _opts = {}) # Default to just spaces for now ' ' * length end end