ronin 2.0.5 → 2.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +3 -3
- data/.gitignore +1 -0
- data/.rubocop.yml +5 -1
- data/ChangeLog.md +56 -1
- data/Gemfile +66 -29
- data/README.md +162 -17
- data/Rakefile +9 -0
- data/data/completions/ronin +655 -0
- data/data/templates/dns_proxy.rb.erb +35 -0
- data/gemspec.yml +27 -13
- data/lib/ronin/cli/binary_template.rb +124 -0
- data/lib/ronin/cli/commands/archive.rb +104 -0
- data/lib/ronin/cli/commands/banner_grab.rb +2 -0
- data/lib/ronin/cli/commands/bitflip.rb +1 -1
- data/lib/ronin/cli/commands/bitsquat.rb +119 -0
- data/lib/ronin/cli/commands/cert_dump.rb +20 -4
- data/lib/ronin/cli/commands/cert_gen.rb +9 -19
- data/lib/ronin/cli/commands/cert_grab.rb +4 -3
- data/lib/ronin/cli/commands/completion.rb +115 -0
- data/lib/ronin/cli/commands/dns_proxy.rb +235 -0
- data/lib/ronin/cli/commands/http.rb +80 -8
- data/lib/ronin/cli/commands/ip.rb +101 -0
- data/lib/ronin/cli/commands/iprange.rb +25 -8
- data/lib/ronin/cli/commands/netcat.rb +2 -0
- data/lib/ronin/cli/commands/new/dns_listener.rb +37 -0
- data/lib/ronin/cli/commands/new/dns_proxy.rb +99 -0
- data/lib/ronin/cli/commands/new/exploit.rb +34 -0
- data/lib/ronin/cli/commands/new/http_listener.rb +37 -0
- data/lib/ronin/cli/commands/new/nokogiri.rb +33 -0
- data/lib/ronin/cli/commands/new/payload.rb +34 -0
- data/lib/ronin/cli/commands/new/project.rb +1 -1
- data/lib/ronin/cli/commands/new/script.rb +1 -1
- data/lib/ronin/cli/commands/new/web_app.rb +37 -0
- data/lib/ronin/cli/commands/new/web_server.rb +37 -0
- data/lib/ronin/cli/commands/new/web_spider.rb +37 -0
- data/lib/ronin/cli/commands/new.rb +3 -1
- data/lib/ronin/cli/commands/pack.rb +339 -0
- data/lib/ronin/cli/commands/public_suffix_list.rb +2 -0
- data/lib/ronin/cli/commands/tld_list.rb +2 -0
- data/lib/ronin/cli/commands/unarchive.rb +128 -0
- data/lib/ronin/cli/commands/unhexdump.rb +3 -1
- data/lib/ronin/cli/commands/unpack.rb +195 -0
- data/lib/ronin/cli/commands/url.rb +2 -0
- data/lib/ronin/cli/http_shell.rb +25 -0
- data/lib/ronin/cli.rb +10 -0
- data/lib/ronin/version.rb +1 -1
- data/man/ronin-archive.1.md +49 -0
- data/man/ronin-asn.1 +60 -77
- data/man/ronin-asn.1.md +25 -21
- data/man/ronin-banner-grab.1 +10 -21
- data/man/ronin-banner-grab.1.md +9 -5
- data/man/ronin-bitflip.1 +35 -61
- data/man/ronin-bitflip.1.md +30 -26
- data/man/ronin-bitsquat.1 +40 -0
- data/man/ronin-bitsquat.1.md +43 -0
- data/man/ronin-cert-dump.1 +44 -54
- data/man/ronin-cert-dump.1.md +18 -14
- data/man/ronin-cert-gen.1 +73 -94
- data/man/ronin-cert-gen.1.md +38 -34
- data/man/ronin-cert-grab.1 +29 -37
- data/man/ronin-cert-grab.1.md +12 -8
- data/man/ronin-completion.1 +78 -0
- data/man/ronin-completion.1.md +80 -0
- data/man/ronin-decode.1 +32 -63
- data/man/ronin-decode.1.md +29 -25
- data/man/ronin-decrypt.1 +42 -57
- data/man/ronin-decrypt.1.md +20 -16
- data/man/ronin-dns-proxy.1 +100 -0
- data/man/ronin-dns-proxy.1.md +70 -0
- data/man/ronin-dns.1 +10 -21
- data/man/ronin-dns.1.md +9 -5
- data/man/ronin-email-addr.1 +27 -40
- data/man/ronin-email-addr.1.md +15 -11
- data/man/ronin-encode.1 +93 -63
- data/man/ronin-encode.1.md +64 -26
- data/man/ronin-encrypt.1 +42 -57
- data/man/ronin-encrypt.1.md +20 -16
- data/man/ronin-entropy.1 +11 -21
- data/man/ronin-entropy.1.md +8 -4
- data/man/ronin-escape.1 +22 -46
- data/man/ronin-escape.1.md +22 -18
- data/man/ronin-extract.1 +74 -149
- data/man/ronin-extract.1.md +73 -69
- data/man/ronin-grep.1 +77 -155
- data/man/ronin-grep.1.md +76 -72
- data/man/ronin-help.1 +3 -14
- data/man/ronin-help.1.md +2 -2
- data/man/ronin-hexdump.1 +249 -265
- data/man/ronin-hexdump.1.md +93 -89
- data/man/ronin-highlight.1 +8 -18
- data/man/ronin-highlight.1.md +8 -4
- data/man/ronin-hmac.1 +17 -30
- data/man/ronin-hmac.1.md +14 -10
- data/man/ronin-homoglyph.1 +11 -22
- data/man/ronin-homoglyph.1.md +10 -6
- data/man/ronin-host.1 +23 -47
- data/man/ronin-host.1.md +22 -18
- data/man/ronin-http.1 +40 -69
- data/man/ronin-http.1.md +40 -30
- data/man/ronin-ip.1 +70 -80
- data/man/ronin-ip.1.md +44 -28
- data/man/ronin-iprange.1 +14 -22
- data/man/ronin-iprange.1.md +12 -5
- data/man/ronin-irb.1 +9 -17
- data/man/ronin-irb.1.md +7 -3
- data/man/ronin-md5.1 +13 -24
- data/man/ronin-md5.1.md +11 -7
- data/man/ronin-netcat.1 +25 -51
- data/man/ronin-netcat.1.md +25 -21
- data/man/ronin-new-dns-proxy.1 +45 -0
- data/man/ronin-new-dns-proxy.1.md +44 -0
- data/man/ronin-new-project.1 +32 -45
- data/man/ronin-new-project.1.md +11 -11
- data/man/ronin-new-script.1 +10 -22
- data/man/ronin-new-script.1.md +4 -4
- data/man/ronin-new.1 +56 -31
- data/man/ronin-new.1.md +48 -8
- data/man/ronin-pack.1 +977 -0
- data/man/ronin-pack.1.md +929 -0
- data/man/ronin-proxy.1 +37 -63
- data/man/ronin-proxy.1.md +29 -25
- data/man/ronin-public-suffix-list.1 +16 -32
- data/man/ronin-public-suffix-list.1.md +13 -9
- data/man/ronin-quote.1 +17 -36
- data/man/ronin-quote.1.md +17 -13
- data/man/ronin-rot.1 +26 -39
- data/man/ronin-rot.1.md +15 -11
- data/man/ronin-sha1.1 +13 -24
- data/man/ronin-sha1.1.md +11 -7
- data/man/ronin-sha256.1 +13 -24
- data/man/ronin-sha256.1.md +11 -7
- data/man/ronin-sha512.1 +13 -24
- data/man/ronin-sha512.1.md +11 -7
- data/man/ronin-strings.1 +30 -55
- data/man/ronin-strings.1.md +27 -23
- data/man/ronin-tips.1 +8 -16
- data/man/ronin-tips.1.md +7 -3
- data/man/ronin-tld-list.1 +16 -32
- data/man/ronin-tld-list.1.md +13 -9
- data/man/ronin-typo.1 +14 -28
- data/man/ronin-typo.1.md +13 -9
- data/man/ronin-typosquat.1 +15 -32
- data/man/ronin-typosquat.1.md +15 -11
- data/man/ronin-unarchive.1.md +41 -0
- data/man/ronin-unescape.1 +22 -46
- data/man/ronin-unescape.1.md +22 -18
- data/man/ronin-unhexdump.1 +81 -91
- data/man/ronin-unhexdump.1.md +16 -12
- data/man/ronin-unpack.1 +978 -0
- data/man/ronin-unpack.1.md +920 -0
- data/man/ronin-unquote.1 +17 -36
- data/man/ronin-unquote.1.md +17 -13
- data/man/ronin-url.1 +19 -40
- data/man/ronin-url.1.md +19 -15
- data/man/ronin-xor.1 +14 -28
- data/man/ronin-xor.1.md +13 -9
- data/man/ronin.1 +208 -29
- data/man/ronin.1.md +156 -11
- data/scripts/setup +58 -0
- metadata +162 -73
- data/lib/ronin/config.rb +0 -95
- /data/data/{new → templates}/project/.gitignore +0 -0
- /data/data/{new → templates}/project/.ruby-version.erb +0 -0
- /data/data/{new → templates}/project/Dockerfile.erb +0 -0
- /data/data/{new → templates}/project/Gemfile.erb +0 -0
- /data/data/{new → templates}/project/Rakefile +0 -0
- /data/data/{new → templates}/project/project.rb.erb +0 -0
- /data/data/{new → templates}/script.rb.erb +0 -0
data/man/ronin-strings.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-strings 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-strings - Prints all strings within a file/stream belonging to the given character set
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin strings` [*options*] [*FILE* ...]
|
@@ -11,71 +15,71 @@ Prints all strings within a file/stream belonging to the given character set.
|
|
11
15
|
## ARGUMENTS
|
12
16
|
|
13
17
|
*FILE*
|
14
|
-
|
18
|
+
: The optional path to the file to scan.
|
15
19
|
|
16
20
|
## OPTIONS
|
17
21
|
|
18
22
|
`-N`, `--numeric`
|
19
|
-
|
23
|
+
: Searches for numeric characters (0-9).
|
20
24
|
|
21
25
|
`-O`, `--octal`
|
22
|
-
|
26
|
+
: Searches for octal characters (0-7).
|
23
27
|
`-X`, `--upper-hex`
|
24
|
-
|
28
|
+
: Searches for uppercase hexadecimal (0-9, A-F).
|
25
29
|
|
26
30
|
`-x`, `--lower-hex`
|
27
|
-
|
31
|
+
: Searches for lowercase hexadecimal (0-9, a-f).
|
28
32
|
|
29
33
|
`-H`, `--hex`
|
30
|
-
|
34
|
+
: Searches for hexadecimal chars (0-9, a-f, A-F).
|
31
35
|
|
32
36
|
`--upper-alpha`
|
33
|
-
|
37
|
+
: Searches for uppercase alpha chars (A-Z).
|
34
38
|
|
35
39
|
`--lower-alpha`
|
36
|
-
|
40
|
+
: Searches for lowercase alpha chars (a-z).
|
37
41
|
|
38
42
|
`-A`, `--alpha`
|
39
|
-
|
43
|
+
: Searches for alpha chars (a-z, A-Z).
|
40
44
|
|
41
45
|
`--alpha-num`
|
42
|
-
|
46
|
+
: Searches for alpha-numeric chars (a-z, A-Z, 0-9).
|
43
47
|
|
44
48
|
`-P`, `--punct`
|
45
|
-
|
49
|
+
: Searches for punctuation chars.
|
46
50
|
|
47
51
|
`-S`, `--symbols`
|
48
|
-
|
52
|
+
: Searches for symbolic chars.
|
49
53
|
|
50
54
|
`-s`, `--space`
|
51
|
-
|
55
|
+
: Searches for all whitespace chars.
|
52
56
|
|
53
57
|
`-v`, `--visible`
|
54
|
-
|
58
|
+
: Searches for all visible chars.
|
55
59
|
|
56
60
|
`-p`, `--printable`
|
57
|
-
|
61
|
+
: Searches for all printable chars.
|
58
62
|
|
59
63
|
`-C`, `--control`
|
60
|
-
|
64
|
+
: Searches for all control chars (\x00-\x1f, \x7f).
|
61
65
|
|
62
66
|
`-a`, `--signed-ascii`
|
63
|
-
|
67
|
+
: Searches for all signed ASCII chars (\x00-\x7f).
|
64
68
|
|
65
69
|
`--ascii`
|
66
|
-
|
70
|
+
: Searches for all ASCII chars (\x00-\xff).
|
67
71
|
|
68
72
|
`-c`, `--chars` *CHARS*
|
69
|
-
|
73
|
+
: Searches for all chars in the custom char-set.
|
70
74
|
|
71
75
|
`-i`, `--include-chars` *CHARS*
|
72
|
-
|
76
|
+
: Include the additional chars to the char-set.
|
73
77
|
|
74
78
|
`-e`, `--exclude-chars` *CHARS*
|
75
|
-
|
79
|
+
: Exclude the additional chars from the char-set.
|
76
80
|
|
77
81
|
`-n`, `--min-length` *LEN*
|
78
|
-
|
82
|
+
: Minimum length of strings to print Defaults to 4.
|
79
83
|
|
80
84
|
## AUTHOR
|
81
85
|
|
@@ -83,4 +87,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
83
87
|
|
84
88
|
## SEE ALSO
|
85
89
|
|
86
|
-
ronin-extract(1)
|
90
|
+
[ronin-extract](ronin-extract.1.md)
|
data/man/ronin-tips.1
CHANGED
@@ -1,35 +1,27 @@
|
|
1
|
-
.\" Generated by kramdown-man 0.1
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
2
2
|
.\" https://github.com/postmodern/kramdown-man#readme
|
3
3
|
.TH ronin-tips 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-tips \- Prints a random tip on how to use ronin
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
.HP
|
8
|
+
.PP
|
8
9
|
\fBronin tips\fR \[lB]\fIoptions\fP\[rB]
|
9
|
-
.LP
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Prints a random tip for how to use \fBronin\fR\.
|
14
|
-
.LP
|
15
13
|
.SH OPTIONS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
|
-
\fB
|
15
|
+
\fB\-\-list\-categories\fR
|
19
16
|
Print all category names\.
|
20
|
-
.LP
|
21
17
|
.TP
|
22
|
-
\fB
|
18
|
+
\fB\-c\fR, \fB\-\-category\fR \fICATEGORY\fP
|
23
19
|
Prints a random tip from the given category\.
|
24
|
-
.LP
|
25
20
|
.TP
|
26
|
-
\fB
|
21
|
+
\fB\-s\fR, \fB\-\-search\fR \fITEXT\fP
|
27
22
|
Searches and prints all tips containing the given text\.
|
28
|
-
.LP
|
29
23
|
.SH AUTHOR
|
30
|
-
.LP
|
31
24
|
.PP
|
32
25
|
Postmodern
|
33
26
|
.MT postmodern\.mod3\[at]gmail\.com
|
34
27
|
.ME
|
35
|
-
.LP
|
data/man/ronin-tips.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-tips 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-tips - Prints a random tip on how to use ronin
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin tips` [*options*]
|
@@ -11,13 +15,13 @@ Prints a random tip for how to use `ronin`.
|
|
11
15
|
## OPTIONS
|
12
16
|
|
13
17
|
`--list-categories`
|
14
|
-
|
18
|
+
: Print all category names.
|
15
19
|
|
16
20
|
`-c`, `--category` *CATEGORY*
|
17
|
-
|
21
|
+
: Prints a random tip from the given category.
|
18
22
|
|
19
23
|
`-s`, `--search` *TEXT*
|
20
|
-
|
24
|
+
: Searches and prints all tips containing the given text.
|
21
25
|
|
22
26
|
## AUTHOR
|
23
27
|
|
data/man/ronin-tld-list.1
CHANGED
@@ -1,65 +1,49 @@
|
|
1
|
-
.\" Generated by kramdown-man 0.1
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
2
2
|
.\" https://github.com/postmodern/kramdown-man#readme
|
3
3
|
.TH ronin-tld-list 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-tld\-list \- Updates and parses the TLD list file
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
|
8
|
-
\fBronin tld-list\fR \[lB]\fIoptions\fP\[rB]
|
9
|
-
.LP
|
8
|
+
.PP
|
9
|
+
\fBronin tld\-list\fR \[lB]\fIoptions\fP\[rB]
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Updates and parses the TLD list file\.
|
14
|
-
.LP
|
15
13
|
.SH OPTIONS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
|
-
\fB
|
15
|
+
\fB\-v\fR, \fB\-\-verbose\fR
|
19
16
|
Enables verbose output\.
|
20
|
-
.LP
|
21
17
|
.TP
|
22
|
-
\fB
|
18
|
+
\fB\-u\fR, \fB\-\-update\fR
|
23
19
|
Updates the TLD list file\.
|
24
|
-
.LP
|
25
20
|
.TP
|
26
|
-
\fB
|
21
|
+
\fB\-U\fR, \fB\-\-url\fR \fIURL\fP
|
27
22
|
The URL to the TLD list\. Defaults to
|
28
|
-
\fBhttps
|
29
|
-
.LP
|
23
|
+
\fBhttps:\[sl]\[sl]data\.iana\.org\[sl]TLD\[sl]tlds\-alpha\-by\-domain\.txt\fR\.
|
30
24
|
.TP
|
31
|
-
\fB
|
25
|
+
\fB\-p\fR, \fB\-\-path\fR \fIFILE\fP
|
32
26
|
The Path to the TLD list file\. Defaults to
|
33
|
-
\fB
|
34
|
-
.LP
|
27
|
+
\fB\[ti]\[sl]\.cache\[sl]ronin\[sl]ronin\-support\[sl]tlds\-alpha\-by\-domain\.txt\fR if not given\.
|
35
28
|
.TP
|
36
|
-
\fB
|
29
|
+
\fB\-h\fR, \fB\-\-help\fR
|
37
30
|
Print help information
|
38
|
-
.LP
|
39
31
|
.SH ENVIRONMENT
|
40
|
-
.LP
|
41
32
|
.TP
|
42
33
|
\fIHOME\fP
|
43
34
|
Alternate location for the user\[cq]s home directory\.
|
44
|
-
.LP
|
45
35
|
.TP
|
46
36
|
\fIXDG\[ru]CONFIG\[ru]HOME\fP
|
47
|
-
Alternate location for the \fB
|
48
|
-
.LP
|
37
|
+
Alternate location for the \fB\[ti]\[sl]\.config\fR directory\.
|
49
38
|
.SH FILES
|
50
|
-
.LP
|
51
39
|
.TP
|
52
|
-
\fB
|
40
|
+
\fB\[ti]\[sl]\.cache\[sl]ronin\[sl]ronin\-support\[sl]tlds\-alpha\-by\-domain\.txt\fR
|
53
41
|
The location of the downloaded TLD list\.
|
54
|
-
.LP
|
55
42
|
.SH AUTHOR
|
56
|
-
.LP
|
57
43
|
.PP
|
58
44
|
Postmodern
|
59
45
|
.MT postmodern\.mod3\[at]gmail\.com
|
60
46
|
.ME
|
61
|
-
.LP
|
62
47
|
.SH SEE ALSO
|
63
|
-
.LP
|
64
48
|
.PP
|
65
|
-
ronin\-public\-suffix\-list(1)
|
49
|
+
.BR ronin\-public\-suffix\-list (1)
|
data/man/ronin-tld-list.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-tld-list 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-tld-list - Updates and parses the TLD list file
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin tld-list` [*options*]
|
@@ -11,34 +15,34 @@ Updates and parses the TLD list file.
|
|
11
15
|
## OPTIONS
|
12
16
|
|
13
17
|
`-v`, `--verbose`
|
14
|
-
|
18
|
+
: Enables verbose output.
|
15
19
|
|
16
20
|
`-u`, `--update`
|
17
|
-
|
21
|
+
: Updates the TLD list file.
|
18
22
|
|
19
23
|
`-U`, `--url` *URL*
|
20
|
-
|
24
|
+
: The URL to the TLD list. Defaults to
|
21
25
|
`https://data.iana.org/TLD/tlds-alpha-by-domain.txt`.
|
22
26
|
|
23
27
|
`-p`, `--path` *FILE*
|
24
|
-
|
28
|
+
: The Path to the TLD list file. Defaults to
|
25
29
|
`~/.cache/ronin/ronin-support/tlds-alpha-by-domain.txt` if not given.
|
26
30
|
|
27
31
|
`-h`, `--help`
|
28
|
-
|
32
|
+
: Print help information
|
29
33
|
|
30
34
|
## ENVIRONMENT
|
31
35
|
|
32
36
|
*HOME*
|
33
|
-
|
37
|
+
: Alternate location for the user's home directory.
|
34
38
|
|
35
39
|
*XDG_CONFIG_HOME*
|
36
|
-
|
40
|
+
: Alternate location for the `~/.config` directory.
|
37
41
|
|
38
42
|
## FILES
|
39
43
|
|
40
44
|
`~/.cache/ronin/ronin-support/tlds-alpha-by-domain.txt`
|
41
|
-
|
45
|
+
: The location of the downloaded TLD list.
|
42
46
|
|
43
47
|
## AUTHOR
|
44
48
|
|
@@ -46,4 +50,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
46
50
|
|
47
51
|
## SEE ALSO
|
48
52
|
|
49
|
-
ronin-public-suffix-list(1)
|
53
|
+
[ronin-public-suffix-list](ronin-public-suffix-list.1.md)
|
data/man/ronin-typo.1
CHANGED
@@ -1,61 +1,47 @@
|
|
1
|
-
.\" Generated by kramdown-man 0.1
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
2
2
|
.\" https://github.com/postmodern/kramdown-man#readme
|
3
3
|
.TH ronin-typo 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-typo \- Generates typos in words
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
.HP
|
8
|
+
.PP
|
8
9
|
\fBronin typo\fR \[lB]\fIoptions\fP\[rB] \[lB]\fIWORD\fP \.\.\.\[rB]
|
9
|
-
.LP
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Generates typos in words\.
|
14
|
-
.LP
|
15
13
|
.SH ARGUMENTS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
15
|
\fIWORD\fP
|
19
16
|
The optional word to typo\.
|
20
|
-
.LP
|
21
17
|
.SH OPTIONS
|
22
|
-
.LP
|
23
18
|
.TP
|
24
|
-
\fB
|
19
|
+
\fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
|
25
20
|
Optional file to process\.
|
26
|
-
.LP
|
27
21
|
.TP
|
28
|
-
\fB
|
22
|
+
\fB\-\-omit\-chars\fR
|
29
23
|
Toggles whether to omit repeated characters\.
|
30
|
-
.LP
|
31
24
|
.TP
|
32
|
-
\fB
|
25
|
+
\fB\-\-repeat\-chars\fR
|
33
26
|
Toggles whether to repeat single characters\.
|
34
|
-
.LP
|
35
27
|
.TP
|
36
|
-
\fB
|
28
|
+
\fB\-\-swap\-chars\fR
|
37
29
|
Toggles whether to swap certain common character pairs\.
|
38
|
-
.LP
|
39
30
|
.TP
|
40
|
-
\fB
|
31
|
+
\fB\-\-change\-suffix\fR
|
41
32
|
Toggles whether to change the suffix of words\.
|
42
|
-
.LP
|
43
33
|
.TP
|
44
|
-
\fB
|
34
|
+
\fB\-E\fR, \fB\-\-enum\fR
|
45
35
|
Enumerates over every possible typo of a word\.
|
46
|
-
.LP
|
47
36
|
.TP
|
48
|
-
\fB
|
37
|
+
\fB\-h\fR, \fB\-\-help\fR
|
49
38
|
Print help information\.
|
50
|
-
.LP
|
51
39
|
.SH AUTHOR
|
52
|
-
.LP
|
53
40
|
.PP
|
54
41
|
Postmodern
|
55
42
|
.MT postmodern\.mod3\[at]gmail\.com
|
56
43
|
.ME
|
57
|
-
.LP
|
58
44
|
.SH SEE ALSO
|
59
|
-
.LP
|
60
45
|
.PP
|
61
|
-
ronin\-bitflip
|
46
|
+
.BR ronin\-bitflip (1)
|
47
|
+
.BR ronin\-homoglyph (1)
|
data/man/ronin-typo.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-typo 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-typo - Generates typos in words
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin typo` [*options*] [*WORD* ...]
|
@@ -11,30 +15,30 @@ Generates typos in words.
|
|
11
15
|
## ARGUMENTS
|
12
16
|
|
13
17
|
*WORD*
|
14
|
-
|
18
|
+
: The optional word to typo.
|
15
19
|
|
16
20
|
## OPTIONS
|
17
21
|
|
18
22
|
`-f`, `--file` *FILE*
|
19
|
-
|
23
|
+
: Optional file to process.
|
20
24
|
|
21
25
|
`--omit-chars`
|
22
|
-
|
26
|
+
: Toggles whether to omit repeated characters.
|
23
27
|
|
24
28
|
`--repeat-chars`
|
25
|
-
|
29
|
+
: Toggles whether to repeat single characters.
|
26
30
|
|
27
31
|
`--swap-chars`
|
28
|
-
|
32
|
+
: Toggles whether to swap certain common character pairs.
|
29
33
|
|
30
34
|
`--change-suffix`
|
31
|
-
|
35
|
+
: Toggles whether to change the suffix of words.
|
32
36
|
|
33
37
|
`-E`, `--enum`
|
34
|
-
|
38
|
+
: Enumerates over every possible typo of a word.
|
35
39
|
|
36
40
|
`-h`, `--help`
|
37
|
-
|
41
|
+
: Print help information.
|
38
42
|
|
39
43
|
## AUTHOR
|
40
44
|
|
@@ -42,4 +46,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
42
46
|
|
43
47
|
## SEE ALSO
|
44
48
|
|
45
|
-
ronin-bitflip(1) ronin-homoglyph(1)
|
49
|
+
[ronin-bitflip](ronin-bitflip.1.md) [ronin-homoglyph](ronin-homoglyph.1.md)
|
data/man/ronin-typosquat.1
CHANGED
@@ -1,69 +1,52 @@
|
|
1
|
-
.\" Generated by kramdown-man 0.1
|
1
|
+
.\" Generated by kramdown-man 1.0.1
|
2
2
|
.\" https://github.com/postmodern/kramdown-man#readme
|
3
3
|
.TH ronin-typosquat 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-typosquat \- Finds typo squatted domains
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
.HP
|
8
|
+
.PP
|
8
9
|
\fBronin typosquat\fR \[lB]\fIoptions\fP\[rB] \[lB]DOMAIN \.\.\.\[rB]
|
9
|
-
.LP
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Finds typo squatted domains\.
|
14
|
-
.LP
|
15
13
|
.SH ARGUMENTS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
15
|
\fIDOMAIN\fP
|
19
16
|
A domain to check for typo squats\.
|
20
|
-
.LP
|
21
17
|
.SH OPTIONS
|
22
|
-
.LP
|
23
18
|
.TP
|
24
|
-
\fB
|
19
|
+
\fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
|
25
20
|
Optional file to read domains from\.
|
26
|
-
.LP
|
27
21
|
.TP
|
28
|
-
\fB
|
22
|
+
\fB\-\-omit\-chars\fR
|
29
23
|
Toggles whether to omit repeated characters\.
|
30
|
-
.LP
|
31
24
|
.TP
|
32
|
-
\fB
|
25
|
+
\fB\-\-repeat\-chars\fR
|
33
26
|
Toggles whether to repeat single characters\.
|
34
|
-
.LP
|
35
27
|
.TP
|
36
|
-
\fB
|
28
|
+
\fB\-\-swap\-chars\fR
|
37
29
|
Toggles whether to swap certain common character pairs\.
|
38
|
-
.LP
|
39
30
|
.TP
|
40
|
-
\fB
|
31
|
+
\fB\-\-change\-suffix\fR
|
41
32
|
Toggles whether to change the suffix of words\.
|
42
|
-
.LP
|
43
33
|
.TP
|
44
|
-
\fB
|
34
|
+
\fB\-A\fR, \fB\-\-has\-addresses\fR
|
45
35
|
Print typo squat domains with addresses\.
|
46
|
-
.LP
|
47
36
|
.TP
|
48
|
-
\fB
|
37
|
+
\fB\-r\fR, \fB\-\-registered\fR
|
49
38
|
Print typo squat domains that are already registered\.
|
50
|
-
.LP
|
51
39
|
.TP
|
52
|
-
\fB
|
40
|
+
\fB\-u\fR, \fB\-\-unregistered\fR
|
53
41
|
Print typo squat domains that can be registered\.
|
54
|
-
.LP
|
55
42
|
.TP
|
56
|
-
\fB
|
43
|
+
\fB\-h\fR, \fB\-\-help\fR
|
57
44
|
Print help information\.
|
58
|
-
.LP
|
59
45
|
.SH AUTHOR
|
60
|
-
.LP
|
61
46
|
.PP
|
62
47
|
Postmodern
|
63
48
|
.MT postmodern\.mod3\[at]gmail\.com
|
64
49
|
.ME
|
65
|
-
.LP
|
66
50
|
.SH SEE ALSO
|
67
|
-
.LP
|
68
51
|
.PP
|
69
|
-
ronin\-typo(1)
|
52
|
+
.BR ronin\-typo (1)
|
data/man/ronin-typosquat.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-typosquat 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-typosquat - Finds typo squatted domains
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin typosquat` [*options*] [DOMAIN ...]
|
@@ -11,36 +15,36 @@ Finds typo squatted domains.
|
|
11
15
|
## ARGUMENTS
|
12
16
|
|
13
17
|
*DOMAIN*
|
14
|
-
|
18
|
+
: A domain to check for typo squats.
|
15
19
|
|
16
20
|
## OPTIONS
|
17
21
|
|
18
22
|
`-f`, `--file` *FILE*
|
19
|
-
|
23
|
+
: Optional file to read domains from.
|
20
24
|
|
21
25
|
`--omit-chars`
|
22
|
-
|
26
|
+
: Toggles whether to omit repeated characters.
|
23
27
|
|
24
28
|
`--repeat-chars`
|
25
|
-
|
29
|
+
: Toggles whether to repeat single characters.
|
26
30
|
|
27
31
|
`--swap-chars`
|
28
|
-
|
32
|
+
: Toggles whether to swap certain common character pairs.
|
29
33
|
|
30
34
|
`--change-suffix`
|
31
|
-
|
35
|
+
: Toggles whether to change the suffix of words.
|
32
36
|
|
33
37
|
`-A`, `--has-addresses`
|
34
|
-
|
38
|
+
: Print typo squat domains with addresses.
|
35
39
|
|
36
40
|
`-r`, `--registered`
|
37
|
-
|
41
|
+
: Print typo squat domains that are already registered.
|
38
42
|
|
39
43
|
`-u`, `--unregistered`
|
40
|
-
|
44
|
+
: Print typo squat domains that can be registered.
|
41
45
|
|
42
46
|
`-h`, `--help`
|
43
|
-
|
47
|
+
: Print help information.
|
44
48
|
|
45
49
|
## AUTHOR
|
46
50
|
|
@@ -48,4 +52,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
48
52
|
|
49
53
|
## SEE ALSO
|
50
54
|
|
51
|
-
ronin-typo(1)
|
55
|
+
[ronin-typo](ronin-typo.1.md)
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# ronin-unarchive 1 "2024-01-18" Ronin "User Manuals"
|
2
|
+
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-unarchive - Unarchive the file(s).
|
6
|
+
|
7
|
+
## SYNOPSIS
|
8
|
+
|
9
|
+
`ronin unarchive` [*options*] *FILE* ...
|
10
|
+
|
11
|
+
## DESCRIPTION
|
12
|
+
|
13
|
+
Unarchive one or more `.tar` or `.zip` files.
|
14
|
+
|
15
|
+
## ARGUMENTS
|
16
|
+
|
17
|
+
*FILE*
|
18
|
+
: A file to unarchive.
|
19
|
+
|
20
|
+
## OPTIONS
|
21
|
+
|
22
|
+
`-f`, `--format` `tar`\|`zip`
|
23
|
+
: Explicit archive format
|
24
|
+
|
25
|
+
## EXAMPLES
|
26
|
+
|
27
|
+
Archive the file using tar:
|
28
|
+
|
29
|
+
$ ronin unarchive foo.tar
|
30
|
+
|
31
|
+
Archive the file using explicit format:
|
32
|
+
|
33
|
+
$ ronin unarchive -f zip foo.jar
|
34
|
+
|
35
|
+
## AUTHOR
|
36
|
+
|
37
|
+
Postmodern <postmodern.mod3@gmail.com>
|
38
|
+
|
39
|
+
## SEE ALSO
|
40
|
+
|
41
|
+
[ronin-archive](ronin-archive.1.md)
|