File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
modules/auxiliary/scanner/postgres Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,16 @@ def initialize(info = {})
21
21
'Description' => %q{
22
22
This module attempts to authenticate against a PostgreSQL
23
23
instance using username and password combinations indicated
24
- by the USER_FILE, PASS_FILE, and USERPASS_FILE options.
24
+ by the USER_FILE, PASS_FILE, and USERPASS_FILE options. Note that
25
+ passwords may be either plaintext or MD5 formatted hashes.
25
26
} ,
26
27
'Author' => [ 'todb' ] ,
27
28
'License' => MSF_LICENSE ,
28
29
'References' =>
29
30
[
30
31
[ 'URL' , 'http://www.postgresql.org' ] ,
31
- [ 'CVE' , '1999-0502' ] # Weak password
32
+ [ 'CVE' , '1999-0502' ] , # Weak password
33
+ [ 'URL' , 'https://hashcat.net/forum/archive/index.php?thread-4148.html' ] # Pass the Hash
32
34
]
33
35
) )
34
36
You can’t perform that action at this time.
0 commit comments