We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 258bf07 + 61890b5 commit d78dc1eCopy full SHA for d78dc1e
lib/net/ldap/filter.rb
@@ -645,8 +645,15 @@ def match(entry)
645
646
##
647
# Converts escaped characters (e.g., "\\28") to unescaped characters
648
+ # @note slawson20170317: Don't attempt to unescape 16 byte binary data which we assume are objectGUIDs
649
+ # The binary form of 5936AE79-664F-44EA-BCCB-5C39399514C6 triggers a BINARY -> UTF-8 conversion error
650
def unescape(right)
- right.to_s.gsub(/\\([a-fA-F\d]{2})/) { [$1.hex].pack("U") }
651
+ right = right.to_s
652
+ if right.length == 16 && right.encoding == Encoding::BINARY
653
+ right
654
+ else
655
+ right.to_s.gsub(/\\([a-fA-F\d]{2})/) { [$1.hex].pack("U") }
656
+ end
657
end
658
private :unescape
659
0 commit comments