Ronin Command Examples
Example commands for Ronin.
-
Start a UDP Proxy:
$ ronin net:proxy --port 53 --server 4.2.2.1 --udp --hexdump
-
Start a TCP Proxy:
$ ronin net:proxy --port 8080 --server google.com:80
-
Fuzzing a file:
$ ronin fuzzer -i request.txt -o bad.txt -r unix_path:bad_strings
-
Import URLs from a file:
$ ronin urls --import urls.txt
-
Import IP addresses from a file:
$ ronin ips --import ips.txt
-
Import hostnames from a file:
$ ronin hosts --import hosts.txt
-
Import email addresses from a file:
$ ronin emails --import emails.txt
-
Generate a Wordlist using a word template:
$ ronin wordlist alpha:5 numeric:1-3
-
Build a Wordlist from text (with l337 speak mutations):
$ ronin wordlist -i text.txt -m a:@ -m e:3 -m o:0
-
Update all previously installed Ronin Repositories:
$ ronin update
-
Jump right into Ruby with Ronin pre-loaded:
$ ronin >> ['r', 'u', 'b', 'y', '!'].join => "ruby!"
-
Install a Ronin Repository:
$ ronin install https://github.com/someuser/repo.git
-
Generate a skeleton Ronin Repository:
$ ronin-gen repository my-repo --license MIT \ --description "Overlay for work stuff."