Skip to content

Commit

Permalink
Land #18710, Fix uninitialized exploit driver exception
Browse files Browse the repository at this point in the history
  • Loading branch information
adfoster-r7 authored Jan 17, 2024
2 parents 5478806 + 1ac2b3b commit f5691e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/msf/base/simple/exploit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def self.exploit_simple(oexploit, opts, &block)
exploit.options.validate(exploit.datastore)

# Start it up
driver = ExploitDriver.new(exploit.framework)
driver = Msf::ExploitDriver.new(exploit.framework)

# Keep the handler of driver running if exploiting multiple targets.
driver.keep_handler = true if opts['multi']
Expand Down

0 comments on commit f5691e7

Please sign in to comment.