Skip to content

Commit 511a7f8

Browse files
committed
send_request_cgi already URI encodes
1 parent 5d8167d commit 511a7f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/auxiliary/voip/cisco_cucdm_callforward.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def initialize(info={})
4747

4848
def run
4949
uri = normalize_uri(target_uri.to_s)
50-
mac = Rex::Text.uri_encode(datastore["MAC"])
51-
forward_to = Rex::Text.uri_encode(datastore["FORWARDTO"])
50+
mac = datastore["MAC"]
51+
forward_to = datastore["FORWARDTO"]
5252

5353
print_status("#{peer} - Getting fintnumbers and display names of the IP phone")
5454

0 commit comments

Comments
 (0)