Set back to target_uri.to_s per original module

bug/bundler_fix
Chris John Riley 2012-11-11 12:07:27 +01:00
parent cffedd0c97
commit 94120604f2
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ class Metasploit4 < Msf::Auxiliary
end
def run_host(ip)
uri = normalize_uri(target_uri.path)
uri = normalize_uri(target_uri.to_s)
res = send_request_cgi({
'uri' => uri,
'method' => 'GET'})
@ -72,7 +72,7 @@ class Metasploit4 < Msf::Auxiliary
end
def accessfile(rhost)
uri = normalize_uri(target_uri.path)
uri = normalize_uri(target_uri.to_s)
print_status("#{rhost}:#{rport} Connecting to Crowd SOAP Interface")
soapenv = 'http://schemas.xmlsoap.org/soap/envelope/'