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
def generate_sled(length, _opts = {})
' ' * length
end
end