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.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +3 -3
  3. data/.gitignore +1 -0
  4. data/.rubocop.yml +5 -1
  5. data/ChangeLog.md +56 -1
  6. data/Gemfile +66 -29
  7. data/README.md +162 -17
  8. data/Rakefile +9 -0
  9. data/data/completions/ronin +655 -0
  10. data/data/templates/dns_proxy.rb.erb +35 -0
  11. data/gemspec.yml +27 -13
  12. data/lib/ronin/cli/binary_template.rb +124 -0
  13. data/lib/ronin/cli/commands/archive.rb +104 -0
  14. data/lib/ronin/cli/commands/banner_grab.rb +2 -0
  15. data/lib/ronin/cli/commands/bitflip.rb +1 -1
  16. data/lib/ronin/cli/commands/bitsquat.rb +119 -0
  17. data/lib/ronin/cli/commands/cert_dump.rb +20 -4
  18. data/lib/ronin/cli/commands/cert_gen.rb +9 -19
  19. data/lib/ronin/cli/commands/cert_grab.rb +4 -3
  20. data/lib/ronin/cli/commands/completion.rb +115 -0
  21. data/lib/ronin/cli/commands/dns_proxy.rb +235 -0
  22. data/lib/ronin/cli/commands/http.rb +80 -8
  23. data/lib/ronin/cli/commands/ip.rb +101 -0
  24. data/lib/ronin/cli/commands/iprange.rb +25 -8
  25. data/lib/ronin/cli/commands/netcat.rb +2 -0
  26. data/lib/ronin/cli/commands/new/dns_listener.rb +37 -0
  27. data/lib/ronin/cli/commands/new/dns_proxy.rb +99 -0
  28. data/lib/ronin/cli/commands/new/exploit.rb +34 -0
  29. data/lib/ronin/cli/commands/new/http_listener.rb +37 -0
  30. data/lib/ronin/cli/commands/new/nokogiri.rb +33 -0
  31. data/lib/ronin/cli/commands/new/payload.rb +34 -0
  32. data/lib/ronin/cli/commands/new/project.rb +1 -1
  33. data/lib/ronin/cli/commands/new/script.rb +1 -1
  34. data/lib/ronin/cli/commands/new/web_app.rb +37 -0
  35. data/lib/ronin/cli/commands/new/web_server.rb +37 -0
  36. data/lib/ronin/cli/commands/new/web_spider.rb +37 -0
  37. data/lib/ronin/cli/commands/new.rb +3 -1
  38. data/lib/ronin/cli/commands/pack.rb +339 -0
  39. data/lib/ronin/cli/commands/public_suffix_list.rb +2 -0
  40. data/lib/ronin/cli/commands/tld_list.rb +2 -0
  41. data/lib/ronin/cli/commands/unarchive.rb +128 -0
  42. data/lib/ronin/cli/commands/unhexdump.rb +3 -1
  43. data/lib/ronin/cli/commands/unpack.rb +195 -0
  44. data/lib/ronin/cli/commands/url.rb +2 -0
  45. data/lib/ronin/cli/http_shell.rb +25 -0
  46. data/lib/ronin/cli.rb +10 -0
  47. data/lib/ronin/version.rb +1 -1
  48. data/man/ronin-archive.1.md +49 -0
  49. data/man/ronin-asn.1 +60 -77
  50. data/man/ronin-asn.1.md +25 -21
  51. data/man/ronin-banner-grab.1 +10 -21
  52. data/man/ronin-banner-grab.1.md +9 -5
  53. data/man/ronin-bitflip.1 +35 -61
  54. data/man/ronin-bitflip.1.md +30 -26
  55. data/man/ronin-bitsquat.1 +40 -0
  56. data/man/ronin-bitsquat.1.md +43 -0
  57. data/man/ronin-cert-dump.1 +44 -54
  58. data/man/ronin-cert-dump.1.md +18 -14
  59. data/man/ronin-cert-gen.1 +73 -94
  60. data/man/ronin-cert-gen.1.md +38 -34
  61. data/man/ronin-cert-grab.1 +29 -37
  62. data/man/ronin-cert-grab.1.md +12 -8
  63. data/man/ronin-completion.1 +78 -0
  64. data/man/ronin-completion.1.md +80 -0
  65. data/man/ronin-decode.1 +32 -63
  66. data/man/ronin-decode.1.md +29 -25
  67. data/man/ronin-decrypt.1 +42 -57
  68. data/man/ronin-decrypt.1.md +20 -16
  69. data/man/ronin-dns-proxy.1 +100 -0
  70. data/man/ronin-dns-proxy.1.md +70 -0
  71. data/man/ronin-dns.1 +10 -21
  72. data/man/ronin-dns.1.md +9 -5
  73. data/man/ronin-email-addr.1 +27 -40
  74. data/man/ronin-email-addr.1.md +15 -11
  75. data/man/ronin-encode.1 +93 -63
  76. data/man/ronin-encode.1.md +64 -26
  77. data/man/ronin-encrypt.1 +42 -57
  78. data/man/ronin-encrypt.1.md +20 -16
  79. data/man/ronin-entropy.1 +11 -21
  80. data/man/ronin-entropy.1.md +8 -4
  81. data/man/ronin-escape.1 +22 -46
  82. data/man/ronin-escape.1.md +22 -18
  83. data/man/ronin-extract.1 +74 -149
  84. data/man/ronin-extract.1.md +73 -69
  85. data/man/ronin-grep.1 +77 -155
  86. data/man/ronin-grep.1.md +76 -72
  87. data/man/ronin-help.1 +3 -14
  88. data/man/ronin-help.1.md +2 -2
  89. data/man/ronin-hexdump.1 +249 -265
  90. data/man/ronin-hexdump.1.md +93 -89
  91. data/man/ronin-highlight.1 +8 -18
  92. data/man/ronin-highlight.1.md +8 -4
  93. data/man/ronin-hmac.1 +17 -30
  94. data/man/ronin-hmac.1.md +14 -10
  95. data/man/ronin-homoglyph.1 +11 -22
  96. data/man/ronin-homoglyph.1.md +10 -6
  97. data/man/ronin-host.1 +23 -47
  98. data/man/ronin-host.1.md +22 -18
  99. data/man/ronin-http.1 +40 -69
  100. data/man/ronin-http.1.md +40 -30
  101. data/man/ronin-ip.1 +70 -80
  102. data/man/ronin-ip.1.md +44 -28
  103. data/man/ronin-iprange.1 +14 -22
  104. data/man/ronin-iprange.1.md +12 -5
  105. data/man/ronin-irb.1 +9 -17
  106. data/man/ronin-irb.1.md +7 -3
  107. data/man/ronin-md5.1 +13 -24
  108. data/man/ronin-md5.1.md +11 -7
  109. data/man/ronin-netcat.1 +25 -51
  110. data/man/ronin-netcat.1.md +25 -21
  111. data/man/ronin-new-dns-proxy.1 +45 -0
  112. data/man/ronin-new-dns-proxy.1.md +44 -0
  113. data/man/ronin-new-project.1 +32 -45
  114. data/man/ronin-new-project.1.md +11 -11
  115. data/man/ronin-new-script.1 +10 -22
  116. data/man/ronin-new-script.1.md +4 -4
  117. data/man/ronin-new.1 +56 -31
  118. data/man/ronin-new.1.md +48 -8
  119. data/man/ronin-pack.1 +977 -0
  120. data/man/ronin-pack.1.md +929 -0
  121. data/man/ronin-proxy.1 +37 -63
  122. data/man/ronin-proxy.1.md +29 -25
  123. data/man/ronin-public-suffix-list.1 +16 -32
  124. data/man/ronin-public-suffix-list.1.md +13 -9
  125. data/man/ronin-quote.1 +17 -36
  126. data/man/ronin-quote.1.md +17 -13
  127. data/man/ronin-rot.1 +26 -39
  128. data/man/ronin-rot.1.md +15 -11
  129. data/man/ronin-sha1.1 +13 -24
  130. data/man/ronin-sha1.1.md +11 -7
  131. data/man/ronin-sha256.1 +13 -24
  132. data/man/ronin-sha256.1.md +11 -7
  133. data/man/ronin-sha512.1 +13 -24
  134. data/man/ronin-sha512.1.md +11 -7
  135. data/man/ronin-strings.1 +30 -55
  136. data/man/ronin-strings.1.md +27 -23
  137. data/man/ronin-tips.1 +8 -16
  138. data/man/ronin-tips.1.md +7 -3
  139. data/man/ronin-tld-list.1 +16 -32
  140. data/man/ronin-tld-list.1.md +13 -9
  141. data/man/ronin-typo.1 +14 -28
  142. data/man/ronin-typo.1.md +13 -9
  143. data/man/ronin-typosquat.1 +15 -32
  144. data/man/ronin-typosquat.1.md +15 -11
  145. data/man/ronin-unarchive.1.md +41 -0
  146. data/man/ronin-unescape.1 +22 -46
  147. data/man/ronin-unescape.1.md +22 -18
  148. data/man/ronin-unhexdump.1 +81 -91
  149. data/man/ronin-unhexdump.1.md +16 -12
  150. data/man/ronin-unpack.1 +978 -0
  151. data/man/ronin-unpack.1.md +920 -0
  152. data/man/ronin-unquote.1 +17 -36
  153. data/man/ronin-unquote.1.md +17 -13
  154. data/man/ronin-url.1 +19 -40
  155. data/man/ronin-url.1.md +19 -15
  156. data/man/ronin-xor.1 +14 -28
  157. data/man/ronin-xor.1.md +13 -9
  158. data/man/ronin.1 +208 -29
  159. data/man/ronin.1.md +156 -11
  160. data/scripts/setup +58 -0
  161. metadata +162 -73
  162. data/lib/ronin/config.rb +0 -95
  163. /data/data/{new → templates}/project/.gitignore +0 -0
  164. /data/data/{new → templates}/project/.ruby-version.erb +0 -0
  165. /data/data/{new → templates}/project/Dockerfile.erb +0 -0
  166. /data/data/{new → templates}/project/Gemfile.erb +0 -0
  167. /data/data/{new → templates}/project/Rakefile +0 -0
  168. /data/data/{new → templates}/project/project.rb.erb +0 -0
  169. /data/data/{new → templates}/script.rb.erb +0 -0
data/man/ronin-bitflip.1 CHANGED
@@ -1,127 +1,101 @@
1
- .\" Generated by kramdown-man 0.1.8
1
+ .\" Generated by kramdown-man 1.0.1
2
2
  .\" https://github.com/postmodern/kramdown-man#readme
3
3
  .TH ronin-bitflip 1 "2023-02-01" Ronin "User Manuals"
4
- .LP
4
+ .SH NAME
5
+ .PP
6
+ ronin\-bitflip \- Prints every bit\-flip of the given string(s)
5
7
  .SH SYNOPSIS
6
- .LP
7
- .HP
8
+ .PP
8
9
  \fBronin bitflip\fR \[lB]\fIoptions\fP\[rB] \[lB]\fISTRING\fP \.\.\.\[rB]
9
- .LP
10
10
  .SH DESCRIPTION
11
- .LP
12
11
  .PP
13
12
  Prints every bit\-flip of the given string(s)\.
14
- .LP
15
13
  .SH ARGUMENTS
16
- .LP
17
14
  .TP
18
15
  \fISTRING\fP
19
16
  A string value to print all of the bit\-flips of\.
20
- .LP
21
17
  .SH OPTIONS
22
- .LP
23
18
  .TP
24
- \fB-f\fR, \fB--file\fR \fIFILE\fP
19
+ \fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
25
20
  Optional file to read values from\.
26
- .LP
27
21
  .TP
28
- \fB-N\fR, \fB--numeric\fR
22
+ \fB\-N\fR, \fB\-\-numeric\fR
29
23
  Searches for numeric characters (0\-9)\.
30
- .LP
31
24
  .TP
32
- \fB-O\fR, \fB--octal\fR
25
+ \fB\-O\fR, \fB\-\-octal\fR
33
26
  Searches for octal characters (0\-7)\.
34
- \fB-X\fR, \fB--upper-hex\fR
27
+ \fB\-X\fR, \fB\-\-upper\-hex\fR
28
+ .RS
29
+ .PP
35
30
  Searches for uppercase hexadecimal (0\-9, A\-F)\.
36
- .LP
31
+ .RE
37
32
  .TP
38
- \fB-x\fR, \fB--lower-hex\fR
33
+ \fB\-x\fR, \fB\-\-lower\-hex\fR
39
34
  Searches for lowercase hexadecimal (0\-9, a\-f)\.
40
- .LP
41
35
  .TP
42
- \fB-H\fR, \fB--hex\fR
36
+ \fB\-H\fR, \fB\-\-hex\fR
43
37
  Searches for hexadecimal chars (0\-9, a\-f, A\-F)\.
44
- .LP
45
38
  .TP
46
- \fB--upper-alpha\fR
39
+ \fB\-\-upper\-alpha\fR
47
40
  Searches for uppercase alpha chars (A\-Z)\.
48
- .LP
49
41
  .TP
50
- \fB--lower-alpha\fR
42
+ \fB\-\-lower\-alpha\fR
51
43
  Searches for lowercase alpha chars (a\-z)\.
52
- .LP
53
44
  .TP
54
- \fB-A\fR, \fB--alpha\fR
45
+ \fB\-A\fR, \fB\-\-alpha\fR
55
46
  Searches for alpha chars (a\-z, A\-Z)\.
56
- .LP
57
47
  .TP
58
- \fB--alpha-num\fR
48
+ \fB\-\-alpha\-num\fR
59
49
  Searches for alpha\-numeric chars (a\-z, A\-Z, 0\-9)\.
60
- .LP
61
50
  .TP
62
- \fB-P\fR, \fB--punct\fR
51
+ \fB\-P\fR, \fB\-\-punct\fR
63
52
  Searches for punctuation chars\.
64
- .LP
65
53
  .TP
66
- \fB-S\fR, \fB--symbols\fR
54
+ \fB\-S\fR, \fB\-\-symbols\fR
67
55
  Searches for symbolic chars\.
68
- .LP
69
56
  .TP
70
- \fB-s\fR, \fB--space\fR
57
+ \fB\-s\fR, \fB\-\-space\fR
71
58
  Searches for all whitespace chars\.
72
- .LP
73
59
  .TP
74
- \fB-v\fR, \fB--visible\fR
60
+ \fB\-v\fR, \fB\-\-visible\fR
75
61
  Searches for all visible chars\.
76
- .LP
77
62
  .TP
78
- \fB-p\fR, \fB--printable\fR
63
+ \fB\-p\fR, \fB\-\-printable\fR
79
64
  Searches for all printable chars\.
80
- .LP
81
65
  .TP
82
- \fB-C\fR, \fB--control\fR
66
+ \fB\-C\fR, \fB\-\-control\fR
83
67
  Searches for all control chars (\ex00\-\ex1f, \ex7f)\.
84
- .LP
85
68
  .TP
86
- \fB-a\fR, \fB--signed-ascii\fR
69
+ \fB\-a\fR, \fB\-\-signed\-ascii\fR
87
70
  Searches for all signed ASCII chars (\ex00\-\ex7f)\.
88
- .LP
89
71
  .TP
90
- \fB--ascii\fR
72
+ \fB\-\-ascii\fR
91
73
  Searches for all ASCII chars (\ex00\-\exff)\.
92
- .LP
93
74
  .TP
94
- \fB-c\fR, \fB--chars\fR \fICHARS\fP
75
+ \fB\-c\fR, \fB\-\-chars\fR \fICHARS\fP
95
76
  Searches for all chars in the custom char\-set\.
96
- .LP
97
77
  .TP
98
- \fB-i\fR, \fB--include-chars\fR \fICHARS\fP
78
+ \fB\-i\fR, \fB\-\-include\-chars\fR \fICHARS\fP
99
79
  Include the additional chars to the char\-set\.
100
- .LP
101
80
  .TP
102
- \fB-e\fR, \fB--exclude-chars\fR \fICHARS\fP
81
+ \fB\-e\fR, \fB\-\-exclude\-chars\fR \fICHARS\fP
103
82
  Exclude the additional chars from the char\-set\.
104
- .LP
105
83
  .TP
106
- \fB--prepend\fR \fISTRING\fP
84
+ \fB\-\-prepend\fR \fISTRING\fP
107
85
  Prepends another \fISTRING\fP to each bit\-flipped value\.
108
- .LP
109
86
  .TP
110
- \fB--append\fR \fISTRING\fP
87
+ \fB\-\-append\fR \fISTRING\fP
111
88
  Appends another \fISTRING\fP to each bit\-flipped value\.
112
- .LP
113
89
  .TP
114
- \fB-h\fR, \fB--help\fR
90
+ \fB\-h\fR, \fB\-\-help\fR
115
91
  Print help information\.
116
- .LP
117
92
  .SH AUTHOR
118
- .LP
119
93
  .PP
120
94
  Postmodern
121
95
  .MT postmodern\.mod3\[at]gmail\.com
122
96
  .ME
123
- .LP
124
97
  .SH SEE ALSO
125
- .LP
126
98
  .PP
127
- ronin\-typo(1) ronin\-homoglyph(1)
99
+ .BR ronin\-bitsquat (1)
100
+ .BR ronin\-typo (1)
101
+ .BR ronin\-homoglyph (1)
@@ -1,5 +1,9 @@
1
1
  # ronin-bitflip 1 "2023-02-01" Ronin "User Manuals"
2
2
 
3
+ ## NAME
4
+
5
+ ronin-bitflip - Prints every bit-flip of the given string(s)
6
+
3
7
  ## SYNOPSIS
4
8
 
5
9
  `ronin bitflip` [*options*] [*STRING* ...]
@@ -11,80 +15,80 @@ Prints every bit-flip of the given string(s).
11
15
  ## ARGUMENTS
12
16
 
13
17
  *STRING*
14
- A string value to print all of the bit-flips of.
18
+ : A string value to print all of the bit-flips of.
15
19
 
16
20
  ## OPTIONS
17
21
 
18
22
  `-f`, `--file` *FILE*
19
- Optional file to read values from.
23
+ : Optional file to read values from.
20
24
 
21
25
  `-N`, `--numeric`
22
- Searches for numeric characters (0-9).
26
+ : Searches for numeric characters (0-9).
23
27
 
24
28
  `-O`, `--octal`
25
- Searches for octal characters (0-7).
29
+ : Searches for octal characters (0-7).
26
30
  `-X`, `--upper-hex`
27
- Searches for uppercase hexadecimal (0-9, A-F).
31
+ : Searches for uppercase hexadecimal (0-9, A-F).
28
32
 
29
33
  `-x`, `--lower-hex`
30
- Searches for lowercase hexadecimal (0-9, a-f).
34
+ : Searches for lowercase hexadecimal (0-9, a-f).
31
35
 
32
36
  `-H`, `--hex`
33
- Searches for hexadecimal chars (0-9, a-f, A-F).
37
+ : Searches for hexadecimal chars (0-9, a-f, A-F).
34
38
 
35
39
  `--upper-alpha`
36
- Searches for uppercase alpha chars (A-Z).
40
+ : Searches for uppercase alpha chars (A-Z).
37
41
 
38
42
  `--lower-alpha`
39
- Searches for lowercase alpha chars (a-z).
43
+ : Searches for lowercase alpha chars (a-z).
40
44
 
41
45
  `-A`, `--alpha`
42
- Searches for alpha chars (a-z, A-Z).
46
+ : Searches for alpha chars (a-z, A-Z).
43
47
 
44
48
  `--alpha-num`
45
- Searches for alpha-numeric chars (a-z, A-Z, 0-9).
49
+ : Searches for alpha-numeric chars (a-z, A-Z, 0-9).
46
50
 
47
51
  `-P`, `--punct`
48
- Searches for punctuation chars.
52
+ : Searches for punctuation chars.
49
53
 
50
54
  `-S`, `--symbols`
51
- Searches for symbolic chars.
55
+ : Searches for symbolic chars.
52
56
 
53
57
  `-s`, `--space`
54
- Searches for all whitespace chars.
58
+ : Searches for all whitespace chars.
55
59
 
56
60
  `-v`, `--visible`
57
- Searches for all visible chars.
61
+ : Searches for all visible chars.
58
62
 
59
63
  `-p`, `--printable`
60
- Searches for all printable chars.
64
+ : Searches for all printable chars.
61
65
 
62
66
  `-C`, `--control`
63
- Searches for all control chars (\x00-\x1f, \x7f).
67
+ : Searches for all control chars (\x00-\x1f, \x7f).
64
68
 
65
69
  `-a`, `--signed-ascii`
66
- Searches for all signed ASCII chars (\x00-\x7f).
70
+ : Searches for all signed ASCII chars (\x00-\x7f).
67
71
 
68
72
  `--ascii`
69
- Searches for all ASCII chars (\x00-\xff).
73
+ : Searches for all ASCII chars (\x00-\xff).
70
74
 
71
75
  `-c`, `--chars` *CHARS*
72
- Searches for all chars in the custom char-set.
76
+ : Searches for all chars in the custom char-set.
73
77
 
74
78
  `-i`, `--include-chars` *CHARS*
75
- Include the additional chars to the char-set.
79
+ : Include the additional chars to the char-set.
76
80
 
77
81
  `-e`, `--exclude-chars` *CHARS*
78
- Exclude the additional chars from the char-set.
82
+ : Exclude the additional chars from the char-set.
79
83
 
80
84
  `--prepend` *STRING*
81
- Prepends another *STRING* to each bit-flipped value.
85
+ : Prepends another *STRING* to each bit-flipped value.
82
86
 
83
87
  `--append` *STRING*
84
- Appends another *STRING* to each bit-flipped value.
88
+ : Appends another *STRING* to each bit-flipped value.
85
89
 
86
90
  `-h`, `--help`
87
- Print help information.
91
+ : Print help information.
88
92
 
89
93
  ## AUTHOR
90
94
 
@@ -92,4 +96,4 @@ Postmodern <postmodern.mod3@gmail.com>
92
96
 
93
97
  ## SEE ALSO
94
98
 
95
- ronin-typo(1) ronin-homoglyph(1)
99
+ [ronin-bitsquat](ronin-bitsquat.1.md) [ronin-typo](ronin-typo.1.md) [ronin-homoglyph](ronin-homoglyph.1.md)
@@ -0,0 +1,40 @@
1
+ .\" Generated by kramdown-man 1.0.1
2
+ .\" https://github.com/postmodern/kramdown-man#readme
3
+ .TH ronin-bitsquat 1 "2023-02-01" Ronin "User Manuals"
4
+ .SH NAME
5
+ .PP
6
+ ronin\-bitsquat \- Finds bit\-flips of a domain
7
+ .SH SYNOPSIS
8
+ .PP
9
+ \fBronin bitsquat\fR \[lB]\fIoptions\fP\[rB] \[lB]\fIDOMAIN\fP \.\.\.\[rB]
10
+ .SH DESCRIPTION
11
+ .PP
12
+ Bitflips a domain and checks if it has any DNS records\.
13
+ .SH ARGUMENTS
14
+ .TP
15
+ \fIDOMAIN\fP
16
+ A domain to bitflip and query\.
17
+ .SH OPTIONS
18
+ .TP
19
+ \fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
20
+ Optional file to read domains from\.
21
+ .TP
22
+ \fB\-\-has\-addresses\fR
23
+ Print bitsquat domains with addresses\.
24
+ .TP
25
+ \fB\-\-registered\fR
26
+ Print bitsquat domains that are already registered\.
27
+ .TP
28
+ \fB\-\-unregistered\fR
29
+ Print bitsquat domains that can be registered\.
30
+ .TP
31
+ \fB\-h\fR, \fB\-\-help\fR
32
+ Print help information\.
33
+ .SH AUTHOR
34
+ .PP
35
+ Postmodern
36
+ .MT postmodern\.mod3\[at]gmail\.com
37
+ .ME
38
+ .SH SEE ALSO
39
+ .PP
40
+ .BR ronin\-bitflip (1)
@@ -0,0 +1,43 @@
1
+ # ronin-bitsquat 1 "2023-02-01" Ronin "User Manuals"
2
+
3
+ ## NAME
4
+
5
+ ronin-bitsquat - Finds bit-flips of a domain
6
+
7
+ ## SYNOPSIS
8
+
9
+ `ronin bitsquat` [*options*] [*DOMAIN* ...]
10
+
11
+ ## DESCRIPTION
12
+
13
+ Bitflips a domain and checks if it has any DNS records.
14
+
15
+ ## ARGUMENTS
16
+
17
+ *DOMAIN*
18
+ : A domain to bitflip and query.
19
+
20
+ ## OPTIONS
21
+
22
+ `-f`, `--file` *FILE*
23
+ : Optional file to read domains from.
24
+
25
+ `--has-addresses`
26
+ : Print bitsquat domains with addresses.
27
+
28
+ `--registered`
29
+ : Print bitsquat domains that are already registered.
30
+
31
+ `--unregistered`
32
+ : Print bitsquat domains that can be registered.
33
+
34
+ `-h`, `--help`
35
+ : Print help information.
36
+
37
+ ## AUTHOR
38
+
39
+ Postmodern <postmodern.mod3@gmail.com>
40
+
41
+ ## SEE ALSO
42
+
43
+ [ronin-bitflip](ronin-bitflip.1.md)
@@ -1,99 +1,89 @@
1
- .\" Generated by kramdown-man 0.1.8
1
+ .\" Generated by kramdown-man 1.0.1
2
2
  .\" https://github.com/postmodern/kramdown-man#readme
3
3
  .TH ronin-cert-dump 1 "2023-02-01" Ronin "User Manuals"
4
- .LP
4
+ .SH NAME
5
+ .PP
6
+ ronin\-cert\-dump \- Prints SSL\[sl]TLS certificate information
5
7
  .SH SYNOPSIS
6
- .LP
7
- .HP
8
- \fBronin cert-dump\fR \[lB]\fIoptions\fP\[rB] \[lC]\fIHOST\fP:\fIPORT\fP \[or] \fIURL\fP \[or] \fIFILE\fP\[rC] \.\.\.
9
- .LP
8
+ .PP
9
+ \fBronin cert\-dump\fR \[lB]\fIoptions\fP\[rB] \[lC]\fIHOST\fP:\fIPORT\fP \[or] \fIURL\fP \[or] \fIFILE\fP\[rC] \.\.\.
10
10
  .SH DESCRIPTION
11
- .LP
12
11
  .PP
13
12
  Prints SSL\[sl]TLS certificate information for one or more SSL\[sl]TLS services,
14
- \fBhttps://\fR URLs, or certificate files\.
15
- .LP
13
+ \fBhttps:\[sl]\[sl]\fR URLs, or certificate files\.
16
14
  .SH ARGUMENTS
17
- .LP
18
15
  .TP
19
16
  \fIHOST\fP:\fIPORT\fP
20
17
  A remote TCP service to retrieve the SSL\[sl]TLS certificate from and print\.
21
- .LP
22
18
  .TP
23
19
  \fIURL\fP
24
20
  An URL to retrieve the SSL\[sl]TLS certificate from and print\.
25
- .LP
26
21
  .TP
27
22
  \fIFILE\fP
28
23
  A SSL\[sl]TLS certificate file to print\.
29
- .LP
30
24
  .SH OPTIONS
31
- .LP
32
25
  .TP
33
- \fB-f\fR, \fB--file\fR \fIFILE\fP
26
+ \fB\-f\fR, \fB\-\-file\fR \fIFILE\fP
34
27
  Optional file to read target values from\.
35
- .LP
36
28
  .TP
37
- \fB-C\fR, \fB--common-name\fR
29
+ \fB\-C\fR, \fB\-\-common\-name\fR
38
30
  Only prints the Common Name (CN) for each certificate\.
39
- .LP
40
31
  .TP
41
- \fB-A\fR, \fB--subject-alt-names\fR
32
+ \fB\-A\fR, \fB\-\-subject\-alt\-names\fR
42
33
  Only prints the \fBsubjectAltName\fRs for each certificate\.
43
- .LP
44
34
  .TP
45
- \fB-E\fR, \fB--extensions\fR
35
+ \fB\-E\fR, \fB\-\-extensions\fR
46
36
  Also prints the extensions for each certificate\.
47
- .LP
48
37
  .TP
49
- \fB-h\fR, \fB--help\fR
38
+ \fB\-h\fR, \fB\-\-help\fR
50
39
  Print help information\.
51
- .LP
52
40
  .SH EXAMPLES
53
- .LP
54
41
  .PP
55
42
  Print the certificate information for the cert file:
56
- .LP
57
- .nf
58
- ronin cert\-dump ssl\.crt
59
- .fi
60
- .LP
43
+ .PP
44
+ .RS 4
45
+ .EX
46
+ \[Do] ronin cert\-dump ssl\.crt
47
+ .EE
48
+ .RE
61
49
  .PP
62
50
  Print the certificate information for a SSL\[sl]TLS service:
63
- .LP
64
- .nf
65
- ronin cert\-dump github\.com:443
66
- .fi
67
- .LP
51
+ .PP
52
+ .RS 4
53
+ .EX
54
+ \[Do] ronin cert\-dump github\.com:443
55
+ .EE
56
+ .RE
68
57
  .PP
69
58
  Print the certificate information for a URL:
70
- .LP
71
- .nf
72
- ronin cert\-dump https:\[sl]\[sl]github\.com
73
- .fi
74
- .LP
59
+ .PP
60
+ .RS 4
61
+ .EX
62
+ \[Do] ronin cert\-dump https:\[sl]\[sl]github\.com
63
+ .EE
64
+ .RE
75
65
  .PP
76
66
  Only print the Common Name (CN) for a SSL\[sl]TLS service:
77
- .LP
78
- .nf
79
- ronin cert\-dump \-C 93\.184\.216\.34:443
80
- .fi
81
- .LP
67
+ .PP
68
+ .RS 4
69
+ .EX
70
+ \[Do] ronin cert\-dump \-C 93\.184\.216\.34:443
71
+ .EE
72
+ .RE
82
73
  .PP
83
74
  Only print the \fBsubjectAltName\fRs for a SSL\[sl]TLS service:
84
- .LP
85
- .nf
86
- ronin cert\-dump \-A wired\.com:443
87
- .fi
88
- .LP
75
+ .PP
76
+ .RS 4
77
+ .EX
78
+ \[Do] ronin cert\-dump \-A wired\.com:443
79
+ .EE
80
+ .RE
89
81
  .SH AUTHOR
90
- .LP
91
82
  .PP
92
83
  Postmodern
93
84
  .MT postmodern\.mod3\[at]gmail\.com
94
85
  .ME
95
- .LP
96
86
  .SH SEE ALSO
97
- .LP
98
87
  .PP
99
- ronin\-cert\-grab(1) ronin\-cert\-gen(1)
88
+ .BR ronin\-cert\-grab (1)
89
+ .BR ronin\-cert\-gen (1)
@@ -1,5 +1,9 @@
1
1
  # ronin-cert-dump 1 "2023-02-01" Ronin "User Manuals"
2
2
 
3
+ ## NAME
4
+
5
+ ronin-cert-dump - Prints SSL/TLS certificate information
6
+
3
7
  ## SYNOPSIS
4
8
 
5
9
  `ronin cert-dump` [*options*] {*HOST*:*PORT* \| *URL* \| *FILE*} ...
@@ -12,52 +16,52 @@ Prints SSL/TLS certificate information for one or more SSL/TLS services,
12
16
  ## ARGUMENTS
13
17
 
14
18
  *HOST*:*PORT*
15
- A remote TCP service to retrieve the SSL/TLS certificate from and print.
19
+ : A remote TCP service to retrieve the SSL/TLS certificate from and print.
16
20
 
17
21
  *URL*
18
- An URL to retrieve the SSL/TLS certificate from and print.
22
+ : An URL to retrieve the SSL/TLS certificate from and print.
19
23
 
20
24
  *FILE*
21
- A SSL/TLS certificate file to print.
25
+ : A SSL/TLS certificate file to print.
22
26
 
23
27
  ## OPTIONS
24
28
 
25
29
  `-f`, `--file` *FILE*
26
- Optional file to read target values from.
30
+ : Optional file to read target values from.
27
31
 
28
32
  `-C`, `--common-name`
29
- Only prints the Common Name (CN) for each certificate.
33
+ : Only prints the Common Name (CN) for each certificate.
30
34
 
31
35
  `-A`, `--subject-alt-names`
32
- Only prints the `subjectAltName`s for each certificate.
36
+ : Only prints the `subjectAltName`s for each certificate.
33
37
 
34
38
  `-E`, `--extensions`
35
- Also prints the extensions for each certificate.
39
+ : Also prints the extensions for each certificate.
36
40
 
37
41
  `-h`, `--help`
38
- Print help information.
42
+ : Print help information.
39
43
 
40
44
  ## EXAMPLES
41
45
 
42
46
  Print the certificate information for the cert file:
43
47
 
44
- ronin cert-dump ssl.crt
48
+ $ ronin cert-dump ssl.crt
45
49
 
46
50
  Print the certificate information for a SSL/TLS service:
47
51
 
48
- ronin cert-dump github.com:443
52
+ $ ronin cert-dump github.com:443
49
53
 
50
54
  Print the certificate information for a URL:
51
55
 
52
- ronin cert-dump https://github.com
56
+ $ ronin cert-dump https://github.com
53
57
 
54
58
  Only print the Common Name (CN) for a SSL/TLS service:
55
59
 
56
- ronin cert-dump -C 93.184.216.34:443
60
+ $ ronin cert-dump -C 93.184.216.34:443
57
61
 
58
62
  Only print the `subjectAltName`s for a SSL/TLS service:
59
63
 
60
- ronin cert-dump -A wired.com:443
64
+ $ ronin cert-dump -A wired.com:443
61
65
 
62
66
  ## AUTHOR
63
67
 
@@ -65,4 +69,4 @@ Postmodern <postmodern.mod3@gmail.com>
65
69
 
66
70
  ## SEE ALSO
67
71
 
68
- ronin-cert-grab(1) ronin-cert-gen(1)
72
+ [ronin-cert-grab](ronin-cert-grab.1.md) [ronin-cert-gen](ronin-cert-gen.1.md)