From 6c7cc061ea9db130ef427f8b435e534c2859711b Mon Sep 17 00:00:00 2001 From: Pearce Barry Date: Thu, 28 Jul 2016 16:21:50 -0500 Subject: [PATCH] Minor formatting tweaks. --- .../windows/gather/credentials/avira_password.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/post/windows/gather/credentials/avira_password.rb b/modules/post/windows/gather/credentials/avira_password.rb index b6bb088895..9bd64e1c55 100644 --- a/modules/post/windows/gather/credentials/avira_password.rb +++ b/modules/post/windows/gather/credentials/avira_password.rb @@ -46,15 +46,15 @@ class MetasploitModule < Msf::Post ini = Rex::Parser::Ini.from_s(parse) if ini == {} - print_error("Unable to parse file") - return + print_error("Unable to parse file") + return end - print_status("Processing configuration file...") - passwd = ini["COMMON"]['Password'] - passwd = passwd.delete "\"" - print_good("MD5(Unicode) hash found: #{passwd}") - print_good("Info: Password length is limited to 20 characters.") + print_status("Processing configuration file...") + passwd = ini["COMMON"]['Password'] + passwd = passwd.delete "\"" + print_good("MD5(Unicode) hash found: #{passwd}") + print_good("Info: Password length is limited to 20 characters.") end end