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-ip.1
CHANGED
@@ -1,145 +1,135 @@
|
|
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-ip 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-ip \- Queries or processes IP addresses
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
.HP
|
8
|
+
.PP
|
8
9
|
\fBronin ip\fR \[lB]\fIoptions\fP\[rB] \[lB]\fIIP\fP \.\.\.\[rB]
|
9
|
-
.LP
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Queries or processes IP addresses\.
|
14
|
-
.LP
|
15
13
|
.SH ARGUMENTS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
15
|
\fIIP\fP
|
19
16
|
An IP address argument to process\.
|
20
|
-
.LP
|
21
17
|
.SH OPTIONS
|
22
|
-
.LP
|
23
18
|
.TP
|
24
|
-
\fB
|
19
|
+
\fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
|
25
20
|
The optional file to read values from\.
|
26
|
-
.LP
|
27
21
|
.TP
|
28
|
-
\fB
|
22
|
+
\fB\-P\fR, \fB\-\-public\fR
|
29
23
|
Gets the public IP address\.
|
30
|
-
.LP
|
31
24
|
.TP
|
32
|
-
\fB
|
25
|
+
\fB\-L\fR, \fB\-\-local\fR
|
33
26
|
Gets the local IP address\.
|
34
|
-
.LP
|
35
27
|
.TP
|
36
|
-
\fB
|
28
|
+
\fB\-r\fR, \fB\-\-reverse\fR
|
37
29
|
Prints the IP address in reverse name format\.
|
38
|
-
.LP
|
39
30
|
.TP
|
40
|
-
\fB
|
31
|
+
\fB\-X\fR, \fB\-\-hex\fR
|
41
32
|
Converts the IP address to hexadecimal format\.
|
42
|
-
.LP
|
43
33
|
.TP
|
44
|
-
\fB
|
34
|
+
\fB\-D\fR, \fB\-\-decimal\fR
|
45
35
|
Converts the IP address to decimal format\.
|
46
|
-
.LP
|
47
36
|
.TP
|
48
|
-
\fB
|
37
|
+
\fB\-O\fR, \fB\-\-octal\fR
|
49
38
|
Converts the IP address to octal format\.
|
50
|
-
.LP
|
51
39
|
.TP
|
52
|
-
\fB
|
40
|
+
\fB\-B\fR, \fB\-\-binary\fR
|
53
41
|
Converts the IP address to binary format\.
|
54
|
-
.LP
|
55
42
|
.TP
|
56
|
-
\fB
|
43
|
+
\fB\-\-hex\-octet\fR
|
44
|
+
Converts the IP address to hexadecimal format by octet
|
45
|
+
.TP
|
46
|
+
\fB\-\-octal\-octet\fR
|
47
|
+
Converts the IP address to octal format by octet
|
48
|
+
.TP
|
49
|
+
\fB\-\-ipv6\-compat\fR
|
50
|
+
Converts the IPv4 address to an IPv6 compatible address
|
51
|
+
.TP
|
52
|
+
\fB\-\-ipv6\-expanded\fR
|
53
|
+
Expands a shortened or compressed IPv6 address
|
54
|
+
.TP
|
55
|
+
\fB\-C\fR, \fB\-\-cidr\fR \fINETMASK\fP
|
57
56
|
Converts the IP address into a CIDR range\.
|
58
|
-
.LP
|
59
57
|
.TP
|
60
|
-
\fB
|
58
|
+
\fB\-H\fR, \fB\-\-host\fR
|
61
59
|
Converts the IP address to a host name\.
|
62
|
-
.LP
|
63
60
|
.TP
|
64
|
-
\fB
|
61
|
+
\fB\-p\fR, \fB\-\-port\fR \fIPORT\fP
|
65
62
|
Appends the port number to each IP\.
|
66
|
-
.LP
|
67
63
|
.TP
|
68
|
-
\fB
|
64
|
+
\fB\-U\fR, \fB\-\-uri\fR
|
69
65
|
Converts the IP address into a URI\.
|
70
|
-
.LP
|
71
66
|
.TP
|
72
|
-
\fB
|
67
|
+
\fB\-\-uri\-scheme\fR \fISCHEME\fP
|
73
68
|
The scheme for the URI\. Defaults to \fBhttp\fR if not given\.
|
74
|
-
.LP
|
75
69
|
.TP
|
76
|
-
\fB
|
70
|
+
\fB\-\-uri\-port\fR \fIPORT\fP
|
77
71
|
The port for the URI\.
|
78
|
-
.LP
|
79
72
|
.TP
|
80
|
-
\fB
|
81
|
-
The absolute path for the URI\. Defaults to \fB
|
82
|
-
.LP
|
73
|
+
\fB\-\-uri\-path\fR \[sl]\fIPATH\fP
|
74
|
+
The absolute path for the URI\. Defaults to \fB\[sl]\fR if not given\.
|
83
75
|
.TP
|
84
|
-
\fB
|
76
|
+
\fB\-\-uri\-query\fR \fISTRING\fP
|
85
77
|
The query string for the URI\.
|
86
|
-
.LP
|
87
78
|
.TP
|
88
|
-
\fB
|
79
|
+
\fB\-\-http\fR
|
89
80
|
Converts the IP address into a http:\[sl]\[sl] URI\.
|
90
|
-
.LP
|
91
81
|
.TP
|
92
|
-
\fB
|
82
|
+
\fB\-\-https\fR
|
93
83
|
Converts the IP address into a https:\[sl]\[sl] URI\.
|
94
|
-
.LP
|
95
84
|
.TP
|
96
|
-
\fB
|
85
|
+
\fB\-h\fR, \fB\-\-help\fR
|
97
86
|
Print help information\.
|
98
|
-
.LP
|
99
87
|
.SH EXAMPLES
|
100
|
-
.LP
|
101
88
|
.PP
|
102
89
|
Gets the machine\[cq]s public IP address:
|
103
|
-
.
|
104
|
-
.
|
105
|
-
|
106
|
-
|
107
|
-
.
|
90
|
+
.PP
|
91
|
+
.RS 4
|
92
|
+
.EX
|
93
|
+
\[Do] ronin ip \-\-public
|
94
|
+
.EE
|
95
|
+
.RE
|
108
96
|
.PP
|
109
97
|
Gets the machine\[cq]s local network IP address:
|
110
|
-
.
|
111
|
-
.
|
112
|
-
|
113
|
-
|
114
|
-
.
|
98
|
+
.PP
|
99
|
+
.RS 4
|
100
|
+
.EX
|
101
|
+
\[Do] ronin ip \-\-local
|
102
|
+
.EE
|
103
|
+
.RE
|
115
104
|
.PP
|
116
105
|
Converts the IP address(es) into unsigned integers:
|
117
|
-
.
|
118
|
-
.
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
.
|
106
|
+
.PP
|
107
|
+
.RS 4
|
108
|
+
.EX
|
109
|
+
\[Do] ronin ip \-\-decimal 1\.2\.3\.4
|
110
|
+
16909060
|
111
|
+
.EE
|
112
|
+
.RE
|
123
113
|
.PP
|
124
114
|
Converts the IP address(es) into CIDR ranges:
|
125
|
-
.
|
126
|
-
.
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
.
|
115
|
+
.PP
|
116
|
+
.RS 4
|
117
|
+
.EX
|
118
|
+
\[Do] ronin ip \-\-cidr 20 1\.2\.3\.4
|
119
|
+
1\.2\.0\.0\[sl]20
|
120
|
+
.EE
|
121
|
+
.RE
|
131
122
|
.PP
|
132
123
|
Converts the IP address(es) into host names:
|
133
|
-
.
|
134
|
-
.
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
.
|
124
|
+
.PP
|
125
|
+
.RS 4
|
126
|
+
.EX
|
127
|
+
\[Do] ronin ip \-\-host 192\.30\.255\.113
|
128
|
+
lb\-192\-30\-255\-113\-sea\.github\.com
|
129
|
+
.EE
|
130
|
+
.RE
|
139
131
|
.SH AUTHOR
|
140
|
-
.LP
|
141
132
|
.PP
|
142
133
|
Postmodern
|
143
134
|
.MT postmodern\.mod3\[at]gmail\.com
|
144
135
|
.ME
|
145
|
-
.LP
|
data/man/ronin-ip.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-ip 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-ip - Queries or processes IP addresses
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin ip` [*options*] [*IP* ...]
|
@@ -11,91 +15,103 @@ Queries or processes IP addresses.
|
|
11
15
|
## ARGUMENTS
|
12
16
|
|
13
17
|
*IP*
|
14
|
-
|
18
|
+
: An IP address argument to process.
|
15
19
|
|
16
20
|
## OPTIONS
|
17
21
|
|
18
22
|
`-f`, `--file` *FILE*
|
19
|
-
|
23
|
+
: The optional file to read values from.
|
20
24
|
|
21
25
|
`-P`, `--public`
|
22
|
-
|
26
|
+
: Gets the public IP address.
|
23
27
|
|
24
28
|
`-L`, `--local`
|
25
|
-
|
29
|
+
: Gets the local IP address.
|
26
30
|
|
27
31
|
`-r`, `--reverse`
|
28
|
-
|
32
|
+
: Prints the IP address in reverse name format.
|
29
33
|
|
30
34
|
`-X`, `--hex`
|
31
|
-
|
35
|
+
: Converts the IP address to hexadecimal format.
|
32
36
|
|
33
37
|
`-D`, `--decimal`
|
34
|
-
|
38
|
+
: Converts the IP address to decimal format.
|
35
39
|
|
36
40
|
`-O`, `--octal`
|
37
|
-
|
41
|
+
: Converts the IP address to octal format.
|
38
42
|
|
39
43
|
`-B`, `--binary`
|
40
|
-
|
44
|
+
: Converts the IP address to binary format.
|
45
|
+
|
46
|
+
`--hex-octet`
|
47
|
+
: Converts the IP address to hexadecimal format by octet
|
48
|
+
|
49
|
+
`--octal-octet`
|
50
|
+
: Converts the IP address to octal format by octet
|
51
|
+
|
52
|
+
`--ipv6-compat`
|
53
|
+
: Converts the IPv4 address to an IPv6 compatible address
|
54
|
+
|
55
|
+
`--ipv6-expanded`
|
56
|
+
: Expands a shortened or compressed IPv6 address
|
41
57
|
|
42
58
|
`-C`, `--cidr` *NETMASK*
|
43
|
-
|
59
|
+
: Converts the IP address into a CIDR range.
|
44
60
|
|
45
61
|
`-H`, `--host`
|
46
|
-
|
62
|
+
: Converts the IP address to a host name.
|
47
63
|
|
48
64
|
`-p`, `--port` *PORT*
|
49
|
-
|
65
|
+
: Appends the port number to each IP.
|
50
66
|
|
51
67
|
`-U`, `--uri`
|
52
|
-
|
68
|
+
: Converts the IP address into a URI.
|
53
69
|
|
54
70
|
`--uri-scheme` *SCHEME*
|
55
|
-
|
71
|
+
: The scheme for the URI. Defaults to `http` if not given.
|
56
72
|
|
57
73
|
`--uri-port` *PORT*
|
58
|
-
|
74
|
+
: The port for the URI.
|
59
75
|
|
60
76
|
`--uri-path` /*PATH*
|
61
|
-
|
77
|
+
: The absolute path for the URI. Defaults to `/` if not given.
|
62
78
|
|
63
79
|
`--uri-query` *STRING*
|
64
|
-
|
80
|
+
: The query string for the URI.
|
65
81
|
|
66
82
|
`--http`
|
67
|
-
|
83
|
+
: Converts the IP address into a http:// URI.
|
68
84
|
|
69
85
|
`--https`
|
70
|
-
|
86
|
+
: Converts the IP address into a https:// URI.
|
71
87
|
|
72
88
|
`-h`, `--help`
|
73
|
-
|
89
|
+
: Print help information.
|
74
90
|
|
75
91
|
## EXAMPLES
|
76
92
|
|
77
93
|
Gets the machine's public IP address:
|
78
94
|
|
79
|
-
|
95
|
+
$ ronin ip --public
|
80
96
|
|
81
97
|
Gets the machine's local network IP address:
|
82
98
|
|
83
|
-
|
99
|
+
$ ronin ip --local
|
84
100
|
|
85
101
|
Converts the IP address(es) into unsigned integers:
|
86
102
|
|
87
|
-
|
88
|
-
|
103
|
+
$ ronin ip --decimal 1.2.3.4
|
104
|
+
16909060
|
89
105
|
|
90
106
|
Converts the IP address(es) into CIDR ranges:
|
91
107
|
|
92
|
-
|
93
|
-
|
108
|
+
$ ronin ip --cidr 20 1.2.3.4
|
109
|
+
1.2.0.0/20
|
94
110
|
|
95
111
|
Converts the IP address(es) into host names:
|
96
112
|
|
97
|
-
|
98
|
-
|
113
|
+
$ ronin ip --host 192.30.255.113
|
114
|
+
lb-192-30-255-113-sea.github.com
|
99
115
|
|
100
116
|
## AUTHOR
|
101
117
|
|
data/man/ronin-iprange.1
CHANGED
@@ -1,46 +1,38 @@
|
|
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-iprange 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-iprange \- Enumerates over IP ranges
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
|
8
|
-
\fBronin iprange\fR \[lB]\fIoptions\fP\[rB] \[lB]\fIIP\[ru]RANGE\fP \.\.\. \[or] \fB--start\fR \fIIP\fP \fB--stop\fR \fIIP\fP\[rB]
|
9
|
-
.LP
|
8
|
+
.PP
|
9
|
+
\fBronin iprange\fR \[lB]\fIoptions\fP\[rB] \[lB]\fIIP\[ru]RANGE\fP \.\.\. \[or] \fB\-\-start\fR \fIIP\fP \fB\-\-stop\fR \fIIP\fP\[rB]
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Enumerates over the given IP range(s)\. The IP range(s) can given from either
|
14
|
-
command\-line arguments or read from a file via the \fB
|
15
|
-
.LP
|
13
|
+
command\-line arguments or read from a file via the \fB\-\-file\fR option\.
|
16
14
|
.SH ARGUMENTS
|
17
|
-
.LP
|
18
15
|
.TP
|
19
16
|
\fIIP\[ru]RANGE\fP
|
20
17
|
An IP range argument given in either CIDR or glob notation\.
|
21
|
-
.LP
|
22
18
|
.SH OPTIONS
|
23
|
-
.LP
|
24
19
|
.TP
|
25
|
-
\fB
|
20
|
+
\fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
|
26
21
|
The optional file to read values from\.
|
27
|
-
.LP
|
28
22
|
.TP
|
29
|
-
\fB
|
23
|
+
\fB\-\-start\fR \fIIP\fP
|
30
24
|
The starting IP address for the range\.
|
31
|
-
.LP
|
32
25
|
.TP
|
33
|
-
\fB
|
26
|
+
\fB\-\-stop\fR \fIIP\fP
|
34
27
|
The stopping IP address for the range\.
|
35
|
-
.LP
|
36
28
|
.TP
|
37
|
-
\fB
|
29
|
+
\fB\-s\fR, \fB\-\-size\fR
|
30
|
+
Prints the size of the IP range instead of printing each IP in the range\.
|
31
|
+
.TP
|
32
|
+
\fB\-h\fR, \fB\-\-help\fR
|
38
33
|
Print help information\.
|
39
|
-
.LP
|
40
34
|
.SH AUTHOR
|
41
|
-
.LP
|
42
35
|
.PP
|
43
36
|
Postmodern
|
44
37
|
.MT postmodern\.mod3\[at]gmail\.com
|
45
38
|
.ME
|
46
|
-
.LP
|
data/man/ronin-iprange.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-iprange 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-iprange - Enumerates over IP ranges
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin iprange` [*options*] [*IP_RANGE* ... \| `--start` *IP* `--stop` *IP*]
|
@@ -12,21 +16,24 @@ command-line arguments or read from a file via the `--file` option.
|
|
12
16
|
## ARGUMENTS
|
13
17
|
|
14
18
|
*IP_RANGE*
|
15
|
-
|
19
|
+
: An IP range argument given in either CIDR or glob notation.
|
16
20
|
|
17
21
|
## OPTIONS
|
18
22
|
|
19
23
|
`-f`, `--file` *FILE*
|
20
|
-
|
24
|
+
: The optional file to read values from.
|
21
25
|
|
22
26
|
`--start` *IP*
|
23
|
-
|
27
|
+
: The starting IP address for the range.
|
24
28
|
|
25
29
|
`--stop` *IP*
|
26
|
-
|
30
|
+
: The stopping IP address for the range.
|
31
|
+
|
32
|
+
`-s`, `--size`
|
33
|
+
: Prints the size of the IP range instead of printing each IP in the range.
|
27
34
|
|
28
35
|
`-h`, `--help`
|
29
|
-
|
36
|
+
: Print help information.
|
30
37
|
|
31
38
|
## AUTHOR
|
32
39
|
|
data/man/ronin-irb.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-irb 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-irb \- Start ronin\[cq]s interactive Ruby shell
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
.HP
|
8
|
+
.PP
|
8
9
|
\fBronin irb\fR \[lB]\fIoptions\fP\[rB]
|
9
|
-
.LP
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Start ronin\[cq]s interactive Ruby shell\.
|
14
|
-
.LP
|
15
13
|
.SH OPTIONS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
|
-
\fB
|
19
|
-
Adds the \fBDIR\fR to \fB
|
20
|
-
.LP
|
15
|
+
\fB\-I\fR, \fB\-\-include\fR \fIDIR\fP
|
16
|
+
Adds the \fBDIR\fR to \fB\[Do]LOAD\[ru]PATH\fR\.
|
21
17
|
.TP
|
22
|
-
\fB
|
18
|
+
\fB\-r\fR, \fB\-\-require\fR \fIPATH\fP
|
23
19
|
Ruby files to require\.
|
24
|
-
.LP
|
25
20
|
.SH AUTHOR
|
26
|
-
.LP
|
27
21
|
.PP
|
28
22
|
Postmodern
|
29
23
|
.MT postmodern\.mod3\[at]gmail\.com
|
30
24
|
.ME
|
31
|
-
.LP
|
32
25
|
.SH SEE ALSO
|
33
|
-
.LP
|
34
26
|
.PP
|
35
|
-
ronin(1)
|
27
|
+
.BR ronin (1)
|
data/man/ronin-irb.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-irb 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-irb - Start ronin's interactive Ruby shell
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin irb` [*options*]
|
@@ -11,10 +15,10 @@ Start ronin's interactive Ruby shell.
|
|
11
15
|
## OPTIONS
|
12
16
|
|
13
17
|
`-I`, `--include` *DIR*
|
14
|
-
|
18
|
+
: Adds the `DIR` to `$LOAD_PATH`.
|
15
19
|
|
16
20
|
`-r`, `--require` *PATH*
|
17
|
-
|
21
|
+
: Ruby files to require.
|
18
22
|
|
19
23
|
## AUTHOR
|
20
24
|
|
@@ -22,4 +26,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
22
26
|
|
23
27
|
## SEE ALSO
|
24
28
|
|
25
|
-
ronin(1)
|
29
|
+
[ronin](ronin.1.md)
|
data/man/ronin-md5.1
CHANGED
@@ -1,54 +1,43 @@
|
|
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-md5 1 "2023-02-01" Ronin "User Manuals"
|
4
|
-
.
|
4
|
+
.SH NAME
|
5
|
+
.PP
|
6
|
+
ronin\-md5 \- Calculates MD5 hashes of data
|
5
7
|
.SH SYNOPSIS
|
6
|
-
.
|
7
|
-
.HP
|
8
|
+
.PP
|
8
9
|
\fBronin md5\fR \[lB]\fIoptions\fP\[rB] \[lB]\fIFILE\fP \.\.\.\[rB]
|
9
|
-
.LP
|
10
10
|
.SH DESCRIPTION
|
11
|
-
.LP
|
12
11
|
.PP
|
13
12
|
Calculates MD5 hashes of data\.
|
14
|
-
.LP
|
15
13
|
.SH ARGUMENTS
|
16
|
-
.LP
|
17
14
|
.TP
|
18
15
|
\fIFILE\fP
|
19
16
|
The optional file to read and process\. If no \fIFILE\fP arguments are given,
|
20
17
|
input will be read from \fBstdin\fR\.
|
21
|
-
.LP
|
22
18
|
.SH OPTIONS
|
23
|
-
.LP
|
24
19
|
.TP
|
25
|
-
\fB
|
20
|
+
\fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
|
26
21
|
Optional file to process\.
|
27
|
-
.LP
|
28
22
|
.TP
|
29
|
-
\fB
|
23
|
+
\fB\-\-string\fR \fISTRING\fP
|
30
24
|
Optional string to process\.
|
31
|
-
.LP
|
32
25
|
.TP
|
33
|
-
\fB
|
26
|
+
\fB\-M\fR, \fB\-\-multiline\fR
|
34
27
|
Process each line of input separately\.
|
35
|
-
.LP
|
36
28
|
.TP
|
37
|
-
\fB
|
29
|
+
\fB\-n\fR, \fB\-\-keep\-newlines\fR
|
38
30
|
Preserves newlines at the end of each line\.
|
39
|
-
.LP
|
40
31
|
.TP
|
41
|
-
\fB
|
32
|
+
\fB\-h\fR, \fB\-\-help\fR
|
42
33
|
Print help information\.
|
43
|
-
.LP
|
44
34
|
.SH AUTHOR
|
45
|
-
.LP
|
46
35
|
.PP
|
47
36
|
Postmodern
|
48
37
|
.MT postmodern\.mod3\[at]gmail\.com
|
49
38
|
.ME
|
50
|
-
.LP
|
51
39
|
.SH SEE ALSO
|
52
|
-
.LP
|
53
40
|
.PP
|
54
|
-
ronin\-sha1
|
41
|
+
.BR ronin\-sha1 (1)
|
42
|
+
.BR ronin\-sha256 (1)
|
43
|
+
.BR ronin\-sha512 (1)
|
data/man/ronin-md5.1.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
# ronin-md5 1 "2023-02-01" Ronin "User Manuals"
|
2
2
|
|
3
|
+
## NAME
|
4
|
+
|
5
|
+
ronin-md5 - Calculates MD5 hashes of data
|
6
|
+
|
3
7
|
## SYNOPSIS
|
4
8
|
|
5
9
|
`ronin md5` [*options*] [*FILE* ...]
|
@@ -11,25 +15,25 @@ Calculates MD5 hashes of data.
|
|
11
15
|
## ARGUMENTS
|
12
16
|
|
13
17
|
*FILE*
|
14
|
-
|
18
|
+
: The optional file to read and process. If no *FILE* arguments are given,
|
15
19
|
input will be read from `stdin`.
|
16
20
|
|
17
21
|
## OPTIONS
|
18
22
|
|
19
23
|
`-f`, `--file` *FILE*
|
20
|
-
|
24
|
+
: Optional file to process.
|
21
25
|
|
22
26
|
`--string` *STRING*
|
23
|
-
|
27
|
+
: Optional string to process.
|
24
28
|
|
25
29
|
`-M`, `--multiline`
|
26
|
-
|
30
|
+
: Process each line of input separately.
|
27
31
|
|
28
32
|
`-n`, `--keep-newlines`
|
29
|
-
|
33
|
+
: Preserves newlines at the end of each line.
|
30
34
|
|
31
35
|
`-h`, `--help`
|
32
|
-
|
36
|
+
: Print help information.
|
33
37
|
|
34
38
|
## AUTHOR
|
35
39
|
|
@@ -37,4 +41,4 @@ Postmodern <postmodern.mod3@gmail.com>
|
|
37
41
|
|
38
42
|
## SEE ALSO
|
39
43
|
|
40
|
-
ronin-sha1(1)
|
44
|
+
[ronin-sha1](ronin-sha1.1.md) [ronin-sha256](ronin-sha256.1.md) [ronin-sha512](ronin-sha512.1.md)
|