Change module title for consistency

unstable
sinn3r 2012-12-26 21:13:02 -06:00
parent da49f67079
commit 4ce1df2214
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post
def initialize(info={}) def initialize(info={})
super(update_info(info, super(update_info(info,
'Name' => 'Enumerate Spark IM Passwords', 'Name' => 'Windows Gather Spark IM Password Extraction',
'Description' => %q{ This module will enumerate passwords stored by the Spark IM client. 'Description' => %q{ This module will enumerate passwords stored by the Spark IM client.
The encryption key is publicly known. This module will not only extract encrypted password The encryption key is publicly known. This module will not only extract encrypted password
but will also decrypt password using public key. but will also decrypt password using public key.
@ -53,7 +53,7 @@ class Metasploit3 < Msf::Post
password = ::Rex::Text.to_utf8(password) password = ::Rex::Text.to_utf8(password)
user, pass = password.scan(/[[:print:]]+/) user, pass = password.scan(/[[:print:]]+/)
return if pass.nil? or pass.empty? return pass.nil? or pass.empty?
print_good("Decrypted Username #{user} Password: #{pass}") print_good("Decrypted Username #{user} Password: #{pass}")
store_creds(user, pass) store_creds(user, pass)