From 4ce1df22141ca32d91b609c6b60d749d49396e98 Mon Sep 17 00:00:00 2001 From: sinn3r Date: Wed, 26 Dec 2012 21:13:02 -0600 Subject: [PATCH] Change module title for consistency --- modules/post/windows/gather/credentials/spark_im.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/post/windows/gather/credentials/spark_im.rb b/modules/post/windows/gather/credentials/spark_im.rb index 65a153ac84..76e24ab494 100644 --- a/modules/post/windows/gather/credentials/spark_im.rb +++ b/modules/post/windows/gather/credentials/spark_im.rb @@ -18,7 +18,7 @@ class Metasploit3 < Msf::Post def initialize(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. The encryption key is publicly known. This module will not only extract encrypted password but will also decrypt password using public key. @@ -53,7 +53,7 @@ class Metasploit3 < Msf::Post password = ::Rex::Text.to_utf8(password) 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}") store_creds(user, pass)