Pentesting Redis 6379

Redis is an open-source in-memory storage, used as a distributed, in-memory key–value database, cache and message broker, with optional durability.

Install Redis Locally Using Docker (Latest Version)

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

Last updated