ronin-support 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.md +17 -0
- data/Gemfile +5 -5
- data/README.md +10 -9
- data/Rakefile +1 -0
- data/gemspec.yml +2 -2
- data/lib/ronin/formatting/extensions/binary/string.rb +1 -2
- data/lib/ronin/network.rb +1 -0
- data/lib/ronin/network/extensions.rb +2 -0
- data/lib/ronin/network/extensions/dns.rb +20 -0
- data/lib/ronin/network/extensions/dns/net.rb +24 -0
- data/lib/ronin/network/extensions/http/uri/http.rb +47 -45
- data/lib/ronin/network/http/http.rb +26 -25
- data/lib/ronin/network/mixins/dns.rb +1 -1
- data/lib/ronin/network/mixins/esmtp.rb +3 -1
- data/lib/ronin/network/mixins/http.rb +23 -21
- data/lib/ronin/network/mixins/imap.rb +3 -1
- data/lib/ronin/network/mixins/pop3.rb +3 -1
- data/lib/ronin/network/mixins/smtp.rb +3 -1
- data/lib/ronin/network/mixins/ssl.rb +5 -1
- data/lib/ronin/network/mixins/tcp.rb +17 -1
- data/lib/ronin/network/mixins/telnet.rb +3 -1
- data/lib/ronin/network/mixins/udp.rb +12 -0
- data/lib/ronin/network/smtp/smtp.rb +2 -2
- data/lib/ronin/network/ssl.rb +122 -117
- data/lib/ronin/network/tcp.rb +9 -9
- data/lib/ronin/network/telnet.rb +1 -1
- data/lib/ronin/network/udp.rb +7 -7
- data/lib/ronin/support/support.rb +1 -0
- data/lib/ronin/support/version.rb +1 -1
- data/lib/ronin/ui/output/output.rb +1 -1
- data/lib/ronin/ui/output/terminal/color.rb +5 -5
- data/lib/ronin/ui/output/terminal/raw.rb +5 -5
- data/spec/extensions/string_spec.rb +14 -12
- data/spec/network/dns_spec.rb +6 -6
- data/spec/network/tcp_spec.rb +25 -22
- data/spec/network/udp_spec.rb +24 -21
- metadata +25 -23
data/ChangeLog.md
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
### 0.4.1 / 2012-04-01
|
2
|
+
|
3
|
+
* Added "WARNING" messages for when ronin-support cannot load `openssl` or
|
4
|
+
`zlib`.
|
5
|
+
* Added YARD `@see` tags to all methods defined in {Ronin::Network::Mixins}.
|
6
|
+
* Use `$stdout`, `$stderr` instead of `STDOUT`, `STDERR`, respectively.
|
7
|
+
* Included {Ronin::Network::DNS} into {Net} as well.
|
8
|
+
* Included {Ronin::Network::TCP} into {Ronin::Network::SSL}.
|
9
|
+
* Require `ronin/network/ssl` in `ronin/network`.
|
10
|
+
* Require `ronin/network/extensions/ssl` in `ronin/network/extensions`.
|
11
|
+
* Included {Ronin::Network::SSL} into {Ronin::Support}.
|
12
|
+
* Default all `local_port` variables to `0` instead of `nil`. Workaround
|
13
|
+
for JRuby bug [#6574](http://jira.codehaus.org/browse/JRUBY-6574).
|
14
|
+
* Fixed a major syntax error in `ronin/network/ssl`, that caused the `ssl_*`
|
15
|
+
methods to not be defined in {Ronin::Network::SSL}.
|
16
|
+
* Fixed YARD `@see` tags in the {Ronin::Network} modules.
|
17
|
+
|
1
18
|
### 0.4.0 / 2012-02-12
|
2
19
|
|
3
20
|
* Require uri-query_params ~> 0.6.
|
data/Gemfile
CHANGED
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
|
|
3
3
|
gemspec
|
4
4
|
|
5
5
|
platforms :jruby do
|
6
|
-
gem 'jruby-openssl', '~> 0.7
|
6
|
+
gem 'jruby-openssl', '~> 0.7'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :development do
|
@@ -17,12 +17,12 @@ end
|
|
17
17
|
|
18
18
|
group :test do
|
19
19
|
gem 'i18n', '~> 0.4'
|
20
|
-
gem 'tzinfo', '~> 0.3
|
20
|
+
gem 'tzinfo', '~> 0.3'
|
21
21
|
|
22
22
|
INFLECTORS = {
|
23
|
-
'activesupport' => '~> 3.0
|
24
|
-
'dm-core'
|
25
|
-
'extlib'
|
23
|
+
'activesupport' => '~> 3.0',
|
24
|
+
'dm-core' => '~> 1.0',
|
25
|
+
'extlib' => '~> 0.9'
|
26
26
|
}
|
27
27
|
|
28
28
|
inflector = ENV.fetch('INFLECTOR','dm-core')
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Ronin Support
|
2
2
|
|
3
|
-
* [Source](
|
4
|
-
* [Issues](
|
5
|
-
* [Documentation](http://
|
3
|
+
* [Source](https://github.com/ronin-ruby/ronin-support)
|
4
|
+
* [Issues](https://github.com/ronin-ruby/ronin-support/issues)
|
5
|
+
* [Documentation](http://ronin-ruby.github.com/docs/ronin-support/frames)
|
6
6
|
* [Mailing List](http://groups.google.com/group/ronin-ruby)
|
7
7
|
* [irc.freenode.net #ronin](http://webchat.freenode.net/?channels=ronin&uio=Mj10cnVldd)
|
8
8
|
|
@@ -31,6 +31,7 @@ or payloads over many common Source-Code-Management (SCM) systems.
|
|
31
31
|
* DNS
|
32
32
|
* TCP
|
33
33
|
* UDP
|
34
|
+
* SSL
|
34
35
|
* SMTP / ESMTP
|
35
36
|
* POP3
|
36
37
|
* Imap
|
@@ -57,17 +58,17 @@ please see [Everyday Ronin](http://ronin-ruby.github.com/guides/everyday_ronin.h
|
|
57
58
|
## Requirements
|
58
59
|
|
59
60
|
* [Ruby](http://www.ruby-lang.org/) >= 1.8.7
|
60
|
-
* [chars](
|
61
|
+
* [chars](https://github.com/postmodern/chars#readme)
|
61
62
|
~> 0.2
|
62
|
-
* [hexdump](
|
63
|
+
* [hexdump](https://github.com/postmodern/hexdump#readme)
|
63
64
|
~> 0.1
|
64
|
-
* [combinatorics](
|
65
|
+
* [combinatorics](https://github.com/postmodern/combinatorics#readme)
|
65
66
|
~> 0.4
|
66
|
-
* [uri-query_params](
|
67
|
+
* [uri-query_params](https://github.com/postmodern/uri-query_params#readme)
|
67
68
|
~> 0.6
|
68
|
-
* [data_paths](
|
69
|
+
* [data_paths](https://github.com/postmodern/data_paths#readme)
|
69
70
|
~> 0.3
|
70
|
-
* [parameters](
|
71
|
+
* [parameters](https://github.com/postmodern/parameters#readme)
|
71
72
|
~> 0.4
|
72
73
|
|
73
74
|
## Install
|
data/Rakefile
CHANGED
data/gemspec.yml
CHANGED
data/lib/ronin/network.rb
CHANGED
@@ -17,8 +17,10 @@
|
|
17
17
|
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
18
18
|
#
|
19
19
|
|
20
|
+
require 'ronin/network/extensions/dns'
|
20
21
|
require 'ronin/network/extensions/tcp'
|
21
22
|
require 'ronin/network/extensions/udp'
|
23
|
+
require 'ronin/network/extensions/ssl'
|
22
24
|
require 'ronin/network/extensions/smtp'
|
23
25
|
require 'ronin/network/extensions/esmtp'
|
24
26
|
require 'ronin/network/extensions/pop3'
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
|
+
#
|
4
|
+
# This file is part of Ronin Support.
|
5
|
+
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as published
|
8
|
+
# by the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
|
+
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
|
+
#
|
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/>.
|
18
|
+
#
|
19
|
+
|
20
|
+
require 'ronin/network/extensions/dns/net'
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2006-2012 Hal Brodigan (postmodern.mod3 at gmail.com)
|
3
|
+
#
|
4
|
+
# This file is part of Ronin Support.
|
5
|
+
#
|
6
|
+
# Ronin Support is free software: you can redistribute it and/or modify
|
7
|
+
# it under the terms of the GNU Lesser General Public License as published
|
8
|
+
# by the Free Software Foundation, either version 3 of the License, or
|
9
|
+
# (at your option) any later version.
|
10
|
+
#
|
11
|
+
# Ronin Support is distributed in the hope that it will be useful,
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
# GNU Lesser General Public License for more details.
|
15
|
+
#
|
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/>.
|
18
|
+
#
|
19
|
+
|
20
|
+
require 'ronin/network/dns'
|
21
|
+
|
22
|
+
module Net
|
23
|
+
extend Ronin::Network::DNS
|
24
|
+
end
|
@@ -17,209 +17,211 @@
|
|
17
17
|
# along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
|
18
18
|
#
|
19
19
|
|
20
|
-
require 'ronin/network/
|
20
|
+
require 'ronin/network/http'
|
21
21
|
|
22
22
|
require 'uri/http'
|
23
23
|
|
24
24
|
module URI
|
25
25
|
class HTTP < Generic
|
26
26
|
|
27
|
+
include Ronin::Network::HTTP
|
28
|
+
|
27
29
|
#
|
28
|
-
# @see
|
30
|
+
# @see Ronin::Network::HTTP#http_request
|
29
31
|
#
|
30
32
|
# @since 0.3.0
|
31
33
|
#
|
32
34
|
def request(options={},&block)
|
33
|
-
|
35
|
+
http_request(options.merge(:url => self),&block)
|
34
36
|
end
|
35
37
|
|
36
38
|
#
|
37
|
-
# @see
|
39
|
+
# @see Ronin::Network::HTTP#http_status
|
38
40
|
#
|
39
41
|
# @since 0.3.0
|
40
42
|
#
|
41
43
|
def status(options={})
|
42
|
-
|
44
|
+
http_status(options.merge(:url => self))
|
43
45
|
end
|
44
46
|
|
45
47
|
#
|
46
|
-
# @see
|
48
|
+
# @see Ronin::Network::HTTP#http_ok?
|
47
49
|
#
|
48
50
|
# @since 0.3.0
|
49
51
|
#
|
50
52
|
def ok?(options={})
|
51
|
-
|
53
|
+
http_ok?(options.merge(:url => self))
|
52
54
|
end
|
53
55
|
|
54
56
|
#
|
55
|
-
# @see
|
57
|
+
# @see Ronin::Network::HTTP#http_server
|
56
58
|
#
|
57
59
|
# @since 0.3.0
|
58
60
|
#
|
59
61
|
def server(options={})
|
60
|
-
|
62
|
+
http_server(options.merge(:url => self))
|
61
63
|
end
|
62
64
|
|
63
65
|
#
|
64
|
-
# @see
|
66
|
+
# @see Ronin::Network::HTTP#http_powered_by
|
65
67
|
#
|
66
68
|
# @since 0.3.0
|
67
69
|
#
|
68
70
|
def powered_by(options={})
|
69
|
-
|
71
|
+
http_powered_by(options.merge(:url => self))
|
70
72
|
end
|
71
73
|
|
72
74
|
#
|
73
|
-
# @see
|
75
|
+
# @see Ronin::Network::HTTP#http_copy
|
74
76
|
#
|
75
77
|
# @since 0.3.0
|
76
78
|
#
|
77
79
|
def copy(options={},&block)
|
78
|
-
|
80
|
+
http_copy(options.merge(:url => self),&block)
|
79
81
|
end
|
80
82
|
|
81
83
|
#
|
82
|
-
# @see
|
84
|
+
# @see Ronin::Network::HTTP#http_delete
|
83
85
|
#
|
84
86
|
# @since 0.3.0
|
85
87
|
#
|
86
88
|
def delete(options={},&block)
|
87
|
-
|
89
|
+
http_delete(options.merge(:url => self),&block)
|
88
90
|
end
|
89
91
|
|
90
92
|
#
|
91
|
-
# @see
|
93
|
+
# @see Ronin::Network::HTTP#http_get
|
92
94
|
#
|
93
95
|
# @since 0.3.0
|
94
96
|
#
|
95
97
|
def get(options={},&block)
|
96
|
-
|
98
|
+
http_get(options.merge(:url => self),&block)
|
97
99
|
end
|
98
100
|
|
99
101
|
#
|
100
|
-
# @see
|
102
|
+
# @see Ronin::Network::HTTP#http_get_headers
|
101
103
|
#
|
102
104
|
# @since 0.3.0
|
103
105
|
#
|
104
106
|
def get_headers(options={},&block)
|
105
|
-
|
107
|
+
http_get_headers(options.merge(:url => self),&block)
|
106
108
|
end
|
107
109
|
|
108
110
|
#
|
109
|
-
# @see
|
111
|
+
# @see Ronin::Network::HTTP#http_get_body
|
110
112
|
#
|
111
113
|
# @since 0.3.0
|
112
114
|
#
|
113
115
|
def get_body(options={},&block)
|
114
|
-
|
116
|
+
http_get_body(options.merge(:url => self),&block)
|
115
117
|
end
|
116
118
|
|
117
119
|
#
|
118
|
-
# @see
|
120
|
+
# @see Ronin::Network::HTTP#http_head
|
119
121
|
#
|
120
122
|
# @since 0.3.0
|
121
123
|
#
|
122
124
|
def head(options={},&block)
|
123
|
-
|
125
|
+
http_head(options.merge(:url => self),&block)
|
124
126
|
end
|
125
127
|
|
126
128
|
#
|
127
|
-
# @see
|
129
|
+
# @see Ronin::Network::HTTP#http_lock
|
128
130
|
#
|
129
131
|
# @since 0.3.0
|
130
132
|
#
|
131
133
|
def lock(options={},&block)
|
132
|
-
|
134
|
+
http_lock(options.merge(:url => self),&block)
|
133
135
|
end
|
134
136
|
|
135
137
|
#
|
136
|
-
# @see
|
138
|
+
# @see Ronin::Network::HTTP#http_mkcol
|
137
139
|
#
|
138
140
|
# @since 0.3.0
|
139
141
|
#
|
140
142
|
def mkcol(options={},&block)
|
141
|
-
|
143
|
+
http_mkcol(options.merge(:url => self),&block)
|
142
144
|
end
|
143
145
|
|
144
146
|
#
|
145
|
-
# @see
|
147
|
+
# @see Ronin::Network::HTTP#http_move
|
146
148
|
#
|
147
149
|
# @since 0.3.0
|
148
150
|
#
|
149
151
|
def move(options={},&block)
|
150
|
-
|
152
|
+
http_move(options.merge(:url => self),&block)
|
151
153
|
end
|
152
154
|
|
153
155
|
#
|
154
|
-
# @see
|
156
|
+
# @see Ronin::Network::HTTP#http_options
|
155
157
|
#
|
156
158
|
# @since 0.3.0
|
157
159
|
#
|
158
160
|
def options(options={},&block)
|
159
|
-
|
161
|
+
http_options(options.merge(:url => self),&block)
|
160
162
|
end
|
161
163
|
|
162
164
|
#
|
163
|
-
# @see
|
165
|
+
# @see Ronin::Network::HTTP#http_post
|
164
166
|
#
|
165
167
|
# @since 0.3.0
|
166
168
|
#
|
167
169
|
def post(options={},&block)
|
168
|
-
|
170
|
+
http_post(options.merge(:url => self),&block)
|
169
171
|
end
|
170
172
|
|
171
173
|
#
|
172
|
-
# @see
|
174
|
+
# @see Ronin::Network::HTTP#http_post_headers
|
173
175
|
#
|
174
176
|
# @since 0.3.0
|
175
177
|
#
|
176
178
|
def post_headers(options={},&block)
|
177
|
-
|
179
|
+
http_post_headers(options.merge(:url => self),&block)
|
178
180
|
end
|
179
181
|
|
180
182
|
#
|
181
|
-
# @see
|
183
|
+
# @see Ronin::Network::HTTP#http_post_body
|
182
184
|
#
|
183
185
|
# @since 0.3.0
|
184
186
|
#
|
185
187
|
def post_body(options={},&block)
|
186
|
-
|
188
|
+
http_post_body(options.merge(:url => self),&block)
|
187
189
|
end
|
188
190
|
|
189
191
|
#
|
190
|
-
# @see
|
192
|
+
# @see Ronin::Network::HTTP#http_prop_find
|
191
193
|
#
|
192
194
|
# @since 0.3.0
|
193
195
|
#
|
194
196
|
def prop_find(options={},&block)
|
195
|
-
|
197
|
+
http_prop_find(options.merge(:url => self),&block)
|
196
198
|
end
|
197
199
|
|
198
200
|
#
|
199
|
-
# @see
|
201
|
+
# @see Ronin::Network::HTTP#http_prop_match
|
200
202
|
#
|
201
203
|
# @since 0.3.0
|
202
204
|
#
|
203
205
|
def prop_match(options={},&block)
|
204
|
-
|
206
|
+
http_prop_match(options.merge(:url => self),&block)
|
205
207
|
end
|
206
208
|
|
207
209
|
#
|
208
|
-
# @see
|
210
|
+
# @see Ronin::Network::HTTP#http_trace
|
209
211
|
#
|
210
212
|
# @since 0.3.0
|
211
213
|
#
|
212
214
|
def trace(options={},&block)
|
213
|
-
|
215
|
+
http_trace(options.merge(:url => self),&block)
|
214
216
|
end
|
215
217
|
|
216
218
|
#
|
217
|
-
# @see
|
219
|
+
# @see Ronin::Network::HTTP#http_unlock
|
218
220
|
#
|
219
221
|
# @since 0.3.0
|
220
222
|
#
|
221
223
|
def unlock(options={},&block)
|
222
|
-
|
224
|
+
http_unlock(options.merge(:url => self),&block)
|
223
225
|
end
|
224
226
|
|
225
227
|
end
|
@@ -27,6 +27,7 @@ require 'net/http'
|
|
27
27
|
begin
|
28
28
|
require 'net/https'
|
29
29
|
rescue ::LoadError
|
30
|
+
$stderr.puts "WARNING: could not load 'net/https'"
|
30
31
|
end
|
31
32
|
|
32
33
|
module Ronin
|
@@ -137,7 +138,7 @@ module Ronin
|
|
137
138
|
else
|
138
139
|
'/'
|
139
140
|
end
|
140
|
-
new_options[:path] += "?#{
|
141
|
+
new_options[:path] += "?#{url.query}" if url.query
|
141
142
|
|
142
143
|
return new_options
|
143
144
|
end
|
@@ -457,7 +458,7 @@ module Ronin
|
|
457
458
|
#
|
458
459
|
# @return [nil]
|
459
460
|
#
|
460
|
-
# @see http_connect
|
461
|
+
# @see #http_connect
|
461
462
|
#
|
462
463
|
# @api public
|
463
464
|
#
|
@@ -513,7 +514,7 @@ module Ronin
|
|
513
514
|
# @return [Net::HTTP::Response]
|
514
515
|
# The response of the HTTP request.
|
515
516
|
#
|
516
|
-
# @see http_session
|
517
|
+
# @see #http_session
|
517
518
|
#
|
518
519
|
# @api public
|
519
520
|
#
|
@@ -549,7 +550,7 @@ module Ronin
|
|
549
550
|
# @return [Integer]
|
550
551
|
# The HTTP Response Status.
|
551
552
|
#
|
552
|
-
# @see http_request
|
553
|
+
# @see #http_request
|
553
554
|
#
|
554
555
|
# @since 0.2.0
|
555
556
|
#
|
@@ -573,7 +574,7 @@ module Ronin
|
|
573
574
|
# @return [Boolean]
|
574
575
|
# Specifies whether the response had an HTTP OK status code or not.
|
575
576
|
#
|
576
|
-
# @see http_status
|
577
|
+
# @see #http_status
|
577
578
|
#
|
578
579
|
# @api public
|
579
580
|
#
|
@@ -593,7 +594,7 @@ module Ronin
|
|
593
594
|
# @return [String]
|
594
595
|
# The HTTP `Server` header.
|
595
596
|
#
|
596
|
-
# @see http_request
|
597
|
+
# @see #http_request
|
597
598
|
#
|
598
599
|
# @api public
|
599
600
|
#
|
@@ -615,7 +616,7 @@ module Ronin
|
|
615
616
|
# @return [String]
|
616
617
|
# The HTTP `X-Powered-By` header.
|
617
618
|
#
|
618
|
-
# @see http_request
|
619
|
+
# @see #http_request
|
619
620
|
#
|
620
621
|
# @api public
|
621
622
|
#
|
@@ -641,7 +642,7 @@ module Ronin
|
|
641
642
|
# @return [Net::HTTP::Response]
|
642
643
|
# The response of the HTTP request.
|
643
644
|
#
|
644
|
-
# @see http_request
|
645
|
+
# @see #http_request
|
645
646
|
#
|
646
647
|
# @api public
|
647
648
|
#
|
@@ -668,7 +669,7 @@ module Ronin
|
|
668
669
|
# @return [Net::HTTP::Response]
|
669
670
|
# The response of the HTTP request.
|
670
671
|
#
|
671
|
-
# @see http_request
|
672
|
+
# @see #http_request
|
672
673
|
#
|
673
674
|
# @api public
|
674
675
|
#
|
@@ -704,7 +705,7 @@ module Ronin
|
|
704
705
|
# @return [Net::HTTP::Response]
|
705
706
|
# The response of the HTTP request.
|
706
707
|
#
|
707
|
-
# @see http_request
|
708
|
+
# @see #http_request
|
708
709
|
#
|
709
710
|
# @api public
|
710
711
|
#
|
@@ -724,7 +725,7 @@ module Ronin
|
|
724
725
|
# @return [Hash{String => Array<String>}]
|
725
726
|
# The Headers of the HTTP response.
|
726
727
|
#
|
727
|
-
# @see http_get
|
728
|
+
# @see #http_get
|
728
729
|
#
|
729
730
|
# @since 0.2.0
|
730
731
|
#
|
@@ -749,7 +750,7 @@ module Ronin
|
|
749
750
|
# @return [String]
|
750
751
|
# The body of the HTTP response.
|
751
752
|
#
|
752
|
-
# @see http_get
|
753
|
+
# @see #http_get
|
753
754
|
#
|
754
755
|
# @api public
|
755
756
|
#
|
@@ -773,7 +774,7 @@ module Ronin
|
|
773
774
|
# @return [Net::HTTP::Response]
|
774
775
|
# The response of the HTTP request.
|
775
776
|
#
|
776
|
-
# @see http_request
|
777
|
+
# @see #http_request
|
777
778
|
#
|
778
779
|
# @api public
|
779
780
|
#
|
@@ -800,7 +801,7 @@ module Ronin
|
|
800
801
|
# @return [Net::HTTP::Response]
|
801
802
|
# The response of the HTTP request.
|
802
803
|
#
|
803
|
-
# @see http_request
|
804
|
+
# @see #http_request
|
804
805
|
#
|
805
806
|
# @api public
|
806
807
|
#
|
@@ -827,7 +828,7 @@ module Ronin
|
|
827
828
|
# @return [Net::HTTP::Response]
|
828
829
|
# The response of the HTTP request.
|
829
830
|
#
|
830
|
-
# @see http_request
|
831
|
+
# @see #http_request
|
831
832
|
#
|
832
833
|
# @api public
|
833
834
|
#
|
@@ -854,7 +855,7 @@ module Ronin
|
|
854
855
|
# @return [Net::HTTP::Response]
|
855
856
|
# The response of the HTTP request.
|
856
857
|
#
|
857
|
-
# @see http_request
|
858
|
+
# @see #http_request
|
858
859
|
#
|
859
860
|
# @api public
|
860
861
|
#
|
@@ -881,7 +882,7 @@ module Ronin
|
|
881
882
|
# @return [Net::HTTP::Response]
|
882
883
|
# The response of the HTTP request.
|
883
884
|
#
|
884
|
-
# @see http_request
|
885
|
+
# @see #http_request
|
885
886
|
#
|
886
887
|
# @api public
|
887
888
|
#
|
@@ -911,7 +912,7 @@ module Ronin
|
|
911
912
|
# @return [Net::HTTP::Response]
|
912
913
|
# The response of the HTTP request.
|
913
914
|
#
|
914
|
-
# @see http_request
|
915
|
+
# @see #http_request
|
915
916
|
#
|
916
917
|
# @api public
|
917
918
|
#
|
@@ -934,7 +935,7 @@ module Ronin
|
|
934
935
|
# @return [Hash{String => Array<String>}]
|
935
936
|
# The headers of the HTTP response.
|
936
937
|
#
|
937
|
-
# @see http_post
|
938
|
+
# @see #http_post
|
938
939
|
#
|
939
940
|
# @since 0.2.0
|
940
941
|
#
|
@@ -962,7 +963,7 @@ module Ronin
|
|
962
963
|
# @return [String]
|
963
964
|
# The body of the HTTP response.
|
964
965
|
#
|
965
|
-
# @see http_post
|
966
|
+
# @see #http_post
|
966
967
|
#
|
967
968
|
# @api public
|
968
969
|
#
|
@@ -992,7 +993,7 @@ module Ronin
|
|
992
993
|
# @return [Net::HTTP::Response]
|
993
994
|
# The response of the HTTP request.
|
994
995
|
#
|
995
|
-
# @see http_request
|
996
|
+
# @see #http_request
|
996
997
|
#
|
997
998
|
# @since 0.4.0
|
998
999
|
#
|
@@ -1021,7 +1022,7 @@ module Ronin
|
|
1021
1022
|
# @return [Net::HTTP::Response]
|
1022
1023
|
# The response of the HTTP request.
|
1023
1024
|
#
|
1024
|
-
# @see http_request
|
1025
|
+
# @see #http_request
|
1025
1026
|
#
|
1026
1027
|
# @api public
|
1027
1028
|
#
|
@@ -1057,7 +1058,7 @@ module Ronin
|
|
1057
1058
|
# @return [Net::HTTP::Response]
|
1058
1059
|
# The response of the HTTP request.
|
1059
1060
|
#
|
1060
|
-
# @see http_request
|
1061
|
+
# @see #http_request
|
1061
1062
|
#
|
1062
1063
|
# @api public
|
1063
1064
|
#
|
@@ -1084,7 +1085,7 @@ module Ronin
|
|
1084
1085
|
# @return [Net::HTTP::Response]
|
1085
1086
|
# The response of the HTTP request.
|
1086
1087
|
#
|
1087
|
-
# @see http_request
|
1088
|
+
# @see #http_request
|
1088
1089
|
#
|
1089
1090
|
# @api public
|
1090
1091
|
#
|
@@ -1111,7 +1112,7 @@ module Ronin
|
|
1111
1112
|
# @return [Net::HTTP::Response]
|
1112
1113
|
# The response of the HTTP request.
|
1113
1114
|
#
|
1114
|
-
# @see http_request
|
1115
|
+
# @see #http_request
|
1115
1116
|
#
|
1116
1117
|
# @api public
|
1117
1118
|
#
|