04.REDEEMER (REDIS DB - ANONYMOUS ACCESS)
root@oco:~$ sudo openvpn ~/Downloads/starting_point.ovpn
ENUMERATE SERVICES
root@htb:~$ nmap -sV -T4 10.129.11.133 -p-
PORT STATE SERVICE VERSION
6379/tcp open redis Redis key-value store 5.0.7
VULNERABILITY SCANNING
root@htb:~$ nmap -sV -sC -T4 10.129.11.133 -p 6379
PORT STATE SERVICE VERSION
6379/tcp open redis Redis key-value store 5.0.7
* the -SC runs the default set of Nmap scripts (NSE scripts), which typically include
scripts for service enumeration, version detection, and other basic checks.
root@htb:~$ sudo nmap --script=vuln 10.129.11.133 -p 6379
6379/tcp open redis
* the --script=vuln will run scripts that focus specifically on detecting known
vulnerabilities in the service running on port 6379
- e.g., weak configurations, or known vulnerabilities in the redis service
- if no results are found then the service may be fully patched!
FOOTHOLD/COMPROMISE
Last updated