We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fdea5f commit 7d2fa9eCopy full SHA for 7d2fa9e
modules/exploits/freebsd/misc/citrix_netscaler_soap_bof.rb
@@ -77,7 +77,7 @@ def initialize(info={})
77
def check
78
res = send_request_cgi({
79
'method' => 'GET',
80
- 'uri' => normalize_uri(target_uri.path.to_s)
+ 'uri' => normalize_uri(target_uri.path)
81
})
82
83
if res && res.code == 200 && res.body && res.body =~ /Server Request Handler.*No body received/m
@@ -135,7 +135,7 @@ def send_request_soap
135
136
send_request_cgi({
137
'method' => 'POST',
138
- 'uri' => normalize_uri(target_uri.path.to_s),
+ 'uri' => normalize_uri(target_uri.path),
139
'data' => soap
140
}, 1)
141
end
0 commit comments