Pentesting NetworksPentesting Ports
Port 6379/Redis
Pentesting-Ports
Table of Contents
Enumerating
https://redis.io/docs/connect/cli/
Redis enumeration
We can query the system for information.
Port Scanning
Default Credentials
Redis Commands
Example Commands:
INFO
: Retrieve server information.KEYS *
: List all keys in the Redis database.CONFIG GET *
: Retrieve all configuration parameters.DBSIZE
: Get the number of keys in the database.FLUSHALL
: Flush all keys from the database.