Skip to content

Commit 9412060

Browse files
author
Chris John Riley
committed
Set back to target_uri.to_s per original module
1 parent cffedd0 commit 9412060

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/auxiliary/scanner/http/atlassian_crowd_fileaccess.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def rport
5858
end
5959

6060
def run_host(ip)
61-
uri = normalize_uri(target_uri.path)
61+
uri = normalize_uri(target_uri.to_s)
6262
res = send_request_cgi({
6363
'uri' => uri,
6464
'method' => 'GET'})
@@ -72,7 +72,7 @@ def run_host(ip)
7272
end
7373

7474
def accessfile(rhost)
75-
uri = normalize_uri(target_uri.path)
75+
uri = normalize_uri(target_uri.to_s)
7676
print_status("#{rhost}:#{rport} Connecting to Crowd SOAP Interface")
7777

7878
soapenv = 'http://schemas.xmlsoap.org/soap/envelope/'

0 commit comments

Comments
 (0)