From 7162765b57064ae1b54e7f4ced20966b4c01b36d Mon Sep 17 00:00:00 2001 From: David Maloney Date: Mon, 21 Aug 2017 15:27:22 -0500 Subject: [PATCH] load extapi in domain_hashdump domain hashdump always needs to load extapi to work --- modules/post/windows/gather/credentials/domain_hashdump.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/post/windows/gather/credentials/domain_hashdump.rb b/modules/post/windows/gather/credentials/domain_hashdump.rb index 4430b6584d..e8f949249d 100644 --- a/modules/post/windows/gather/credentials/domain_hashdump.rb +++ b/modules/post/windows/gather/credentials/domain_hashdump.rb @@ -12,6 +12,7 @@ class MetasploitModule < Msf::Post include Msf::Post::Windows::Priv include Msf::Post::Windows::ShadowCopy include Msf::Post::File + include Msf::Post::Windows::ExtAPI def initialize(info={}) super(update_info(info, @@ -115,6 +116,7 @@ class MetasploitModule < Msf::Post unless session_compat? return false end + load_extapi return true end