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.
In my daily work, I need to memorize a lot of commands. Most of me only know the beginning of it. Human memory is limited. It is tedious to find what I want through search engines. I think we need a Linux-like one. man
command.
The new version already supports automatic update of the database!
$ brew install red-tldr
$ git clone https://github.com/Rvn0xsy/red-tldr
$ cd red-tldr
$ go build
# yaourt or yay https://aur.archlinux.org/packages/red-tldr
$ sudo pacman -S red-tldr
Download Release version.
$ tar -zxvf red-tldr_latest_linux_amd64.tar.gz
$ ./red-tldr
It is recommended to add red-tldr to the environment variables of the current user
- Keyword Search
$ red-tldr mimikatz
- Fuzzy matching
$ red-tldr mi
Select Number : 0
When there are multiple results, you can follow the digital index to determine the result output
- Update index file
$ red-tldr update
- Update database file
$ red-tldr upgrade
Default configuration file path:HOMEDIR/.red-tldr/config.toml
[red-tldr]
index-update = false
github-update = false
path = ""
color = true
Configuration item | Description | Type |
---|---|---|
index-update | Whether the database index file is automatically updated | Bool |
github-update | Whether the database file is automatically updated from github | Bool |
path | Database file storage path | String |
color | Print highlight command | Bool |
Interested in getting involved? We would like to help you!
- Take a look at our issues list and consider sending a Pull Request to dev branch.
- If you want to add a new feature, please create an issue first to describe the new feature, as well as the implementation approach. Once a proposal is accepted, create an implementation of the new features and submit it as a pull request.
- Sorry for my poor English. Improvements for this document are welcome, even some typo fixes.
- If you have great ideas, send an email to rvn0xsy@gmail.com.