Set back to target_uri.to_s per original module
parent
cffedd0c97
commit
94120604f2
|
@ -58,7 +58,7 @@ class Metasploit4 < Msf::Auxiliary
|
||||||
end
|
end
|
||||||
|
|
||||||
def run_host(ip)
|
def run_host(ip)
|
||||||
uri = normalize_uri(target_uri.path)
|
uri = normalize_uri(target_uri.to_s)
|
||||||
res = send_request_cgi({
|
res = send_request_cgi({
|
||||||
'uri' => uri,
|
'uri' => uri,
|
||||||
'method' => 'GET'})
|
'method' => 'GET'})
|
||||||
|
@ -72,7 +72,7 @@ class Metasploit4 < Msf::Auxiliary
|
||||||
end
|
end
|
||||||
|
|
||||||
def accessfile(rhost)
|
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")
|
print_status("#{rhost}:#{rport} Connecting to Crowd SOAP Interface")
|
||||||
|
|
||||||
soapenv = 'http://schemas.xmlsoap.org/soap/envelope/'
|
soapenv = 'http://schemas.xmlsoap.org/soap/envelope/'
|
||||||
|
|
Loading…
Reference in New Issue