Skip to main content
Reedemer
  1. Posts/

Reedemer

·225 words·2 mins·
V1c70r_n00b
Author
V1c70r_n00b
Isaiah 6:8
Table of Contents

Introduction
#

Untitled.png

Task 1
#

Which TCP port is open on the machine

image.png

6379

Task 2
#

Which service is running on the port that is open on the machine?

image.png

Redis

Task 3
#

What type of database is Redis? Choose from the following options: (i) In-memory Database, (ii) Traditional Database

image.png

in-memory

What is Redis Explained? | IBM

Task 4
#

Which command-line utility is used to interact with the Redis server? Enter the program name you would enter into the terminal without any arguments.

image.png

https://redis.io/docs/latest/operate/rs/references/cli-utilities/redis-cli/

Task 5
#

Which flag is used with the Redis command-line utility to specify the hostname?

image.png

-h

the tool I used is a simplified version of man, a tool used to give more details about a cli tool,

below is the explanation of the tool

image.png

Task 6
#

Once connected to a Redis server, which command is used to obtain the information and statistics about the Redis server?

image.png

info

Task 7
#

What is the version of the Redis server being used on the target machine?

image.png

5.0.7

Task 8
#

Which command is used to select the desired database in Redis?

image.png

https://redis.io/docs/latest/commands/

Task 9
#

How many keys are present inside the database with index 0?

image.png

4

Task 10
#

Which command is used to obtain all the keys in a database?

image.png

https://redis.io/docs/latest/commands/keys/

Task 11
#

Submit root flag

image.png

Related