ronin-support 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (194) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +11 -0
  3. data/.github/workflows/ruby.yml +28 -0
  4. data/.ruby-version +1 -0
  5. data/.yardopts +1 -1
  6. data/ChangeLog.md +28 -0
  7. data/Gemfile +6 -7
  8. data/README.md +53 -32
  9. data/Rakefile +1 -2
  10. data/gemspec.yml +16 -7
  11. data/lib/ronin/binary.rb +5 -5
  12. data/lib/ronin/binary/hexdump.rb +5 -5
  13. data/lib/ronin/binary/hexdump/parser.rb +5 -5
  14. data/lib/ronin/binary/struct.rb +5 -5
  15. data/lib/ronin/binary/template.rb +7 -7
  16. data/lib/ronin/extensions.rb +5 -5
  17. data/lib/ronin/extensions/enumerable.rb +5 -5
  18. data/lib/ronin/extensions/file.rb +37 -31
  19. data/lib/ronin/extensions/ip_addr.rb +6 -7
  20. data/lib/ronin/extensions/kernel.rb +5 -5
  21. data/lib/ronin/extensions/meta.rb +5 -5
  22. data/lib/ronin/extensions/regexp.rb +5 -5
  23. data/lib/ronin/extensions/resolv.rb +5 -5
  24. data/lib/ronin/extensions/string.rb +5 -5
  25. data/lib/ronin/formatting.rb +5 -5
  26. data/lib/ronin/formatting/binary.rb +5 -5
  27. data/lib/ronin/formatting/digest.rb +5 -5
  28. data/lib/ronin/formatting/extensions.rb +5 -5
  29. data/lib/ronin/formatting/extensions/binary.rb +5 -5
  30. data/lib/ronin/formatting/extensions/binary/array.rb +6 -6
  31. data/lib/ronin/formatting/extensions/binary/base64.rb +5 -5
  32. data/lib/ronin/formatting/extensions/binary/file.rb +5 -5
  33. data/lib/ronin/formatting/extensions/binary/float.rb +6 -6
  34. data/lib/ronin/formatting/extensions/binary/integer.rb +6 -6
  35. data/lib/ronin/formatting/extensions/binary/string.rb +6 -6
  36. data/lib/ronin/formatting/extensions/digest.rb +5 -5
  37. data/lib/ronin/formatting/extensions/digest/file.rb +5 -5
  38. data/lib/ronin/formatting/extensions/digest/string.rb +5 -5
  39. data/lib/ronin/formatting/extensions/html.rb +5 -5
  40. data/lib/ronin/formatting/extensions/html/integer.rb +5 -5
  41. data/lib/ronin/formatting/extensions/html/string.rb +7 -7
  42. data/lib/ronin/formatting/extensions/http.rb +5 -5
  43. data/lib/ronin/formatting/extensions/http/integer.rb +6 -6
  44. data/lib/ronin/formatting/extensions/http/string.rb +7 -7
  45. data/lib/ronin/formatting/extensions/sql.rb +5 -5
  46. data/lib/ronin/formatting/extensions/sql/string.rb +15 -13
  47. data/lib/ronin/formatting/extensions/text.rb +5 -5
  48. data/lib/ronin/formatting/extensions/text/array.rb +5 -5
  49. data/lib/ronin/formatting/extensions/text/string.rb +5 -5
  50. data/lib/ronin/formatting/html.rb +5 -5
  51. data/lib/ronin/formatting/http.rb +5 -5
  52. data/lib/ronin/formatting/sql.rb +5 -5
  53. data/lib/ronin/formatting/text.rb +5 -5
  54. data/lib/ronin/fuzzing.rb +5 -5
  55. data/lib/ronin/fuzzing/extensions.rb +5 -5
  56. data/lib/ronin/fuzzing/extensions/string.rb +5 -5
  57. data/lib/ronin/fuzzing/fuzzer.rb +5 -5
  58. data/lib/ronin/fuzzing/fuzzing.rb +7 -7
  59. data/lib/ronin/fuzzing/mutator.rb +5 -5
  60. data/lib/ronin/fuzzing/repeater.rb +5 -5
  61. data/lib/ronin/fuzzing/template.rb +5 -5
  62. data/lib/ronin/mixin.rb +2 -2
  63. data/lib/ronin/network.rb +5 -5
  64. data/lib/ronin/network/dns.rb +5 -5
  65. data/lib/ronin/network/esmtp.rb +5 -5
  66. data/lib/ronin/network/extensions.rb +5 -5
  67. data/lib/ronin/network/extensions/dns.rb +5 -5
  68. data/lib/ronin/network/extensions/dns/net.rb +5 -5
  69. data/lib/ronin/network/extensions/esmtp.rb +5 -5
  70. data/lib/ronin/network/extensions/esmtp/net.rb +5 -5
  71. data/lib/ronin/network/extensions/http.rb +5 -5
  72. data/lib/ronin/network/extensions/http/net.rb +5 -5
  73. data/lib/ronin/network/extensions/http/uri/http.rb +5 -5
  74. data/lib/ronin/network/extensions/imap.rb +5 -5
  75. data/lib/ronin/network/extensions/imap/net.rb +5 -5
  76. data/lib/ronin/network/extensions/pop3.rb +5 -5
  77. data/lib/ronin/network/extensions/pop3/net.rb +5 -5
  78. data/lib/ronin/network/extensions/smtp.rb +5 -5
  79. data/lib/ronin/network/extensions/smtp/net.rb +5 -5
  80. data/lib/ronin/network/extensions/ssl.rb +5 -5
  81. data/lib/ronin/network/extensions/ssl/net.rb +5 -5
  82. data/lib/ronin/network/extensions/tcp.rb +5 -5
  83. data/lib/ronin/network/extensions/tcp/net.rb +5 -5
  84. data/lib/ronin/network/extensions/telnet.rb +5 -5
  85. data/lib/ronin/network/extensions/telnet/net.rb +5 -5
  86. data/lib/ronin/network/extensions/udp.rb +5 -5
  87. data/lib/ronin/network/extensions/udp/net.rb +5 -5
  88. data/lib/ronin/network/ftp.rb +5 -5
  89. data/lib/ronin/network/http.rb +5 -5
  90. data/lib/ronin/network/http/exceptions.rb +5 -5
  91. data/lib/ronin/network/http/exceptions/unknown_request.rb +5 -5
  92. data/lib/ronin/network/http/http.rb +52 -57
  93. data/lib/ronin/network/http/proxy.rb +5 -5
  94. data/lib/ronin/network/imap.rb +5 -5
  95. data/lib/ronin/network/mixins.rb +5 -5
  96. data/lib/ronin/network/mixins/dns.rb +5 -5
  97. data/lib/ronin/network/mixins/esmtp.rb +5 -5
  98. data/lib/ronin/network/mixins/ftp.rb +5 -5
  99. data/lib/ronin/network/mixins/http.rb +7 -7
  100. data/lib/ronin/network/mixins/imap.rb +5 -5
  101. data/lib/ronin/network/mixins/mixin.rb +5 -5
  102. data/lib/ronin/network/mixins/pop3.rb +5 -5
  103. data/lib/ronin/network/mixins/smtp.rb +5 -5
  104. data/lib/ronin/network/mixins/ssl.rb +5 -5
  105. data/lib/ronin/network/mixins/tcp.rb +5 -5
  106. data/lib/ronin/network/mixins/telnet.rb +5 -5
  107. data/lib/ronin/network/mixins/udp.rb +5 -5
  108. data/lib/ronin/network/mixins/unix.rb +5 -5
  109. data/lib/ronin/network/network.rb +5 -5
  110. data/lib/ronin/network/pop3.rb +5 -5
  111. data/lib/ronin/network/proxy.rb +5 -5
  112. data/lib/ronin/network/smtp.rb +5 -5
  113. data/lib/ronin/network/smtp/email.rb +6 -6
  114. data/lib/ronin/network/smtp/smtp.rb +5 -5
  115. data/lib/ronin/network/ssl.rb +7 -7
  116. data/lib/ronin/network/tcp.rb +5 -5
  117. data/lib/ronin/network/tcp/proxy.rb +5 -5
  118. data/lib/ronin/network/tcp/tcp.rb +32 -23
  119. data/lib/ronin/network/telnet.rb +7 -5
  120. data/lib/ronin/network/udp.rb +5 -5
  121. data/lib/ronin/network/udp/proxy.rb +5 -5
  122. data/lib/ronin/network/udp/udp.rb +28 -26
  123. data/lib/ronin/network/unix.rb +7 -7
  124. data/lib/ronin/path.rb +32 -36
  125. data/lib/ronin/spec/ui/output.rb +5 -5
  126. data/lib/ronin/support.rb +5 -5
  127. data/lib/ronin/support/inflector.rb +5 -5
  128. data/lib/ronin/support/support.rb +5 -5
  129. data/lib/ronin/support/version.rb +6 -6
  130. data/lib/ronin/templates.rb +5 -5
  131. data/lib/ronin/templates/erb.rb +5 -5
  132. data/lib/ronin/templates/template.rb +5 -5
  133. data/lib/ronin/ui/output.rb +5 -5
  134. data/lib/ronin/ui/output/helpers.rb +5 -5
  135. data/lib/ronin/ui/output/output.rb +17 -21
  136. data/lib/ronin/ui/output/terminal.rb +5 -5
  137. data/lib/ronin/ui/output/terminal/color.rb +5 -5
  138. data/lib/ronin/ui/output/terminal/raw.rb +5 -5
  139. data/lib/ronin/ui/shell.rb +5 -5
  140. data/lib/ronin/wordlist.rb +7 -7
  141. data/ronin-support.gemspec +1 -0
  142. data/spec/binary/hexdump/parser_spec.rb +22 -22
  143. data/spec/binary/struct_spec.rb +56 -56
  144. data/spec/binary/template_spec.rb +106 -104
  145. data/spec/extensions/enumerable_spec.rb +4 -4
  146. data/spec/extensions/file_spec.rb +12 -14
  147. data/spec/extensions/ip_addr_spec.rb +30 -30
  148. data/spec/extensions/kernel_spec.rb +7 -7
  149. data/spec/extensions/regexp_spec.rb +69 -69
  150. data/spec/extensions/resolv_spec.rb +2 -2
  151. data/spec/extensions/string_spec.rb +30 -29
  152. data/spec/formatting/binary/array_spec.rb +2 -2
  153. data/spec/formatting/binary/base64_spec.rb +8 -8
  154. data/spec/formatting/binary/float_spec.rb +6 -4
  155. data/spec/formatting/binary/integer_spec.rb +25 -25
  156. data/spec/formatting/binary/string_spec.rb +32 -30
  157. data/spec/formatting/digest/string_spec.rb +5 -5
  158. data/spec/formatting/html/integer_spec.rb +6 -6
  159. data/spec/formatting/html/string_spec.rb +10 -10
  160. data/spec/formatting/http/integer_spec.rb +3 -3
  161. data/spec/formatting/http/string_spec.rb +5 -5
  162. data/spec/formatting/sql/string_spec.rb +21 -19
  163. data/spec/formatting/text/array_spec.rb +15 -15
  164. data/spec/formatting/text/string_spec.rb +33 -33
  165. data/spec/fuzzing/extensions/string_spec.rb +11 -11
  166. data/spec/fuzzing/fuzzer_spec.rb +15 -15
  167. data/spec/fuzzing/fuzzing_spec.rb +5 -5
  168. data/spec/fuzzing/mutator_spec.rb +15 -15
  169. data/spec/fuzzing/repeater_spec.rb +7 -7
  170. data/spec/fuzzing/template_spec.rb +11 -11
  171. data/spec/mixin_spec.rb +10 -12
  172. data/spec/network/dns_spec.rb +34 -32
  173. data/spec/network/ftp_spec.rb +9 -9
  174. data/spec/network/http/http_spec.rb +237 -144
  175. data/spec/network/http/proxy_spec.rb +37 -37
  176. data/spec/network/network_spec.rb +1 -1
  177. data/spec/network/proxy_spec.rb +19 -19
  178. data/spec/network/smtp/email_spec.rb +14 -14
  179. data/spec/network/ssl_spec.rb +9 -9
  180. data/spec/network/tcp/proxy_spec.rb +9 -7
  181. data/spec/network/tcp/tcp_spec.rb +161 -118
  182. data/spec/network/telnet_spec.rb +5 -5
  183. data/spec/network/udp/udp_spec.rb +123 -96
  184. data/spec/network/unix_spec.rb +24 -25
  185. data/spec/path_spec.rb +43 -18
  186. data/spec/spec_helper.rb +0 -1
  187. data/spec/support/inflector_spec.rb +4 -4
  188. data/spec/support_spec.rb +1 -1
  189. data/spec/templates/erb_spec.rb +3 -3
  190. data/spec/templates/template_spec.rb +10 -10
  191. data/spec/ui/shell_spec.rb +15 -15
  192. data/spec/wordlist_spec.rb +19 -19
  193. metadata +408 -366
  194. data/.gemtest +0 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b09de7aeb48e4982f04cf079b79afdb6cdc5f133979440ee57470f7d121e3701
4
+ data.tar.gz: 17c1b5906bddf040dd705d4f3186db54dd8ca4a60789e77188d51ffd61d97ffa
5
+ SHA512:
6
+ metadata.gz: 1c897be3967938ebce021b834b504a453fbbceac6375a7733714cc7995265a28bd3f002124ed4fd78179f188240315bacd20618f120389f7b1ad1c022e4b313b
7
+ data.tar.gz: 322fd58c49d71eefd767bc11a451a6ec0a0b58c802b95b64423a9e554d0c5e1a26581be10bb4674fcc737e5e5e463801c0fad5a8a471e061f542352dc58c6b05
data/.editorconfig ADDED
@@ -0,0 +1,11 @@
1
+ root = true
2
+
3
+ [*]
4
+ end_of_line = lf
5
+ insert_final_newline = true
6
+ tab_width = 8
7
+ trim_trailing_whitespace = true
8
+
9
+ [{Gemfile,Rakefile,*.rb,*.gemspec,*.yml}]
10
+ indent_style = space
11
+ indent_size = 2
@@ -0,0 +1,28 @@
1
+ name: CI
2
+
3
+ on: [ push, pull_request ]
4
+
5
+ jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ ruby:
12
+ - 2.4
13
+ - 2.5
14
+ - 2.6
15
+ - 2.7
16
+ - 3.0
17
+ - jruby
18
+ name: Ruby ${{ matrix.ruby }}
19
+ steps:
20
+ - uses: actions/checkout@v2
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ - name: Install dependencies
26
+ run: bundle install --jobs 4 --retry 3
27
+ - name: Run tests
28
+ run: bundle exec rake test
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-2.7
data/.yardopts CHANGED
@@ -1,2 +1,2 @@
1
- --markup markdown --title 'Ronin Support Documentation' --protected
1
+ --markup markdown --title 'ronin-support Documentation' --protected
2
2
  --plugin yard-parameters
data/ChangeLog.md CHANGED
@@ -1,3 +1,31 @@
1
+ ### 0.5.2 / 2021-02-28
2
+
3
+ * Ruby 3.0 support:
4
+ * Temporarily added the [net-telnet] gem as a dependency, since Ruby 3.0 moved
5
+ `net/telnet` out of the stdlib.
6
+ * {Ronin::Fuzzing::SHORT_LENGTHS} and {Ronin::Fuzzing::LONG_LENGTHS} are now
7
+ `Set` objects, instead of `SortedSet`, which Ruby 3.0 moved out of stdlib.
8
+ * Use `URI::DEFAULT_PARSER.escape` / `.unescape` in {String#uri_encode},
9
+ {String#uri_decode}, and {Integer#uri_encode} now that `URI.encode`,
10
+ `URI.decode`, `URI.escape`, `URI.unescape` have all been removed in
11
+ Ruby 3.0.
12
+ * Deprecated {Ronin::Network::Telnet}.
13
+ * Allow {Ronin::Path#initialize} to accept a separator argument.
14
+ * No longer bind new sockets to `0.0.0.0` by default in {Ronin::Network::TCP}
15
+ and {Ronin::Network::UDP}. `0.0.0.0` is the IPv4 Any address, which makes the
16
+ socket IPv4 and thus incompatible with IPv6 hosts.
17
+ * Fixed a bug in {Ronin::Network::UDP#udp_open?} where it would always timeout
18
+ and return `nil`, even when the UDP port was open.
19
+ * Filter out `nil` or empty `:query` options passed to
20
+ {Ronin::Network::HTTP.request}.
21
+ * No longer append the query String to the path in
22
+ {Ronin::Network::HTTP.expand_url}.
23
+ * Support escaping `"\`"` tick-marks in {String#sql_escape}.
24
+ * Allow setting the request body or form-data in {Ronin::Network::HTTP.request},
25
+ even for request types that typically do not use a body or form-data.
26
+
27
+ [net-telnet]: https://github.com/ruby/net-telnet
28
+
1
29
  ### 0.5.1 / 2012-06-29
2
30
 
3
31
  * Added {Ronin::Binary::Template#inspect}.
data/Gemfile CHANGED
@@ -5,25 +5,24 @@ gemspec
5
5
  gem 'jruby-openssl', '~> 0.7.0', :platforms => :jruby
6
6
 
7
7
  group :development do
8
- gem 'rake', '~> 0.8'
8
+ gem 'rake'
9
9
  gem 'rubygems-tasks', '~> 0.1'
10
- gem 'rspec', '~> 2.8'
10
+ gem 'rspec', '~> 3.0'
11
11
 
12
12
  gem 'ripl', '~> 0.3'
13
13
  gem 'ripl-multi_line', '~> 0.2'
14
14
  gem 'ripl-auto_indent', '~> 0.1'
15
15
  gem 'ripl-color_result', '~> 0.3'
16
- gem 'rspec', '~> 2.8'
17
16
 
18
- gem 'kramdown', '~> 0.12'
17
+ gem 'kramdown', '~> 2.0'
19
18
  end
20
19
 
21
20
  group :test do
22
21
  case ENV['INFLECTOR']
23
22
  when 'activesupport'
24
- gem 'i18n', '~> 0.4'
25
- gem 'tzinfo', '~> 0.3.0'
26
- gem 'activesupport', '~> 3.0.0'
23
+ gem 'i18n', '~> 1.0'
24
+ gem 'tzinfo', '~> 2.0'
25
+ gem 'activesupport', '~> 6.0'
27
26
  else
28
27
  gem 'dm-core', '~> 1.0'
29
28
  end
data/README.md CHANGED
@@ -1,17 +1,24 @@
1
- # Ronin Support
1
+ # ronin-support
2
+
3
+ [![CI](https://github.com/ronin-rb/ronin-support/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-support/actions/workflows/ruby.yml)
4
+ [![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-support.svg)](https://codeclimate.com/github/ronin-rb/ronin-support)
2
5
 
3
6
  * [Source](https://github.com/ronin-ruby/ronin-support)
4
7
  * [Issues](https://github.com/ronin-ruby/ronin-support/issues)
5
- * [Documentation](http://ronin-ruby.github.com/docs/ronin-support/frames)
6
- * [Mailing List](https://groups.google.com/group/ronin-ruby)
7
- * [irc.freenode.net #ronin](http://ronin-ruby.github.com/irc/)
8
+ * [Documentation](https://ronin-rb.dev/docs/ronin-support/frames)
9
+ * [Slack](https://ronin-rb.slack.com) |
10
+ [Discord](https://discord.gg/6WAb3PsVX9) |
11
+ [Twitter](https://twitter.com/ronin_rb) |
12
+ [IRC](https://ronin-rb.dev/irc/)
8
13
 
9
14
  ## Description
10
15
 
11
- Ronin Support is a support library for Ronin. Ronin Support contains many of
16
+ ronin-support is a support library for ronin-rb. ronin-support contains many of
12
17
  the convenience methods used by Ronin and additional libraries.
13
18
 
14
- Ronin is a Ruby platform for exploit development and security research.
19
+ It's like activesupport, but for hacking!
20
+
21
+ [ronin-rb] is a Ruby platform for exploit development and security research.
15
22
  Ronin allows for the rapid development and distribution of code, exploits
16
23
  or payloads over many common Source-Code-Management (SCM) systems.
17
24
 
@@ -20,6 +27,7 @@ or payloads over many common Source-Code-Management (SCM) systems.
20
27
  * Provides convenience methods for:
21
28
  * Formatting data:
22
29
  * Binary
30
+ * Structs
23
31
  * Text
24
32
  * URIs
25
33
  * HTTP
@@ -27,6 +35,8 @@ or payloads over many common Source-Code-Management (SCM) systems.
27
35
  * JavaScript
28
36
  * SQL
29
37
  * Fuzzing
38
+ * Generating
39
+ * Mutating
30
40
  * Networking:
31
41
  * DNS
32
42
  * UNIX
@@ -56,52 +66,63 @@ or payloads over many common Source-Code-Management (SCM) systems.
56
66
  ## Examples
57
67
 
58
68
  For examples of the convenience methods provided by ronin-support,
59
- please see [Everyday Ronin](http://ronin-ruby.github.com/guides/everyday_ronin.html).
69
+ please see [Everyday Ronin].
60
70
 
61
71
  ## Requirements
62
72
 
63
- * [Ruby](http://www.ruby-lang.org/) >= 1.8.7
64
- * [chars](https://github.com/postmodern/chars#readme)
65
- ~> 0.2
66
- * [hexdump](https://github.com/postmodern/hexdump#readme)
67
- ~> 0.1
68
- * [combinatorics](https://github.com/postmodern/combinatorics#readme)
69
- ~> 0.4
70
- * [uri-query_params](https://github.com/postmodern/uri-query_params#readme)
71
- ~> 0.6
72
- * [data_paths](https://github.com/postmodern/data_paths#readme)
73
- ~> 0.3
74
- * [parameters](https://github.com/postmodern/parameters#readme)
75
- ~> 0.4
73
+ * [Ruby] >= 1.8.7
74
+ * [chars] ~> 0.2
75
+ * [hexdump] ~> 0.1
76
+ * [combinatorics] ~> 0.4
77
+ * [uri-query_params] ~> 0.6
78
+ * [data_paths] ~> 0.3
79
+ * [parameters] ~> 0.4
76
80
 
77
81
  ## Install
78
82
 
79
- ### Stable
80
-
81
83
  $ gem install ronin-support
82
84
 
83
- ### Edge
85
+ ### Gemfile
86
+
87
+ gem 'ronin-support', '~> 0.5'
88
+
89
+ ## Development
84
90
 
85
- $ git clone git://github.com/ronin-ruby/ronin-support.git
86
- $ cd ronin-support/
87
- $ bundle install
88
- $ rake console
91
+ 1. [Fork It!](https://github.com/ronin-rb/ronin-support/fork)
92
+ 2. Clone It!
93
+ 3. `cd ronin-support`
94
+ 4. `bundle install`
95
+ 5. `git checkout -b my_feature`
96
+ 6. Code It!
97
+ 7. `bundle exec rake spec`
98
+ 8. `git push origin my_feature`
89
99
 
90
100
  ## License
91
101
 
92
- Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
102
+ Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
93
103
 
94
- This file is part of Ronin Support.
104
+ This file is part of ronin-support.
95
105
 
96
- Ronin Support is free software: you can redistribute it and/or modify
106
+ ronin-support is free software: you can redistribute it and/or modify
97
107
  it under the terms of the GNU Lesser General Public License as published
98
108
  by the Free Software Foundation, either version 3 of the License, or
99
109
  (at your option) any later version.
100
110
 
101
- Ronin Support is distributed in the hope that it will be useful,
111
+ ronin-support is distributed in the hope that it will be useful,
102
112
  but WITHOUT ANY WARRANTY; without even the implied warranty of
103
113
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
104
114
  GNU Lesser General Public License for more details.
105
115
 
106
116
  You should have received a copy of the GNU Lesser General Public License
107
- along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
117
+ along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
118
+
119
+ [ronin-rb]: https://ronin-rb.dev
120
+ [Everyday Ronin]: https://ronin-rb.dev/guides/everyday_ronin.html
121
+ [Ruby]: https://www.ruby-lang.org/
122
+
123
+ [chars]: https://github.com/postmodern/chars#readme
124
+ [hexdump]: https://github.com/postmodern/hexdump#readme
125
+ [combinatorics]: https://github.com/postmodern/combinatorics#readme
126
+ [uri-query_params]: https://github.com/postmodern/uri-query_params#readme
127
+ [data_paths]: https://github.com/postmodern/data_paths#readme
128
+ [parameters]: https://github.com/postmodern/parameters#readme
data/Rakefile CHANGED
@@ -20,7 +20,6 @@ require 'rake'
20
20
 
21
21
  require 'rubygems/tasks'
22
22
  Gem::Tasks.new(:sign => {:checksum => true, :pgp => true}) do |tasks|
23
- tasks.scm.tag.format = 'v%s'
24
23
  tasks.console.command = 'ripl'
25
24
  tasks.console.options = %w[
26
25
  -rripl/multi_line
@@ -39,7 +38,7 @@ namespace :spec do
39
38
  end
40
39
  end
41
40
 
42
- task :test => :spec
41
+ task :test => :spec
43
42
  task :default => :spec
44
43
 
45
44
  require 'yard'
data/gemspec.yml CHANGED
@@ -1,18 +1,27 @@
1
1
  name: ronin-support
2
- summary: A support library for Ronin.
3
- description:
4
- Ronin Support is a support library for Ronin. Ronin Support contains many
2
+ summary: A support library for ronin-rb.
3
+ description: |
4
+ ronin-support is a support library for ronin-rb. ronin-support contains many
5
5
  of the convenience methods used by Ronin and additional libraries.
6
6
 
7
- license: LGPL-3
7
+ It's like activesupport, but for hacking!
8
+
9
+ license: LGPL-3.0
8
10
  authors: Postmodern
9
11
  email: postmodern.mod3@gmail.com
10
- homepage: http://ronin-ruby.github.com/
12
+ homepage: https://ronin-rb.dev
11
13
  has_yard: true
12
14
 
15
+ metadata:
16
+ documentation_uri: https://ronin-rb.dev/docs/ronin-support/frames
17
+ source_code_uri: https://github.com/ronin-rb/ronin-support
18
+ bug_tracker_uri: https://github.com/ronin-rb/ronin-support/issues
19
+ changelog_uri: https://github.com/ronin-rb/ronin-support/blob/master/ChangeLog.md
20
+
13
21
  required_ruby_version: ">= 1.8.7"
14
22
 
15
23
  dependencies:
24
+ net-telnet: ~> 0.1
16
25
  chars: ~> 0.2
17
26
  hexdump: ~> 0.1
18
27
  combinatorics: ~> 0.4
@@ -21,6 +30,6 @@ dependencies:
21
30
  parameters: ~> 0.4
22
31
 
23
32
  development_dependencies:
24
- bundler: ~> 1.0
25
- yard: ~> 0.8
33
+ bundler: ~> 2.0
34
+ yard: ~> 0.9
26
35
  yard-parameters: ~> 0.1
data/lib/ronin/binary.rb CHANGED
@@ -1,20 +1,20 @@
1
1
  #
2
- # Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # This file is part of Ronin Support.
4
+ # This file is part of ronin-support.
5
5
  #
6
- # Ronin Support is free software: you can redistribute it and/or modify
6
+ # ronin-support is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU Lesser General Public License as published
8
8
  # by the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # Ronin Support is distributed in the hope that it will be useful,
11
+ # ronin-support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU Lesser General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU Lesser General Public License
17
- # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
17
+ # along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
18
18
  #
19
19
 
20
20
  require 'ronin/binary/template'
@@ -1,20 +1,20 @@
1
1
  #
2
- # Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # This file is part of Ronin Support.
4
+ # This file is part of ronin-support.
5
5
  #
6
- # Ronin Support is free software: you can redistribute it and/or modify
6
+ # ronin-support is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU Lesser General Public License as published
8
8
  # by the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # Ronin Support is distributed in the hope that it will be useful,
11
+ # ronin-support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU Lesser General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU Lesser General Public License
17
- # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
17
+ # along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
18
18
  #
19
19
 
20
20
  require 'ronin/binary/hexdump/parser'
@@ -1,20 +1,20 @@
1
1
  #
2
- # Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # This file is part of Ronin Support.
4
+ # This file is part of ronin-support.
5
5
  #
6
- # Ronin Support is free software: you can redistribute it and/or modify
6
+ # ronin-support is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU Lesser General Public License as published
8
8
  # by the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # Ronin Support is distributed in the hope that it will be useful,
11
+ # ronin-support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU Lesser General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU Lesser General Public License
17
- # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
17
+ # along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
18
18
  #
19
19
 
20
20
  require 'chars'
@@ -1,20 +1,20 @@
1
1
  #
2
- # Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # This file is part of Ronin Support.
4
+ # This file is part of ronin-support.
5
5
  #
6
- # Ronin Support is free software: you can redistribute it and/or modify
6
+ # ronin-support is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU Lesser General Public License as published
8
8
  # by the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # Ronin Support is distributed in the hope that it will be useful,
11
+ # ronin-support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU Lesser General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU Lesser General Public License
17
- # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
17
+ # along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
18
18
  #
19
19
 
20
20
  require 'ronin/binary/template'
@@ -1,20 +1,20 @@
1
1
  #
2
- # Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
2
+ # Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # This file is part of Ronin Support.
4
+ # This file is part of ronin-support.
5
5
  #
6
- # Ronin Support is free software: you can redistribute it and/or modify
6
+ # ronin-support is free software: you can redistribute it and/or modify
7
7
  # it under the terms of the GNU Lesser General Public License as published
8
8
  # by the Free Software Foundation, either version 3 of the License, or
9
9
  # (at your option) any later version.
10
10
  #
11
- # Ronin Support is distributed in the hope that it will be useful,
11
+ # ronin-support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
14
  # GNU Lesser General Public License for more details.
15
15
  #
16
16
  # You should have received a copy of the GNU Lesser General Public License
17
- # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
17
+ # along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
18
18
  #
19
19
 
20
20
  require 'set'
@@ -91,7 +91,7 @@ module Ronin
91
91
  # * `:long_be` (`l>`) - signed long integer, little endian.
92
92
  # * `:long_long_be` (`q>`) - signed quad integer, little endian.
93
93
  #
94
- # @see http://rubydoc.info/stdlib/core/Array:pack
94
+ # @see https://rubydoc.info/stdlib/core/Array:pack
95
95
  #
96
96
  # @api semipbulic
97
97
  #
@@ -431,7 +431,7 @@ module Ronin
431
431
  # @return [String]
432
432
  # The template String.
433
433
  #
434
- # @see http://rubydoc.info/stdlib/core/Array:pack
434
+ # @see https://rubydoc.info/stdlib/core/Array:pack
435
435
  #
436
436
  def to_s
437
437
  @template