From 9806ee327a85b4f3aee1f00a462ac30b4ffa9a2b Mon Sep 17 00:00:00 2001 From: Green-m Date: Mon, 25 Jun 2018 05:50:06 -0400 Subject: [PATCH] Fix error when load options from persist file. --- lib/msf/ui/console/driver.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msf/ui/console/driver.rb b/lib/msf/ui/console/driver.rb index a8098e1026..2e47b0c061 100644 --- a/lib/msf/ui/console/driver.rb +++ b/lib/msf/ui/console/driver.rb @@ -189,7 +189,7 @@ class Driver < Msf::Ui::Driver persistent_handler.each do |handler_opts| handler = framework.modules.create(handler_opts['mod_name']) - handler.exploit_simple(handler_opts['options']) + handler.exploit_simple(handler_opts['mod_options']) end end