> For the complete documentation index, see [llms.txt](https://notes.programmersecurity.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notes.programmersecurity.com/web-pentesting-stuff/pentesting-port-80-443/pentesting-redis-6379.md).

# Pentesting Redis 6379

## Install Redis Locally Using Docker (Latest Version)

```javascript
docker run -p 6379:6379 redis:latest //pull the latest Docker image of redis

docker ps //look at the running docker processes

docker exec -it <Container id> sh // run the shell on the container

redis-cli // get into the cli of redis on the container

```

<figure><img src="/files/NilGhhRMKIKQn5XH5dPx" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/XFevhf4WbV3YRiLHeqU3" alt=""><figcaption></figcaption></figure>
