Skip to content

Commit 77b1f2d

Browse files
author
Tod Beardsley
committed
Fixup for release
Fixes the grammar on the SMTP enumeration module and the Cisco CDP module, and adds a more informative description and reference for the CDP module introduced on PR rapid7#4061.
1 parent 1e38e19 commit 77b1f2d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

modules/auxiliary/scanner/smtp/smtp_ntlm_domain.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Metasploit3 < Msf::Auxiliary
1414
def initialize
1515
super(
1616
'Name' => 'SMTP NTLM Domain Extraction',
17-
'Description' => 'Extract the Windows domain name from a SMTP NTLM challenge.',
17+
'Description' => 'Extract the Windows domain name from an SMTP NTLM challenge.',
1818
'References' => [ ['URL', 'http://msdn.microsoft.com/en-us/library/cc246870.aspx' ] ],
1919
'Author' => [ 'Rich Whitcroft <rwhitcroft[at]digitalboundary.net>' ],
2020
'License' => MSF_LICENSE

modules/auxiliary/spoof/cisco/cdp.rb

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,20 @@ class Metasploit3 < Msf::Auxiliary
99
include Msf::Exploit::Capture
1010

1111
def initialize
12+
1213
super(
1314
'Name' => 'Send Cisco Discovery Protocol (CDP) Packets',
14-
'Description' => 'This module sends Cisco Discovery Protocol (CDP) packets',
15+
'Description' => %q{
16+
This module sends Cisco Discovery Protocol (CDP) packets. Note that any responses
17+
to the CDP packets broadcast from this module will need to be analyzed with an
18+
external packet analysis tool, such as tcpdump or Wireshark in order to learn more
19+
about the Cisco switch and router environment.
20+
},
1521
'Author' => 'Fatih Ozavci <viproy.com/fozavci>',
1622
'License' => MSF_LICENSE,
23+
'References' => [
24+
[ 'URL', 'http://en.wikipedia.org/wiki/CDP_Spoofing' ]
25+
],
1726
'Actions' => [
1827
['Spoof', { 'Description' => 'Sends CDP packets' }]
1928
],

0 commit comments

Comments
 (0)