Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixup for release #4258

Merged
merged 2 commits into from
Nov 25, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/auxiliary/scanner/smtp/smtp_ntlm_domain.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Metasploit3 < Msf::Auxiliary
def initialize
super(
'Name' => 'SMTP NTLM Domain Extraction',
'Description' => 'Extract the Windows domain name from a SMTP NTLM challenge.',
'Description' => 'Extract the Windows domain name from an SMTP NTLM challenge.',
'References' => [ ['URL', 'http://msdn.microsoft.com/en-us/library/cc246870.aspx' ] ],
'Author' => [ 'Rich Whitcroft <rwhitcroft[at]digitalboundary.net>' ],
'License' => MSF_LICENSE
Expand Down
13 changes: 11 additions & 2 deletions modules/auxiliary/spoof/cisco/cdp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,20 @@ class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Capture

def initialize

super(
'Name' => 'Send Cisco Discovery Protocol (CDP) Packets',
'Description' => 'This module sends Cisco Discovery Protocol (CDP) packets',
'Author' => 'Fatih Ozavci <viproy.com/fozavci>',
'Description' => %q{
This module sends Cisco Discovery Protocol (CDP) packets. Note that any responses
to the CDP packets broadcast from this module will need to be analyzed with an
external packet analysis tool, such as tcpdump or Wireshark in order to learn more
about the Cisco switch and router environment.
},
'Author' => 'Fatih Ozavci', # viproy.com/fozavci
'License' => MSF_LICENSE,
'References' => [
[ 'URL', 'http://en.wikipedia.org/wiki/CDP_Spoofing' ]
],
'Actions' => [
['Spoof', { 'Description' => 'Sends CDP packets' }]
],
Expand Down