mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
add 'Also known as', AKA 'AKA', to module references
This commit is contained in:
parent
bdc932a235
commit
461ab4501d
@ -95,26 +95,28 @@ class Msf::Module::SiteReference < Msf::Module::Reference
|
||||
self.ctx_id = in_ctx_id
|
||||
self.ctx_val = in_ctx_val
|
||||
|
||||
if (in_ctx_id == 'CVE')
|
||||
if in_ctx_id == 'CVE'
|
||||
self.site = "https://cvedetails.com/cve/CVE-#{in_ctx_val}/"
|
||||
elsif (in_ctx_id == 'CWE')
|
||||
elsif in_ctx_id == 'CWE'
|
||||
self.site = "https://cwe.mitre.org/data/definitions/#{in_ctx_val}.html"
|
||||
elsif (in_ctx_id == 'BID')
|
||||
elsif in_ctx_id == 'BID'
|
||||
self.site = "http://www.securityfocus.com/bid/#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'MSB')
|
||||
elsif in_ctx_id == 'MSB'
|
||||
self.site = "https://technet.microsoft.com/en-us/library/security/#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'EDB')
|
||||
elsif in_ctx_id == 'EDB'
|
||||
self.site = "https://www.exploit-db.com/exploits/#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'US-CERT-VU')
|
||||
elsif in_ctx_id == 'US-CERT-VU'
|
||||
self.site = "https://www.kb.cert.org/vuls/id/#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'ZDI')
|
||||
elsif in_ctx_id == 'ZDI'
|
||||
self.site = "http://www.zerodayinitiative.com/advisories/ZDI-#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'WPVDB')
|
||||
elsif in_ctx_id == 'WPVDB'
|
||||
self.site = "https://wpvulndb.com/vulnerabilities/#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'PACKETSTORM')
|
||||
elsif in_ctx_id == 'PACKETSTORM'
|
||||
self.site = "https://packetstormsecurity.com/files/#{in_ctx_val}"
|
||||
elsif (in_ctx_id == 'URL')
|
||||
elsif in_ctx_id == 'URL'
|
||||
self.site = in_ctx_val.to_s
|
||||
elsif in_ctx_id == 'AKA'
|
||||
self.site = "Also known as: #{in_ctx_val}"
|
||||
else
|
||||
self.site = in_ctx_id
|
||||
self.site += " (#{in_ctx_val})" if (in_ctx_val)
|
||||
|
@ -32,12 +32,13 @@ class MetasploitModule < Msf::Auxiliary
|
||||
'lcamtuf' # CVE-2014-6278
|
||||
],
|
||||
'References' => [
|
||||
['CVE', '2014-6271'],
|
||||
['CVE', '2014-6278'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://access.redhat.com/articles/1200223'],
|
||||
['URL', 'http://seclists.org/oss-sec/2014/q3/649']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CVE', '2014-6278' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://access.redhat.com/articles/1200223' ],
|
||||
[ 'URL', 'http://seclists.org/oss-sec/2014/q3/649' ]
|
||||
],
|
||||
'DisclosureDate' => 'Sep 24 2014',
|
||||
'License' => MSF_LICENSE
|
||||
|
@ -33,6 +33,8 @@ class MetasploitModule < Msf::Auxiliary
|
||||
],
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'doublepulsar' ],
|
||||
[ 'AKA', 'eternalblue' ],
|
||||
[ 'CVE', '2017-0143'],
|
||||
[ 'CVE', '2017-0144'],
|
||||
[ 'CVE', '2017-0145'],
|
||||
|
@ -36,13 +36,14 @@ class MetasploitModule < Msf::Auxiliary
|
||||
],
|
||||
'DefaultAction' => 'Service',
|
||||
'References' => [
|
||||
['CVE', '2014-6271'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/'],
|
||||
['URL', 'http://seclists.org/oss-sec/2014/q3/649'],
|
||||
['URL', 'https://www.trustedsec.com/september-2014/shellshock-dhcp-rce-proof-concept/']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/' ],
|
||||
[ 'URL', 'http://seclists.org/oss-sec/2014/q3/649' ],
|
||||
[ 'URL', 'https://www.trustedsec.com/september-2014/shellshock-dhcp-rce-proof-concept/' ]
|
||||
],
|
||||
'DisclosureDate' => 'Sep 24 2014'
|
||||
)
|
||||
|
@ -50,6 +50,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
],
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'stagefright' ],
|
||||
[ 'CVE', '2015-3864' ],
|
||||
[ 'URL', 'https://blog.exodusintel.com/2015/08/13/stagefright-mission-accomplished/' ],
|
||||
[ 'URL', 'http://googleprojectzero.blogspot.com/2015/09/stagefrightened.html' ],
|
||||
|
@ -18,13 +18,14 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
},
|
||||
'Author' => 'hdm',
|
||||
'References' => [
|
||||
['CVE', '2014-6271'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://community.rapid7.com/community/infosec/blog/2015/12/01/r7-2015-25-advantech-eki-multiple-known-vulnerabilities'],
|
||||
['URL', 'https://access.redhat.com/articles/1200223'],
|
||||
['URL', 'http://seclists.org/oss-sec/2014/q3/649']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://community.rapid7.com/community/infosec/blog/2015/12/01/r7-2015-25-advantech-eki-multiple-known-vulnerabilities' ],
|
||||
[ 'URL', 'https://access.redhat.com/articles/1200223' ],
|
||||
[ 'URL', 'http://seclists.org/oss-sec/2014/q3/649' ]
|
||||
],
|
||||
'Privileged' => false,
|
||||
'Arch' => ARCH_CMD,
|
||||
|
@ -24,6 +24,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
],
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'EDB', '34839' ],
|
||||
[ 'CVE', '2014-6271']
|
||||
],
|
||||
|
@ -27,12 +27,13 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
],
|
||||
'References' =>
|
||||
[
|
||||
['CVE', '2014-6271'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://gist.github.com/jedisct1/88c62ee34e6fa92c31dc'],
|
||||
['URL', 'http://download.pureftpd.org/pub/pure-ftpd/doc/README.Authentication-Modules']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://gist.github.com/jedisct1/88c62ee34e6fa92c31dc' ],
|
||||
[ 'URL', 'http://download.pureftpd.org/pub/pure-ftpd/doc/README.Authentication-Modules' ]
|
||||
],
|
||||
'Payload' =>
|
||||
{
|
||||
|
@ -25,13 +25,14 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'lcamtuf' # CVE-2014-6278
|
||||
],
|
||||
'References' => [
|
||||
['CVE', '2014-6271'],
|
||||
['CVE', '2014-6278'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://access.redhat.com/articles/1200223'],
|
||||
['URL', 'http://seclists.org/oss-sec/2014/q3/649']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CVE', '2014-6278' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://access.redhat.com/articles/1200223' ],
|
||||
[ 'URL', 'http://seclists.org/oss-sec/2014/q3/649' ]
|
||||
],
|
||||
'Payload' =>
|
||||
{
|
||||
|
@ -22,13 +22,14 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'Brendan Coles <bcoles[at]gmail.com>' # msf
|
||||
],
|
||||
'References' => [
|
||||
['CVE', '2014-6271'],
|
||||
['CVE', '2014-6278'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://access.redhat.com/articles/1200223'],
|
||||
['URL', 'http://seclists.org/oss-sec/2014/q3/649']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CVE', '2014-6278' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://access.redhat.com/articles/1200223' ],
|
||||
[ 'URL', 'http://seclists.org/oss-sec/2014/q3/649' ]
|
||||
],
|
||||
'Privileged' => false,
|
||||
'Arch' => ARCH_CMD,
|
||||
|
@ -30,6 +30,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'License' => MSF_LICENSE,
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'OSVDB', '121681' ],
|
||||
[ 'EDB', '36836' ],
|
||||
[ 'URL', 'https://www.damballa.com/perlbotnado/' ],
|
||||
|
@ -33,6 +33,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'License' => MSF_LICENSE,
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'URL', 'https://conorpp.com/blog/a-close-look-at-an-operating-botnet/' ],
|
||||
[ 'URL', 'https://twitter.com/MrMookie/status/673389285676965889' ], # Matt's discovery
|
||||
[ 'URL', 'https://www.alienvault.com/open-threat-exchange/blog/elasticzombie-botnet-exploiting-elasticsearch-vulnerabilities' ] # details of what an fBot is
|
||||
|
@ -28,10 +28,11 @@ class MetasploitModule < Msf::Exploit::Local
|
||||
],
|
||||
'References' =>
|
||||
[
|
||||
['CVE', '2014-6271'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ]
|
||||
],
|
||||
'Platform' => 'osx',
|
||||
'Arch' => [ ARCH_X64 ],
|
||||
|
@ -32,13 +32,14 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'Arch' => ARCH_CMD,
|
||||
'References' =>
|
||||
[
|
||||
['CVE', '2014-6271'],
|
||||
['CWE', '94'],
|
||||
['OSVDB', '112004'],
|
||||
['EDB', '34765'],
|
||||
['URL', 'https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/'],
|
||||
['URL', 'http://seclists.org/oss-sec/2014/q3/649'],
|
||||
['URL', 'https://www.trustedsec.com/september-2014/shellshock-dhcp-rce-proof-concept/']
|
||||
[ 'AKA', 'shellshock' ],
|
||||
[ 'CVE', '2014-6271' ],
|
||||
[ 'CWE', '94' ],
|
||||
[ 'OSVDB', '112004' ],
|
||||
[ 'EDB', '34765' ],
|
||||
[ 'URL', 'https://securityblog.redhat.com/2014/09/24/bash-specially-crafted-environment-variables-code-injection-attack/' ],
|
||||
[ 'URL', 'http://seclists.org/oss-sec/2014/q3/649' ],
|
||||
[ 'URL', 'https://www.trustedsec.com/september-2014/shellshock-dhcp-rce-proof-concept/' ]
|
||||
],
|
||||
'Payload' =>
|
||||
{
|
||||
|
@ -34,6 +34,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'License' => MSF_LICENSE,
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'explodingcan' ],
|
||||
[ 'CVE', '2017-7269' ],
|
||||
[ 'BID', '97127' ],
|
||||
[ 'URL', 'https://github.com/edwardz246003/IIS_exploit' ],
|
||||
|
@ -47,6 +47,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||
'License' => MSF_LICENSE,
|
||||
'References' =>
|
||||
[
|
||||
[ 'AKA', 'eternalblue' ],
|
||||
[ 'MSB', 'MS17-010' ],
|
||||
[ 'CVE', '2017-0143' ],
|
||||
[ 'CVE', '2017-0144' ],
|
||||
|
Loading…
Reference in New Issue
Block a user