# Cis Ubuntu1204 V110 5 1 3

> Ensure rsh client is not installed

- Skill: `cyberstrikeus/cis-ubuntu1204-v110-5-1-3` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-ubuntu1204-v110-5-1-3`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-ubuntu1204-v110-5-1-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-ubuntu1204-v110-5-1-3

---


# 5.1.3 Ensure rsh client is not installed (Scored)

## Profile Applicability

- Level 1

## Description

The `rsh` package contains the client commands for the rsh services.

## Rationale

These legacy clients contain numerous security exposures and have been replaced with the more secure SSH package. Even if the server is removed, it is best to ensure the clients are also removed to prevent users from inadvertently attempting to use these commands and therefore exposing their credentials. Note that removing the `rsh` package removes the clients for `rsh`, `rcp` and `rlogin`.

## Audit Procedure

### Using Command Line

Run the following commands:

```bash
dpkg -s rsh-client
dpkg -s rsh-redone-client
```

## Expected Result

Ensure package status is not-installed or dpkg returns no info is available for both.

## Remediation

### Using Command Line

Uninstall the `rsh-client` and `rsh-reload-client` packages:

```bash
apt-get purge rsh-client rsh-reload-client
```

## Default Value

Not installed by default on Ubuntu 12.04 LTS Server.

## References

- CIS Ubuntu 12.04 LTS Server Benchmark v1.1.0

## Profile

Level 1 - Scored

