Rename remote_exploit_generic template

Dropping "generic" from the name. I initially had some reservations
about leaving it in, and after discussion with @acammack-r7, we've
decided it adds nothing useful.
GSoC/Meterpreter_Web_Console
William Vu 2018-06-19 11:29:09 -05:00
parent df4cee1d77
commit 9545bac809
3 changed files with 5 additions and 5 deletions

View File

@ -6,8 +6,8 @@ class Msf::Modules::External::Shim
mod = Msf::Modules::External.new(module_path)
return '' unless mod.meta
case mod.meta['type']
when 'remote_exploit_generic'
remote_exploit_generic(mod)
when 'remote_exploit'
remote_exploit(mod)
when 'remote_exploit_cmd_stager'
remote_exploit_cmd_stager(mod)
when 'capture_server'
@ -85,10 +85,10 @@ class Msf::Modules::External::Shim
meta
end
def self.remote_exploit_generic(mod)
def self.remote_exploit(mod)
meta = mod_meta_common(mod)
meta = mod_meta_exploit(mod, meta)
render_template('remote_exploit_generic.erb', meta)
render_template('remote_exploit.erb', meta)
end
def self.remote_exploit_cmd_stager(mod)

View File

@ -70,7 +70,7 @@ metadata = {
{'type': 'aka', 'ref': 'ETERNALBLUE'}
],
'date': 'Mar 14 2017',
'type': 'remote_exploit_generic',
'type': 'remote_exploit',
'rank': 'AverageRanking',
'privileged': True,
'wfsdelay': 5,