diff --git a/modules/host/hook_default_browser/module.rb b/modules/host/hook_default_browser/module.rb index 00e3318cf..ca04a2830 100644 --- a/modules/host/hook_default_browser/module.rb +++ b/modules/host/hook_default_browser/module.rb @@ -33,11 +33,11 @@ class Hook_default_browser < BeEF::Core::Command hook_uri = "http://#{configuration.get("beef.http.host")}:#{configuration.get("beef.http.port")}/demos/report.html" # A new pdf file containg the actual hook URI instead of the dummy token. - configured_hook_file = File.open("./modules/host/hook_default/bounce_to_ie_configured.pdf","w") + configured_hook_file = File.open("./modules/host/hook_default_browser/bounce_to_ie_configured.pdf","w") # The original pdf file contains a token that will get replaced during the initialization with # the actual hook URI of beef. Note that the hook URI is accessed via the DNS name. - File.open('./modules/host/hook_default/bounce_to_ie.pdf',"r") { |original_hook_file| + File.open('./modules/host/hook_default_browser/bounce_to_ie.pdf',"r") { |original_hook_file| original_hook_file.each_line { |line| # If the line includes the hook token, then replace it with the actual hook URI if(line.include? '') @@ -52,7 +52,7 @@ class Hook_default_browser < BeEF::Core::Command #Bind the configured PDF file to the web server. - BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind('/modules/host/hook_default/bounce_to_ie_configured.pdf', '/report', 'pdf', -1); + BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind('/modules/host/hook_default_browser/bounce_to_ie_configured.pdf', '/report', 'pdf', -1); end