A flaw was found in sssd. A local unprivileged user could send a specially crafted request with a zero-length body to the Network Security Services (NSS) responder. This could lead to a denial-of-service condition, causing the NSS responder to become unstable or terminate. This vulnerability affects the availability of the system responder.
To mitigate this issue, restrict access to the NSS responder UNIX socket or disable the NSS responder if it is not required. The NSS responder can be disabled by editing the /etc/sssd/sssd.conf file and removing nss from the services line in the [sssd] section. After modifying the configuration, restart the SSSD service for the changes to take effect. Disabling the NSS responder may impact local user and group resolution.
Example:
```bash
<h1>Remove 'nss' from the services line in /etc/sssd/sssd.conf</h1>
<h1>Before: services = nss, pam, autofs</h1>
<h1>After: services = pam, autofs</h1>
sudo systemctl restart sssd
``
Warning: Restarting thesssd` service will temporarily interrupt authentication and authorization services.