Redis Commander

PassAudited by ClawScan on May 10, 2026.

Overview

This is a coherent local Redis Commander Docker helper, but users should notice that it starts a Redis admin UI with default credentials, a mutable Docker image tag, and reboot persistence.

Use this only for intended local development Redis instances. Before starting it on a shared or important machine, set strong COMMANDER_PASSWORD and REDIS_PASSWORD values, consider pinning the Docker image version, and stop the container when you are done.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If connected to the wrong Redis instance or used carelessly, Redis data in the local dev environment could be modified or removed.

Why it was flagged

The skill intentionally exposes an administrative Redis UI, which is purpose-aligned but can be used to view, change, or delete Redis keys.

Skill content
providing a web UI for Redis key inspection and management
Recommendation

Use it only against intended local-development Redis containers and be careful with destructive Redis Commander actions.

What this means

On shared machines or less isolated environments, default credentials could let another local user or process access the Redis Commander UI.

Why it was flagged

The artifacts disclose default credentials for the web UI and Redis connection; this is expected for the integration but weak if left unchanged.

Skill content
`COMMANDER_PASSWORD` | `admin` ... `REDIS_PASSWORD` | `redispass`
Recommendation

Override COMMANDER_PASSWORD and REDIS_PASSWORD with non-default values before using this outside a private local dev setup.

What this means

A future image update could change behavior or introduce vulnerabilities while still being used by the same skill command.

Why it was flagged

The Docker image is pulled by a mutable latest tag, so the code run in the container can change over time without a pinned digest or version.

Skill content
image: rediscommander/redis-commander:latest
Recommendation

Prefer pinning the Redis Commander image to a specific version or digest, especially in environments with important Redis data.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The Redis Commander UI may remain available on localhost after reboot until explicitly stopped.

Why it was flagged

The skill discloses persistent container behavior, which is appropriate for a local service but means it can continue running after the initial task.

Skill content
the container uses `restart: unless-stopped` and survives reboots
Recommendation

Run the stop command when finished, and check container status if you do not want the service to keep running.