red-tldr is a lightweight text search tool, which is used to help red team staff quickly find the commands and key points they want to execute, so it is more suitable for use by red team personnel with certain experience.
English | 中文简体 |
red-tldr 是一个轻量级的文本搜索工具,它用于帮助红队工作人员快速的寻找到想要执行的命令、关键点,因此它比较适用于有一定经验的红队人员使用。
在我的日常工作中,需要记忆很多命令,我多数只知道它的开头,人的记忆是有限的,而通过搜索引擎寻找我想要的内容又很繁琐,我想我们需要一个像Linux那样的man
命令。
$ git clone https://github.com/Rvn0xsy/red-tldr
$ cd red-tldr
$ go build
下载 Release 版本。
$ tar -zxvf red-tldr_latest_linux_amd64.tar.gz
$ ./red-tldr
建议将red-tldr加入你的环境变量中进行使用
$ red-tldr search mimikatz
$ red-tldr search mi
Select Number : 0
当存在多个结果时,可以跟进数字索引决定结果输出
$ red-tldr search update
$ red-tldr update
默认配置文件路径:HOME/.red-tldr/config.toml
[red-tldr]
index-update = false
github-update = false
path = ""
配置项 | 描述 | 类型 |
---|---|---|
index-update | 数据库索引文件是否自动更新 | Bool |
github-update | 数据库文件是否从github自动更新 | Bool |
path | 数据库文件存放路径 | string |
red-tldr 是一个免费且开源的项目,我们欢迎任何人为其开发和进步贡献力量。
提醒:和项目相关的问题最好在 issues 中反馈,这样方便其他有类似问题的人可以快速查找解决方法,并且也避免了我们重复回答一些问题。