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.
- checksums.yaml +7 -0
- data/.editorconfig +11 -0
- data/.github/workflows/ruby.yml +28 -0
- data/.ruby-version +1 -0
- data/.yardopts +1 -1
- data/ChangeLog.md +28 -0
- data/Gemfile +6 -7
- data/README.md +53 -32
- data/Rakefile +1 -2
- data/gemspec.yml +16 -7
- data/lib/ronin/binary.rb +5 -5
- data/lib/ronin/binary/hexdump.rb +5 -5
- data/lib/ronin/binary/hexdump/parser.rb +5 -5
- data/lib/ronin/binary/struct.rb +5 -5
- data/lib/ronin/binary/template.rb +7 -7
- data/lib/ronin/extensions.rb +5 -5
- data/lib/ronin/extensions/enumerable.rb +5 -5
- data/lib/ronin/extensions/file.rb +37 -31
- data/lib/ronin/extensions/ip_addr.rb +6 -7
- data/lib/ronin/extensions/kernel.rb +5 -5
- data/lib/ronin/extensions/meta.rb +5 -5
- data/lib/ronin/extensions/regexp.rb +5 -5
- data/lib/ronin/extensions/resolv.rb +5 -5
- data/lib/ronin/extensions/string.rb +5 -5
- data/lib/ronin/formatting.rb +5 -5
- data/lib/ronin/formatting/binary.rb +5 -5
- data/lib/ronin/formatting/digest.rb +5 -5
- data/lib/ronin/formatting/extensions.rb +5 -5
- data/lib/ronin/formatting/extensions/binary.rb +5 -5
- data/lib/ronin/formatting/extensions/binary/array.rb +6 -6
- data/lib/ronin/formatting/extensions/binary/base64.rb +5 -5
- data/lib/ronin/formatting/extensions/binary/file.rb +5 -5
- data/lib/ronin/formatting/extensions/binary/float.rb +6 -6
- data/lib/ronin/formatting/extensions/binary/integer.rb +6 -6
- data/lib/ronin/formatting/extensions/binary/string.rb +6 -6
- data/lib/ronin/formatting/extensions/digest.rb +5 -5
- data/lib/ronin/formatting/extensions/digest/file.rb +5 -5
- data/lib/ronin/formatting/extensions/digest/string.rb +5 -5
- data/lib/ronin/formatting/extensions/html.rb +5 -5
- data/lib/ronin/formatting/extensions/html/integer.rb +5 -5
- data/lib/ronin/formatting/extensions/html/string.rb +7 -7
- data/lib/ronin/formatting/extensions/http.rb +5 -5
- data/lib/ronin/formatting/extensions/http/integer.rb +6 -6
- data/lib/ronin/formatting/extensions/http/string.rb +7 -7
- data/lib/ronin/formatting/extensions/sql.rb +5 -5
- data/lib/ronin/formatting/extensions/sql/string.rb +15 -13
- data/lib/ronin/formatting/extensions/text.rb +5 -5
- data/lib/ronin/formatting/extensions/text/array.rb +5 -5
- data/lib/ronin/formatting/extensions/text/string.rb +5 -5
- data/lib/ronin/formatting/html.rb +5 -5
- data/lib/ronin/formatting/http.rb +5 -5
- data/lib/ronin/formatting/sql.rb +5 -5
- data/lib/ronin/formatting/text.rb +5 -5
- data/lib/ronin/fuzzing.rb +5 -5
- data/lib/ronin/fuzzing/extensions.rb +5 -5
- data/lib/ronin/fuzzing/extensions/string.rb +5 -5
- data/lib/ronin/fuzzing/fuzzer.rb +5 -5
- data/lib/ronin/fuzzing/fuzzing.rb +7 -7
- data/lib/ronin/fuzzing/mutator.rb +5 -5
- data/lib/ronin/fuzzing/repeater.rb +5 -5
- data/lib/ronin/fuzzing/template.rb +5 -5
- data/lib/ronin/mixin.rb +2 -2
- data/lib/ronin/network.rb +5 -5
- data/lib/ronin/network/dns.rb +5 -5
- data/lib/ronin/network/esmtp.rb +5 -5
- data/lib/ronin/network/extensions.rb +5 -5
- data/lib/ronin/network/extensions/dns.rb +5 -5
- data/lib/ronin/network/extensions/dns/net.rb +5 -5
- data/lib/ronin/network/extensions/esmtp.rb +5 -5
- data/lib/ronin/network/extensions/esmtp/net.rb +5 -5
- data/lib/ronin/network/extensions/http.rb +5 -5
- data/lib/ronin/network/extensions/http/net.rb +5 -5
- data/lib/ronin/network/extensions/http/uri/http.rb +5 -5
- data/lib/ronin/network/extensions/imap.rb +5 -5
- data/lib/ronin/network/extensions/imap/net.rb +5 -5
- data/lib/ronin/network/extensions/pop3.rb +5 -5
- data/lib/ronin/network/extensions/pop3/net.rb +5 -5
- data/lib/ronin/network/extensions/smtp.rb +5 -5
- data/lib/ronin/network/extensions/smtp/net.rb +5 -5
- data/lib/ronin/network/extensions/ssl.rb +5 -5
- data/lib/ronin/network/extensions/ssl/net.rb +5 -5
- data/lib/ronin/network/extensions/tcp.rb +5 -5
- data/lib/ronin/network/extensions/tcp/net.rb +5 -5
- data/lib/ronin/network/extensions/telnet.rb +5 -5
- data/lib/ronin/network/extensions/telnet/net.rb +5 -5
- data/lib/ronin/network/extensions/udp.rb +5 -5
- data/lib/ronin/network/extensions/udp/net.rb +5 -5
- data/lib/ronin/network/ftp.rb +5 -5
- data/lib/ronin/network/http.rb +5 -5
- data/lib/ronin/network/http/exceptions.rb +5 -5
- data/lib/ronin/network/http/exceptions/unknown_request.rb +5 -5
- data/lib/ronin/network/http/http.rb +52 -57
- data/lib/ronin/network/http/proxy.rb +5 -5
- data/lib/ronin/network/imap.rb +5 -5
- data/lib/ronin/network/mixins.rb +5 -5
- data/lib/ronin/network/mixins/dns.rb +5 -5
- data/lib/ronin/network/mixins/esmtp.rb +5 -5
- data/lib/ronin/network/mixins/ftp.rb +5 -5
- data/lib/ronin/network/mixins/http.rb +7 -7
- data/lib/ronin/network/mixins/imap.rb +5 -5
- data/lib/ronin/network/mixins/mixin.rb +5 -5
- data/lib/ronin/network/mixins/pop3.rb +5 -5
- data/lib/ronin/network/mixins/smtp.rb +5 -5
- data/lib/ronin/network/mixins/ssl.rb +5 -5
- data/lib/ronin/network/mixins/tcp.rb +5 -5
- data/lib/ronin/network/mixins/telnet.rb +5 -5
- data/lib/ronin/network/mixins/udp.rb +5 -5
- data/lib/ronin/network/mixins/unix.rb +5 -5
- data/lib/ronin/network/network.rb +5 -5
- data/lib/ronin/network/pop3.rb +5 -5
- data/lib/ronin/network/proxy.rb +5 -5
- data/lib/ronin/network/smtp.rb +5 -5
- data/lib/ronin/network/smtp/email.rb +6 -6
- data/lib/ronin/network/smtp/smtp.rb +5 -5
- data/lib/ronin/network/ssl.rb +7 -7
- data/lib/ronin/network/tcp.rb +5 -5
- data/lib/ronin/network/tcp/proxy.rb +5 -5
- data/lib/ronin/network/tcp/tcp.rb +32 -23
- data/lib/ronin/network/telnet.rb +7 -5
- data/lib/ronin/network/udp.rb +5 -5
- data/lib/ronin/network/udp/proxy.rb +5 -5
- data/lib/ronin/network/udp/udp.rb +28 -26
- data/lib/ronin/network/unix.rb +7 -7
- data/lib/ronin/path.rb +32 -36
- data/lib/ronin/spec/ui/output.rb +5 -5
- data/lib/ronin/support.rb +5 -5
- data/lib/ronin/support/inflector.rb +5 -5
- data/lib/ronin/support/support.rb +5 -5
- data/lib/ronin/support/version.rb +6 -6
- data/lib/ronin/templates.rb +5 -5
- data/lib/ronin/templates/erb.rb +5 -5
- data/lib/ronin/templates/template.rb +5 -5
- data/lib/ronin/ui/output.rb +5 -5
- data/lib/ronin/ui/output/helpers.rb +5 -5
- data/lib/ronin/ui/output/output.rb +17 -21
- data/lib/ronin/ui/output/terminal.rb +5 -5
- data/lib/ronin/ui/output/terminal/color.rb +5 -5
- data/lib/ronin/ui/output/terminal/raw.rb +5 -5
- data/lib/ronin/ui/shell.rb +5 -5
- data/lib/ronin/wordlist.rb +7 -7
- data/ronin-support.gemspec +1 -0
- data/spec/binary/hexdump/parser_spec.rb +22 -22
- data/spec/binary/struct_spec.rb +56 -56
- data/spec/binary/template_spec.rb +106 -104
- data/spec/extensions/enumerable_spec.rb +4 -4
- data/spec/extensions/file_spec.rb +12 -14
- data/spec/extensions/ip_addr_spec.rb +30 -30
- data/spec/extensions/kernel_spec.rb +7 -7
- data/spec/extensions/regexp_spec.rb +69 -69
- data/spec/extensions/resolv_spec.rb +2 -2
- data/spec/extensions/string_spec.rb +30 -29
- data/spec/formatting/binary/array_spec.rb +2 -2
- data/spec/formatting/binary/base64_spec.rb +8 -8
- data/spec/formatting/binary/float_spec.rb +6 -4
- data/spec/formatting/binary/integer_spec.rb +25 -25
- data/spec/formatting/binary/string_spec.rb +32 -30
- data/spec/formatting/digest/string_spec.rb +5 -5
- data/spec/formatting/html/integer_spec.rb +6 -6
- data/spec/formatting/html/string_spec.rb +10 -10
- data/spec/formatting/http/integer_spec.rb +3 -3
- data/spec/formatting/http/string_spec.rb +5 -5
- data/spec/formatting/sql/string_spec.rb +21 -19
- data/spec/formatting/text/array_spec.rb +15 -15
- data/spec/formatting/text/string_spec.rb +33 -33
- data/spec/fuzzing/extensions/string_spec.rb +11 -11
- data/spec/fuzzing/fuzzer_spec.rb +15 -15
- data/spec/fuzzing/fuzzing_spec.rb +5 -5
- data/spec/fuzzing/mutator_spec.rb +15 -15
- data/spec/fuzzing/repeater_spec.rb +7 -7
- data/spec/fuzzing/template_spec.rb +11 -11
- data/spec/mixin_spec.rb +10 -12
- data/spec/network/dns_spec.rb +34 -32
- data/spec/network/ftp_spec.rb +9 -9
- data/spec/network/http/http_spec.rb +237 -144
- data/spec/network/http/proxy_spec.rb +37 -37
- data/spec/network/network_spec.rb +1 -1
- data/spec/network/proxy_spec.rb +19 -19
- data/spec/network/smtp/email_spec.rb +14 -14
- data/spec/network/ssl_spec.rb +9 -9
- data/spec/network/tcp/proxy_spec.rb +9 -7
- data/spec/network/tcp/tcp_spec.rb +161 -118
- data/spec/network/telnet_spec.rb +5 -5
- data/spec/network/udp/udp_spec.rb +123 -96
- data/spec/network/unix_spec.rb +24 -25
- data/spec/path_spec.rb +43 -18
- data/spec/spec_helper.rb +0 -1
- data/spec/support/inflector_spec.rb +4 -4
- data/spec/support_spec.rb +1 -1
- data/spec/templates/erb_spec.rb +3 -3
- data/spec/templates/template_spec.rb +10 -10
- data/spec/ui/shell_spec.rb +15 -15
- data/spec/wordlist_spec.rb +19 -19
- metadata +408 -366
- 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,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 '
|
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'
|
8
|
+
gem 'rake'
|
9
9
|
gem 'rubygems-tasks', '~> 0.1'
|
10
|
-
gem 'rspec', '~>
|
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
|
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
|
25
|
-
gem 'tzinfo', '~>
|
26
|
-
gem 'activesupport', '~>
|
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
|
-
#
|
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](
|
6
|
-
* [
|
7
|
-
|
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
|
-
|
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
|
-
|
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]
|
69
|
+
please see [Everyday Ronin].
|
60
70
|
|
61
71
|
## Requirements
|
62
72
|
|
63
|
-
* [Ruby]
|
64
|
-
* [chars]
|
65
|
-
|
66
|
-
* [
|
67
|
-
|
68
|
-
* [
|
69
|
-
|
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
|
-
###
|
85
|
+
### Gemfile
|
86
|
+
|
87
|
+
gem 'ronin-support', '~> 0.5'
|
88
|
+
|
89
|
+
## Development
|
84
90
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
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-
|
102
|
+
Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
|
93
103
|
|
94
|
-
This file is part of
|
104
|
+
This file is part of ronin-support.
|
95
105
|
|
96
|
-
|
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
|
-
|
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
|
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
|
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
|
3
|
-
description:
|
4
|
-
|
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
|
-
|
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:
|
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: ~>
|
25
|
-
yard: ~> 0.
|
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-
|
2
|
+
# Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
# This file is part of
|
4
|
+
# This file is part of ronin-support.
|
5
5
|
#
|
6
|
-
#
|
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
|
-
#
|
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
|
17
|
+
# along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
|
18
18
|
#
|
19
19
|
|
20
20
|
require 'ronin/binary/template'
|
data/lib/ronin/binary/hexdump.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
#
|
2
|
-
# Copyright (c) 2006-
|
2
|
+
# Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
# This file is part of
|
4
|
+
# This file is part of ronin-support.
|
5
5
|
#
|
6
|
-
#
|
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
|
-
#
|
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
|
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-
|
2
|
+
# Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
# This file is part of
|
4
|
+
# This file is part of ronin-support.
|
5
5
|
#
|
6
|
-
#
|
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
|
-
#
|
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
|
17
|
+
# along with ronin-support. If not, see <https://www.gnu.org/licenses/>.
|
18
18
|
#
|
19
19
|
|
20
20
|
require 'chars'
|
data/lib/ronin/binary/struct.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
#
|
2
|
-
# Copyright (c) 2006-
|
2
|
+
# Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
# This file is part of
|
4
|
+
# This file is part of ronin-support.
|
5
5
|
#
|
6
|
-
#
|
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
|
-
#
|
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
|
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-
|
2
|
+
# Copyright (c) 2006-2021 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
3
|
#
|
4
|
-
# This file is part of
|
4
|
+
# This file is part of ronin-support.
|
5
5
|
#
|
6
|
-
#
|
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
|
-
#
|
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
|
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
|
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
|
434
|
+
# @see https://rubydoc.info/stdlib/core/Array:pack
|
435
435
|
#
|
436
436
|
def to_s
|
437
437
|
@template
|