From e893f4fdb7523f1e2f5e3f2c697cec43356b3761 Mon Sep 17 00:00:00 2001 From: Kazuyoshi Maruta Date: Fri, 14 May 2021 16:57:36 +0100 Subject: [PATCH] Modify output message --- lib/msf/core/module/packrat.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/msf/core/module/packrat.rb b/lib/msf/core/module/packrat.rb index 966f2abb55..cb845ee5fe 100644 --- a/lib/msf/core/module/packrat.rb +++ b/lib/msf/core/module/packrat.rb @@ -55,7 +55,7 @@ module Msf xml_credential << file_save.to_s end xml_loot = store_loot("EXTRACTIONS#{artifact}", '', session, xml_credential.to_s, local_loc) - print_good "File with credentials saved: #{xml_loot}" + print_good "File with data saved: #{xml_loot}" rescue StandardError => e print_status e.to_s end @@ -99,7 +99,7 @@ module Msf cred_save << file_save.to_s end regex_loot = store_loot("EXTRACTION#{artifact}", '', session, cred_save.to_s, local_loc) - print_good "File with credentials saved: #{regex_loot}" + print_good "File with data saved: #{regex_loot}" rescue StandardError => e print_status e.to_s end @@ -118,7 +118,7 @@ module Msf end sql_loot = store_loot("EXTRACTIONS#{artifact}", '', session, database_string.to_s, local_loc) - print_good "File with credentials saved: #{sql_loot}" + print_good "File with data saved: #{sql_loot}" rescue StandardError => e print_status e.to_s end @@ -152,7 +152,7 @@ module Msf json_cred << file_save.to_s end json_loot = store_loot("EXTRACTIONS#{artifact}", '', session, json_cred.to_s, local_loc) - print_good "File with credentials saved: #{json_loot}" + print_good "File with data saved: #{json_loot}" rescue StandardError => e print_status e.to_s end @@ -231,7 +231,7 @@ module Msf vprint_error 'This artifact does not support any extraction type' end else - vprint_status 'Credentials are not extracted' + vprint_status 'Data are not extracted' end end end