# Cis Ubuntu1604 V200 1 8 3

> Ensure disable-user-list is enabled

- Skill: `cyberstrikeus/cis-ubuntu1604-v200-1-8-3` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu1604-v200-1-8-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu1604-v200-1-8-3/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-ubuntu1604-v200-1-8-3

---


# CIS Ubuntu Linux 16.04 LTS Benchmark v2.0.0 - 1.8.3

## Profile Applicability

- Level 1 - Server
- Level 1 - Workstation

## Description

GDM is the GNOME Display Manager which handles graphical login for GNOME based systems.

The `disable-user-list` option controls is a list of users is displayed on the login screen.

## Rationale

Displaying the user list eliminates half of the Userid/Password equation that an unauthorized person would need to log on.

## Audit Procedure

### Command Line

Run the following command to verify that disable-user-list is enabled:

```bash
grep -E '^\s*disable-user-list\s*=\s*true\b' /etc/gdm3/greeter.dconf-defaults
```

Expected output: `disable-user-list=true`

## Expected Result

The `disable-user-list` option should be set to `true` in the GDM configuration.

## Remediation

### Command Line

Edit or create the file `/etc/gdm3/greeter.dconf-defaults` and edit or add the following:

```
[org/gnome/login-screen]
banner-message-enable=true
banner-message-text='<banner message>'
disable-user-list=true
```

Run the following command to re-load GDM on the next login or reboot:

```bash
dpkg-reconfigure gdm3
```

## Additional Information

If a different GUI login service is in use and required on the system, consult your documentation to disable displaying the user list.

## Default Value

false

## References

None.

## CIS Controls

| Controls Version | Control                             |
| ---------------- | ----------------------------------- |
| v7               | 5.1 Establish Secure Configurations |

## Assessment Status

Automated

