当前位置: 首页 > news >正文

HTB Redeemer

Redis

RedisRemote Dictionary Server)是一个开源的内存型非关系型(NoSQL)键值对数据库,以高性能、低延迟和灵活性著称,广泛用于缓存、会话管理和实时数据处理。

核心特点
  • 内存存储:数据存储在内存,读写速度极快(微秒级)。
  • 键值存储:支持多种数据类型,如字符串、哈希、列表、集合、有序集合等。
  • 持久化:支持将数据保存到磁盘(RDB 快照或 AOF 日志)。
  • 高可用性:支持主从复制、哨兵(Sentinel)和集群(Cluster)模式。
  • 多功能:可用作数据库、缓存、消息队列等。

Which TCP port is open on the machine?

  • 6379

计算机上打开的端口上运行的是哪个服务?

  • redis

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

  • In-memory Database

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.

  • redis-cli

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

  • -h

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

  • info

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

  • 5.0.7

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

  • select
  • SELECT 命令用于切换到指定的数据库(Redis 默认支持多个数据库,编号从 0 开始,默认使用 db0)。
SELECT 1
OK

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

  • info keyspace
  • keys=4,expires=0,avg_ttl=0:描述 db0 的键数量、过期键数量和平均生存时间。

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

  • keys *

Submit root flag

  • 在上一个命令之后输入get flag即可
http://www.xdnf.cn/news/1021915.html

相关文章:

  • 服务自动添加实例工具
  • 轻量级密码算法CHAM的python实现
  • 2.线性表的链式存储-链表
  • 【网关】互联网公司的接入网关和业务网关怎么设计
  • 期货反向跟单—盘后注意事项(二)管理事项
  • 企业司法涉诉API (QYGL8271) 技术文档:原始字段全解与风控应用 | 天远API
  • 将 App 安装到 iPhone 真机上测试
  • 【jmeter】报告怎么看
  • 提升开发思维的设计模式(上)
  • 行为模式-迭代器模式
  • JVM常见面试题
  • redis-7.4.4使用
  • 详解deeplabv3+改进思路
  • conda pack迁出环境异常
  • AKS升级路线最佳实践方案
  • dockercompose部署应用
  • 实战案例-JESD204B 多器件同步
  • 协同开发中的移动端网页调试流程:一次团队实战的经验总结(含WebDebugX)
  • Unity 接入抖音小游戏一
  • linux 黑马 第1-2章
  • ELK日志采集系统
  • 通过iframe使用Jupyter notebook
  • shell、bash、cmd、git 和 PowerShell 的区别与关系的详细解析
  • 吃透 Golang 基础:函数
  • 混合云战略规划深度解析:多云管理的技术架构与治理框架
  • 动态规划: 背包DP大合集
  • 【android bluetooth 框架分析 04】【bt-framework 层详解 7】【AdapterProperties介绍】
  • 触觉智能RK3576核心板,工业应用之4K超高清HDMI IN视频输入
  • 基于Python的二手房源信息爬取与分析的设计和实现,7000字论文编写
  • 改写爬虫, unsplash 图片爬虫 (网站改动了,重写爬虫)