Using the Ronin CLI - Text

Table of Contents

entropy

The ronin entropy command extracts high entropy text, such as API keys or passwords:

ronin entropy -e 5.0 index.html

grep

The ronin grep command is similar to the grep command, but has options for common patterns:

ronin grep --hash index.html
ronin grep --host index.html
ronin grep --url index.html

extract

The ronin extract command is similar to the ronin grep command, but instead of printing the matched text it will only print the matched text:

ronin extract --hash index.html
ronin extract --host index.html
ronin extract --url index.html

typo

The ronin typo command allows generating typos for a given word:

$ ronin typo microsoft
microssoft

The ronin typo also allows enumerating over every typo variation of a word:

$ ronin typo --enum microsoft
microosoft
microsooft
microssoft

homoglyph

The ronin homoglyph command allows generating homoglyph variations of a given word:

$ ronin homoglyph CEO
CEO

The ronin homoglyph also allows enumerating over every homoglyph variation of a word:

$ ronin homoglyph --enum CEO
ϹEO
СEO
ⅭEO
CEO
CΕO
CЕO
CEO
CEΟ
CEО
CEO

syntax-highlight

The ronin syntax-highlight command allows syntax highlighting a given file and outputting it with ANSI coloring:

ronin highlight index.html