Skip to content

Commit 7a76efa

Browse files
committed
Add reference and disclosure date
1 parent 9f9f28c commit 7a76efa

File tree

5 files changed

+35
-25
lines changed

5 files changed

+35
-25
lines changed

modules/auxiliary/scanner/ntp/ntp_peer_list_dos.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,20 @@ class Metasploit3 < Msf::Auxiliary
1515

1616
def initialize
1717
super(
18-
'Name' => 'NTP Mode 7 PEER_LIST DoS Scanner',
19-
'Description' => %q{
18+
'Name' => 'NTP Mode 7 PEER_LIST DoS Scanner',
19+
'Description' => %q{
2020
This module identifies NTP servers which permit "PEER_LIST" queries and
2121
return responses that are larger in size or greater in quantity than
2222
the request, allowing remote attackers to cause a denial of service
2323
(traffic amplification) via spoofed requests.
2424
},
25-
'References' =>
25+
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
26+
'References' =>
2627
[
28+
['URL', 'https://github.com/rapid7/metasploit-framework/pull/3696']
2729
],
28-
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
29-
'License' => MSF_LICENSE
30+
'DisclosureDate' => 'Aug 25 2014',
31+
'License' => MSF_LICENSE
3032
)
3133
end
3234

modules/auxiliary/scanner/ntp/ntp_peer_list_sum_dos.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,20 @@ class Metasploit3 < Msf::Auxiliary
1515

1616
def initialize
1717
super(
18-
'Name' => 'NTP Mode 7 PEER_LIST_SUM DoS Scanner',
19-
'Description' => %q{
18+
'Name' => 'NTP Mode 7 PEER_LIST_SUM DoS Scanner',
19+
'Description' => %q{
2020
This module identifies NTP servers which permit "PEER_LIST_SUM" queries and
2121
return responses that are larger in size or greater in quantity than
2222
the request, allowing remote attackers to cause a denial of service
2323
(traffic amplification) via spoofed requests.
2424
},
25-
'References' =>
25+
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
26+
'References' =>
2627
[
28+
['URL', 'https://github.com/rapid7/metasploit-framework/pull/3696']
2729
],
28-
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
29-
'License' => MSF_LICENSE
30+
'DisclosureDate' => 'Aug 25 2014',
31+
'License' => MSF_LICENSE
3032
)
3133
end
3234

modules/auxiliary/scanner/ntp/ntp_req_nonce_dos.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,21 @@ class Metasploit3 < Msf::Auxiliary
1515

1616
def initialize
1717
super(
18-
'Name' => 'NTP Mode 6 REQ_NONCE DRDoS Scanner',
19-
'Description' => %q{
18+
'Name' => 'NTP Mode 6 REQ_NONCE DRDoS Scanner',
19+
'Description' => %q{
2020
This module identifies NTP servers which permit mode 6 REQ_NONCE requests that
2121
can be used to conduct DRDoS attacks. In some configurations, NTP servers will
2222
respond to REQ_NONCE requests with a response larger than the request,
2323
allowing remote attackers to cause a denial of services (traffic
2424
amplification) via spoofed requests.
2525
},
26-
'References' =>
26+
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
27+
'References' =>
2728
[
29+
['URL', 'https://github.com/rapid7/metasploit-framework/pull/3696']
2830
],
29-
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
30-
'License' => MSF_LICENSE
31+
'DisclosureDate' => 'Aug 25 2014',
32+
'License' => MSF_LICENSE
3133
)
3234
end
3335

modules/auxiliary/scanner/ntp/ntp_reslist_dos.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,22 @@ class Metasploit3 < Msf::Auxiliary
1515

1616
def initialize
1717
super(
18-
'Name' => 'NTP Mode 7 GET_RESTRICT DRDoS Scanner',
19-
'Description' => %q{
18+
'Name' => 'NTP Mode 7 GET_RESTRICT DRDoS Scanner',
19+
'Description' => %q{
2020
This module identifies NTP servers which permit "reslist" queries and
2121
obtains the list of restrictions placed on various network interfaces,
2222
networks or hosts. The reslist feature allows remote
2323
attackers to cause a denial of service (traffic amplification) via
2424
spoofed requests. The more interfaces, networks or host with specific
2525
restrictions, the greater the amplification.
2626
},
27-
'References' =>
27+
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
28+
'References' =>
2829
[
30+
['URL', 'https://github.com/rapid7/metasploit-framework/pull/3696']
2931
],
30-
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
31-
'License' => MSF_LICENSE
32+
'DisclosureDate' => 'Aug 25 2014',
33+
'License' => MSF_LICENSE
3234
)
3335
end
3436

modules/auxiliary/scanner/ntp/ntp_unsettrap_dos.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,20 @@ class Metasploit3 < Msf::Auxiliary
1515

1616
def initialize
1717
super(
18-
'Name' => 'NTP Mode 6 UNSETTRAP DRDoS Scanner',
19-
'Description' => %q{
18+
'Name' => 'NTP Mode 6 UNSETTRAP DRDoS Scanner',
19+
'Description' => %q{
2020
This module identifies NTP servers which permit mode 6 UNSETTRAP requests that
2121
can be used to conduct DRDoS attacks. In some configurations, NTP servers will
2222
respond to UNSETTRAP requests with multiple packets, allowing remote attackers to
2323
cause a denial of services (traffic amplification) via spoofed requests.
2424
},
25-
'References' =>
25+
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
26+
'References' =>
2627
[
28+
['URL', 'https://github.com/rapid7/metasploit-framework/pull/3696']
2729
],
28-
'Author' => 'Jon Hart <jon_hart[at]rapid7.com>',
29-
'License' => MSF_LICENSE
30+
'DisclosureDate' => 'Aug 25 2014',
31+
'License' => MSF_LICENSE
3032
)
3133
end
3234

0 commit comments

Comments
 (0)