📂 Enumeration
1. Redis Enumeration
I used the redis-cli tool to interact with the target server.
Command:
redis-cli -h 10.129.80.36Observation:
The server allowed connection without a password. I used the info command to gather details about the server.

2. Database Investigation
I checked the available databases and keys.
Commands:
# Gather info
info
# Select the database (db0 usually)
select 0
# List all keys
keys *Next Step