Print the right path for the saved data and set the proper variable for options in help message

git-svn-id: file:///home/svn/framework3/trunk@10266 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Carlos Perez 2010-09-09 00:24:31 +00:00
parent f61827b0bb
commit 4226b4910f
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@ opts.parse(args) { |opt, idx, val|
case opt
when "-h"
print_line("Scraper -- harvest system info including network shares, registry hives and password hashes")
print_line("Info is stored in " + ::File.join(Msf::Config.log_directory, "scraper"))
print_line("Info is stored in " + ::File.join(Msf::Config.log_directory,"scripts", "scraper"))
print_line("USAGE: run scraper")
print_line(@@exec_opts.usage)
print_line(opts.usage)
raise Rex::Script::Completed
end
}