| Summary: | Possible to specify invalid SASL mechanism in nsslapd-allowed-sasl-mechanisms | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 7 | Reporter: | Ján Rusnačko <jrusnack> |
| Component: | 389-ds-base | Assignee: | Rich Megginson <rmeggins> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Sankar Ramalingam <sramling> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 7.0 | CC: | mkubik, mreynolds, nhosoi, nkinder |
| Target Milestone: | rc | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | 389-ds-base-1.3.1.6-12.el7 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2014-06-13 09:41:29 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Ján Rusnačko
2013-11-25 21:07:01 UTC
Upstream ticket: https://fedorahosted.org/389/ticket/47614 Fixed upstream $ cat invalid_sasl_mech_name.sh #!/bin/bash LDAPhost=localhost LDAPport=2222 ROOTDN="cn=directory manager" ROOTDNPW=Secret123 ldapmodify -x -h $LDAPhost -p $LDAPport -D "$ROOTDN" -w "$ROOTDNPW" <<EOF dn: cn=config changetype: modify replace: nsslapd-allowed-sasl-mechanisms nsslapd-allowed-sasl-mechanisms: GSSAPI +ľščť DIGEST-MD5 EOF ldapmodify -x -h $LDAPhost -p $LDAPport -D "$ROOTDN" -w "$ROOTDNPW" <<EOF dn: cn=config changetype: modify replace: nsslapd-allowed-sasl-mechanisms nsslapd-allowed-sasl-mechanisms: GSSAPI, +ľščť, DIGEST-MD5 EOF ldapmodify -x -h $LDAPhost -p $LDAPport -D "$ROOTDN" -w "$ROOTDNPW" <<EOF dn: cn=config changetype: modify replace: nsslapd-allowed-sasl-mechanisms nsslapd-allowed-sasl-mechanisms: lowercase EOF ldapmodify -x -h $LDAPhost -p $LDAPport -D "$ROOTDN" -w "$ROOTDNPW" <<EOF dn: cn=config changetype: modify replace: nsslapd-allowed-sasl-mechanisms nsslapd-allowed-sasl-mechanisms: MECHANISM-WITH-TOO-LONG-NAME EOF $ ./invalid_sasl_mech_name.sh modifying entry "cn=config" ldap_modify: Server is unwilling to perform (53) modifying entry "cn=config" ldap_modify: Server is unwilling to perform (53) modifying entry "cn=config" ldap_modify: Server is unwilling to perform (53) modifying entry "cn=config" ldap_modify: Server is unwilling to perform (53) Bug verified on 389-ds-base-1.3.1.6-15. Tests in sasl suite sasl_allowed_mapping_[1..13] This request was resolved in Red Hat Enterprise Linux 7.0. Contact your manager or support representative in case you have further questions about the request. |