Skip to content

Commit 5cca776

Browse files
committed
Land rapid7#7289, minor module fixes
2 parents 0f30d3a + 7d44bd5 commit 5cca776

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

modules/auxiliary/scanner/mysql/mysql_authbypass_hashdump.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def initialize
1818
'Description' => %Q{
1919
This module exploits a password bypass vulnerability in MySQL in order
2020
to extract the usernames and encrypted password hashes from a MySQL server.
21-
These hashes ares stored as loot for later cracking.
21+
These hashes are stored as loot for later cracking.
2222
},
2323
'Author' => [
2424
'theLightCosine', # Original hashdump module

modules/auxiliary/scanner/mysql/mysql_version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def initialize
1515
super(
1616
'Name' => 'MySQL Server Version Enumeration',
1717
'Description' => %q{
18-
Enumerates the version of MySQL servers
18+
Enumerates the version of MySQL servers.
1919
},
2020
'Author' => 'kris katterjohn',
2121
'License' => MSF_LICENSE

modules/exploits/multi/postgres/postgres_createlang.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ def initialize(info = {})
4848
['Automatic', {}]
4949
],
5050
'DefaultTarget' => 0,
51-
'DisclosureDate' => 'Jan 1 2016'))
51+
'DisclosureDate' => 'Jan 1 2016'
52+
))
53+
54+
register_options([
55+
Opt::RPORT(5432)
56+
])
5257

5358
deregister_options('SQL', 'RETURN_ROWSET', 'VERBOSE')
5459
end

0 commit comments

Comments
 (0)