Initial metadata setup

GSoC/Meterpreter_Web_Console
Shelby Pace 2018-09-14 09:37:23 -05:00
parent 5b81ebd81b
commit d2f587894b
No known key found for this signature in database
GPG Key ID: B2F3A8B476406857
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
def initialize(info = {})
super(update_info(info,
'Name' => 'Module name',
'Description' => %q{
Say something that the user might want to know.
},
'Author' => [ 'Thongchai Silpavarangkura', # PoC
'N. Rai-Ngoen', # PoC
'Shelby Pace' # Metasploit Module
],
'License' => MSF_LICENSE,
'References' => [
[ 'CVE', '2018-14058' ],
[ 'EDB', '45208']
],
'DisclosureDate' => 'Aug 13, 2018'
))
register_options(
[
]
)
end
def run
end
end