6379 - Redis
Redis is an in-memory data structure project implementing a distributed, in-memory key-value database with optional durability. Redis supports different kinds of abstract data structures, such as stri
Nmap
Scan:
root@attackdefense:~# nmap --script redis-info -p 6379 192.168.88.3
Starting Nmap 7.70 ( https://nmap.org ) at 2019-10-30 12:26 UTC
Nmap scan report for target-1 (192.168.88.3)
Host is up (0.000060s latency).
PORT STATE SERVICE
6379/tcp open redis
| redis-info:
| Version: 5.0.4
| Operating System: Linux 4.15.0-64-generic x86_64
| Architecture: 64 bits
| Process ID: 9
| Used CPU (sys): 0.129580
| Used CPU (user): 0.117239
| Connected clients: 3
| Connected slaves: 0
| Used memory: 876.89K
| Role: master
| Bind addresses:
| 0.0.0.0
| Active channels:
| notifications
| Client connections:
| 127.0.0.1
|_ 192.168.88.2
MAC Address: 02:42:C0:A8:58:03 (Unknown) Connect:
Commands
INFO
Show KEYS
KEYS *
Retrieve a key:
get FLAG
Resources:
https://averagesecurityguy.github.io/code/pentest/2015/09/17/pentesting-redis-servers/
Last updated
Was this helpful?