Robert Levas created AMBARI-11362:
-------------------------------------
Summary: Creating principals in AD when special characters are
involved causes failures
Key: AMBARI-11362
URL: https://issues.apache.org/jira/browse/AMBARI-11362
Project: Ambari
Issue Type: Bug
Components: ambari-server
Affects Versions: 2.0.0
Reporter: Robert Levas
Assignee: Robert Levas
Priority: Critical
Fix For: 2.1.0
Creating principals in AD when special characters are involved causes failures.
The following characters in the CN need to be escaped:
{noformat}
/ , \ # + < > ; " =
{noformat}
*Note:* javax.naming.ldap.Rdn will properly escape relative distinguished name
parts.
The following characters in the samAccountName need to be removed or replaced:
{noformat}
[ ] : ; | = + * ? < > / \
{noformat}
*Note:* This needs to be done explicitly within the attributes set if a
relevant entry exists.
{code}
// Replace the following _illegal_ characters: [ ] : ; | = + * ? < > / \
value =
value.toString().replaceAll("\\[|\\]|\\:|\\;|\\||\\=|\\+|\\*|\\?|\\<|\\>|\\/|\\\\",
"_");
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)