Fix issues #757 : normalizing mount points for web_cloner in case they contain params.

This commit is contained in:
antisnatchor
2012-10-11 11:21:06 +01:00
parent 8e9f82ff2a
commit aad6228ea8

View File

@@ -103,6 +103,13 @@ module BeEF
file_path = @cloned_pages_dir + output_mod # the path to the cloned_pages directory where we have the HTML to serve
# if the user wants to clone http://a.com/login.jsp?cas=true&ciccio=false , split the URL mounting only the path.
# then the phishing link can be used anyway with all the proper parameters to looks legit.
if mount.include?("?")
mount = mount.split("?").first
print_info "Normalizing mount point. You can still use params for the phishing link."
end
# Check if the original URL can be framed
frameable = is_frameable(url)