File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
modules/post/windows/gather/credentials Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post
18
18
19
19
def initialize ( info = { } )
20
20
super ( update_info ( info ,
21
- 'Name' => 'Enumerate Spark IM Passwords ' ,
21
+ 'Name' => 'Windows Gather Spark IM Password Extraction ' ,
22
22
'Description' => %q{ This module will enumerate passwords stored by the Spark IM client.
23
23
The encryption key is publicly known. This module will not only extract encrypted password
24
24
but will also decrypt password using public key.
@@ -53,7 +53,7 @@ def decrypt(hash)
53
53
password = ::Rex ::Text . to_utf8 ( password )
54
54
55
55
user , pass = password . scan ( /[[:print:]]+/ )
56
- return if pass . nil? or pass . empty?
56
+ return pass . nil? or pass . empty?
57
57
print_good ( "Decrypted Username #{ user } Password: #{ pass } " )
58
58
59
59
store_creds ( user , pass )
You can’t perform that action at this time.
0 commit comments