Skip to content

Commit 1e8547a

Browse files
committed
Fix rfx2696 cookie, it should use the to_ber_bin method because to_ber will try to encode to UTF-8 first and break the cookie's representation of binary data
1 parent 8ef75a0 commit 1e8547a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/net/ldap/connection.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def search(args = nil)
379379
# searches when the size limit is larger than 126. We're going to have
380380
# to do a root-DSE record search and not do a paged search if the LDAP
381381
# doesn't support it. Yuck.
382-
rfc2696_cookie = [126, ""]
382+
rfc2696_cookie = [126.to_ber, "".to_ber_bin]
383383
result_pdu = nil
384384
n_results = 0
385385

@@ -428,7 +428,7 @@ def search(args = nil)
428428
Net::LDAP::LDAPControls::PAGED_RESULTS.to_ber,
429429
# Criticality MUST be false to interoperate with normal LDAPs.
430430
false.to_ber,
431-
rfc2696_cookie.map(&:to_ber).to_ber_sequence.to_s.to_ber,
431+
[rfc2696_cookie[0].to_ber, rfc2696_cookie[1].to_ber_bin].to_ber_sequence.to_s.to_ber,
432432
].to_ber_sequence if paged
433433
controls << ber_sort if ber_sort
434434
controls = controls.empty? ? nil : controls.to_ber_contextspecific(0)
@@ -494,7 +494,7 @@ def search(args = nil)
494494
if c.value and c.value.length > 0
495495
cookie = c.value.read_ber[1]
496496
if cookie and cookie.length > 0
497-
rfc2696_cookie[1] = cookie
497+
rfc2696_cookie[1] = cookie.to_ber_bin
498498
more_pages = true
499499
end
500500
end

0 commit comments

Comments
 (0)