Skip to content

Commit 4ce1df2

Browse files
committed
Change module title for consistency
1 parent da49f67 commit 4ce1df2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/post/windows/gather/credentials/spark_im.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post
1818

1919
def initialize(info={})
2020
super(update_info(info,
21-
'Name' => 'Enumerate Spark IM Passwords',
21+
'Name' => 'Windows Gather Spark IM Password Extraction',
2222
'Description' => %q{ This module will enumerate passwords stored by the Spark IM client.
2323
The encryption key is publicly known. This module will not only extract encrypted password
2424
but will also decrypt password using public key.
@@ -53,7 +53,7 @@ def decrypt(hash)
5353
password = ::Rex::Text.to_utf8(password)
5454

5555
user, pass = password.scan(/[[:print:]]+/)
56-
return if pass.nil? or pass.empty?
56+
return pass.nil? or pass.empty?
5757
print_good("Decrypted Username #{user} Password: #{pass}")
5858

5959
store_creds(user, pass)

0 commit comments

Comments
 (0)