metasploit-aggregator 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/bin/metasploit-aggregator +3 -11
- data/lib/metasploit/aggregator.rb +303 -137
- data/lib/metasploit/aggregator/aggregator_pb.rb +13 -0
- data/lib/metasploit/aggregator/aggregator_services_pb.rb +36 -0
- data/lib/metasploit/aggregator/connection_manager.rb +3 -1
- data/lib/metasploit/aggregator/error.rb +9 -0
- data/lib/metasploit/aggregator/http/responder.rb +1 -1
- data/lib/metasploit/aggregator/messages_pb.rb +51 -0
- data/lib/metasploit/aggregator/router.rb +0 -1
- data/lib/metasploit/aggregator/tlv/uuid.rb +232 -232
- data/lib/metasploit/aggregator/version.rb +1 -1
- data/metasploit-aggregator.gemspec +4 -2
- metadata +23 -9
- metadata.gz.sig +0 -0
- data/.gitignore +0 -10
- data/CODE_OF_CONDUCT.md +0 -52
- data/LICENSE +0 -748
- data/README.md +0 -28
@@ -19,11 +19,13 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.bindir = "bin"
|
20
20
|
spec.executables << 'metasploit-aggregator'
|
21
21
|
spec.require_paths = ["lib"]
|
22
|
+
spec.platform = Gem::Platform::RUBY
|
22
23
|
|
23
24
|
spec.add_development_dependency "bundler", "~> 1.13"
|
25
|
+
spec.add_development_dependency "pry"
|
24
26
|
spec.add_development_dependency "rake", "~> 10.0"
|
25
27
|
spec.add_development_dependency "rspec", "~> 3.0"
|
26
|
-
spec.
|
27
|
-
spec.add_runtime_dependency '
|
28
|
+
spec.add_development_dependency "grpc-tools"
|
29
|
+
spec.add_runtime_dependency 'grpc'
|
28
30
|
spec.add_runtime_dependency 'rex-arch'
|
29
31
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: metasploit-aggregator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Metasploit Hackers
|
@@ -88,7 +88,7 @@ cert_chain:
|
|
88
88
|
G+Hmcg1v810agasPdoydE0RTVZgEOOMoQ07qu7JFXVWZ9ZQpHT7qJATWL/b2csFG
|
89
89
|
8mVuTXnyJOKRJA==
|
90
90
|
-----END CERTIFICATE-----
|
91
|
-
date: 2017-02-
|
91
|
+
date: 2017-02-20 00:00:00.000000000 Z
|
92
92
|
dependencies:
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: bundler
|
@@ -104,6 +104,20 @@ dependencies:
|
|
104
104
|
- - "~>"
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: '1.13'
|
107
|
+
- !ruby/object:Gem::Dependency
|
108
|
+
name: pry
|
109
|
+
requirement: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
type: :development
|
115
|
+
prerelease: false
|
116
|
+
version_requirements: !ruby/object:Gem::Requirement
|
117
|
+
requirements:
|
118
|
+
- - ">="
|
119
|
+
- !ruby/object:Gem::Version
|
120
|
+
version: '0'
|
107
121
|
- !ruby/object:Gem::Dependency
|
108
122
|
name: rake
|
109
123
|
requirement: !ruby/object:Gem::Requirement
|
@@ -133,13 +147,13 @@ dependencies:
|
|
133
147
|
- !ruby/object:Gem::Version
|
134
148
|
version: '3.0'
|
135
149
|
- !ruby/object:Gem::Dependency
|
136
|
-
name:
|
150
|
+
name: grpc-tools
|
137
151
|
requirement: !ruby/object:Gem::Requirement
|
138
152
|
requirements:
|
139
153
|
- - ">="
|
140
154
|
- !ruby/object:Gem::Version
|
141
155
|
version: '0'
|
142
|
-
type: :
|
156
|
+
type: :development
|
143
157
|
prerelease: false
|
144
158
|
version_requirements: !ruby/object:Gem::Requirement
|
145
159
|
requirements:
|
@@ -147,7 +161,7 @@ dependencies:
|
|
147
161
|
- !ruby/object:Gem::Version
|
148
162
|
version: '0'
|
149
163
|
- !ruby/object:Gem::Dependency
|
150
|
-
name:
|
164
|
+
name: grpc
|
151
165
|
requirement: !ruby/object:Gem::Requirement
|
152
166
|
requirements:
|
153
167
|
- - ">="
|
@@ -182,19 +196,18 @@ executables:
|
|
182
196
|
extensions: []
|
183
197
|
extra_rdoc_files: []
|
184
198
|
files:
|
185
|
-
- ".gitignore"
|
186
199
|
- ".rspec"
|
187
200
|
- ".ruby-version"
|
188
201
|
- ".travis.yml"
|
189
|
-
- CODE_OF_CONDUCT.md
|
190
202
|
- Gemfile
|
191
|
-
- LICENSE
|
192
|
-
- README.md
|
193
203
|
- Rakefile
|
194
204
|
- bin/metasploit-aggregator
|
195
205
|
- lib/metasploit/aggregator.rb
|
206
|
+
- lib/metasploit/aggregator/aggregator_pb.rb
|
207
|
+
- lib/metasploit/aggregator/aggregator_services_pb.rb
|
196
208
|
- lib/metasploit/aggregator/cable.rb
|
197
209
|
- lib/metasploit/aggregator/connection_manager.rb
|
210
|
+
- lib/metasploit/aggregator/error.rb
|
198
211
|
- lib/metasploit/aggregator/forwarder.rb
|
199
212
|
- lib/metasploit/aggregator/http.rb
|
200
213
|
- lib/metasploit/aggregator/http/request.rb
|
@@ -205,6 +218,7 @@ files:
|
|
205
218
|
- lib/metasploit/aggregator/http_forwarder.rb
|
206
219
|
- lib/metasploit/aggregator/https_forwarder.rb
|
207
220
|
- lib/metasploit/aggregator/logger.rb
|
221
|
+
- lib/metasploit/aggregator/messages_pb.rb
|
208
222
|
- lib/metasploit/aggregator/router.rb
|
209
223
|
- lib/metasploit/aggregator/session_detail_service.rb
|
210
224
|
- lib/metasploit/aggregator/tlv/packet.rb
|
metadata.gz.sig
CHANGED
Binary file
|
data/.gitignore
DELETED
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
# Contributor Code of Conduct
|
2
|
-
|
3
|
-
As contributors and maintainers of this project, and in the interest of
|
4
|
-
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
-
contribute through reporting issues, posting feature requests, updating
|
6
|
-
documentation, submitting pull requests or patches, and other activities.
|
7
|
-
|
8
|
-
We are committed to making participation in this project a harassment-free
|
9
|
-
experience for everyone, regardless of level of experience, gender, gender
|
10
|
-
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
-
body size, race, ethnicity, age, religion, or nationality.
|
12
|
-
|
13
|
-
Examples of unacceptable behavior by participants include:
|
14
|
-
|
15
|
-
* The use of sexualized language or imagery
|
16
|
-
* Personal attacks
|
17
|
-
* Trolling or insulting/derogatory comments
|
18
|
-
* Public or private harassment
|
19
|
-
* Publishing other's private information, such as physical or electronic
|
20
|
-
addresses, without explicit permission
|
21
|
-
* Other unethical or unprofessional conduct
|
22
|
-
|
23
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
-
threatening, offensive, or harmful.
|
28
|
-
|
29
|
-
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
-
fairly and consistently applying these principles to every aspect of managing
|
31
|
-
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
-
Conduct may be permanently removed from the project team.
|
33
|
-
|
34
|
-
This Code of Conduct applies both within project spaces and in public spaces
|
35
|
-
when an individual is representing the project or its community.
|
36
|
-
|
37
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
-
reported by contacting the project maintainers at msfdev@metasploit.com. If
|
39
|
-
the incident involves a committer, you may report directly to
|
40
|
-
egypt@metasploit.com or todb@metasploit.com.
|
41
|
-
|
42
|
-
All complaints will be reviewed and investigated and will result in a
|
43
|
-
response that is deemed necessary and appropriate to the circumstances.
|
44
|
-
Maintainers are obligated to maintain confidentiality with regard to the
|
45
|
-
reporter of an incident.
|
46
|
-
|
47
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
48
|
-
version 1.3.0, available at
|
49
|
-
[http://contributor-covenant.org/version/1/3/0/][version]
|
50
|
-
|
51
|
-
[homepage]: http://contributor-covenant.org
|
52
|
-
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/LICENSE
DELETED
@@ -1,748 +0,0 @@
|
|
1
|
-
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
2
|
-
Source: http://www.metasploit.com/
|
3
|
-
|
4
|
-
Files: *
|
5
|
-
Copyright: 2006-2016, Rapid7, Inc.
|
6
|
-
License: BSD-3-clause
|
7
|
-
|
8
|
-
# The Metasploit Aggregtor is provided under the 3-clause BSD license provided
|
9
|
-
# at the end of this file.
|
10
|
-
#
|
11
|
-
# The copyright on this package is held by Rapid7, Inc.
|
12
|
-
#
|
13
|
-
# This license does not apply to third-party components detailed below.
|
14
|
-
#
|
15
|
-
# Last updated: 2016-Dec-19
|
16
|
-
#
|
17
|
-
|
18
|
-
#
|
19
|
-
# Gems
|
20
|
-
#
|
21
|
-
|
22
|
-
Files: bundler
|
23
|
-
Copyright: Andre Arko, Engine Yard
|
24
|
-
License: MIT
|
25
|
-
|
26
|
-
Files: rspec
|
27
|
-
Copyright: Chad Humphries, David Chelimsky, David Chelimsky,
|
28
|
-
The RSpec Development Team, Steven Baker
|
29
|
-
License: MIT
|
30
|
-
|
31
|
-
Files: msgpack
|
32
|
-
Copyright: Austin Ziegler
|
33
|
-
License: Ruby
|
34
|
-
|
35
|
-
Files: msgpack-rpc
|
36
|
-
Copyright: FURUHASHI Sadayuki, Shuzo Kashihara
|
37
|
-
License: Apache
|
38
|
-
|
39
|
-
Files: rake
|
40
|
-
Copyright: 2003, 2004 Jim Weirich
|
41
|
-
License: MIT
|
42
|
-
|
43
|
-
License: BSD-2-clause
|
44
|
-
Redistribution and use in source and binary forms, with or without modification,
|
45
|
-
are permitted provided that the following conditions are met:
|
46
|
-
.
|
47
|
-
Redistributions of source code must retain the above copyright notice, this
|
48
|
-
list of conditions and the following disclaimer.
|
49
|
-
.
|
50
|
-
Redistributions in binary form must reproduce the above copyright notice, this
|
51
|
-
list of conditions and the following disclaimer in the documentation and/or
|
52
|
-
other materials provided with the distribution.
|
53
|
-
.
|
54
|
-
THIS SOFTWARE IS PROVIDED BY {{THE COPYRIGHT HOLDERS AND CONTRIBUTORS}} "AS IS"
|
55
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
56
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
57
|
-
DISCLAIMED. IN NO EVENT SHALL {{THE COPYRIGHT HOLDER OR CONTRIBUTORS}} BE
|
58
|
-
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
59
|
-
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
60
|
-
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
61
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
62
|
-
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
63
|
-
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
64
|
-
|
65
|
-
License: BSD-3-clause
|
66
|
-
Redistribution and use in source and binary forms, with or without modification,
|
67
|
-
are permitted provided that the following conditions are met:
|
68
|
-
.
|
69
|
-
* Redistributions of source code must retain the above copyright notice,
|
70
|
-
this list of conditions and the following disclaimer.
|
71
|
-
.
|
72
|
-
* Redistributions in binary form must reproduce the above copyright notice,
|
73
|
-
this list of conditions and the following disclaimer in the documentation
|
74
|
-
and/or other materials provided with the distribution.
|
75
|
-
.
|
76
|
-
* Neither the name of Rapid7, Inc. nor the names of its contributors
|
77
|
-
may be used to endorse or promote products derived from this software
|
78
|
-
without specific prior written permission.
|
79
|
-
.
|
80
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
81
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
82
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
83
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
84
|
-
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
85
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
86
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
87
|
-
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
88
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
89
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
90
|
-
|
91
|
-
License: BSD-4-clause
|
92
|
-
Redistribution and use in source and binary forms, with or without
|
93
|
-
modification, are permitted provided that the following conditions are met:
|
94
|
-
1. Redistributions of source code must retain the above copyright
|
95
|
-
notice, this list of conditions and the following disclaimer.
|
96
|
-
2. Redistributions in binary form must reproduce the above copyright
|
97
|
-
notice, this list of conditions and the following disclaimer in the
|
98
|
-
documentation and/or other materials provided with the distribution.
|
99
|
-
3. All advertising materials mentioning features or use of this software
|
100
|
-
must display the following acknowledgement:
|
101
|
-
This product includes software developed by the <organization>.
|
102
|
-
4. Neither the name of the <organization> nor the
|
103
|
-
names of its contributors may be used to endorse or promote products
|
104
|
-
derived from this software without specific prior written permission.
|
105
|
-
.
|
106
|
-
THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ''AS IS'' AND ANY
|
107
|
-
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
108
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
109
|
-
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
110
|
-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
111
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
112
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
113
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
114
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
115
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
116
|
-
|
117
|
-
License: Ruby
|
118
|
-
1. You may make and give away verbatim copies of the source form of the
|
119
|
-
software without restriction, provided that you duplicate all of the
|
120
|
-
original copyright notices and associated disclaimers.
|
121
|
-
.
|
122
|
-
2. You may modify your copy of the software in any way, provided that
|
123
|
-
you do at least ONE of the following:
|
124
|
-
.
|
125
|
-
a) place your modifications in the Public Domain or otherwise
|
126
|
-
make them Freely Available, such as by posting said
|
127
|
-
modifications to Usenet or an equivalent medium, or by allowing
|
128
|
-
the author to include your modifications in the software.
|
129
|
-
.
|
130
|
-
b) use the modified software only within your corporation or
|
131
|
-
organization.
|
132
|
-
.
|
133
|
-
c) rename any non-standard executables so the names do not conflict
|
134
|
-
with standard executables, which must also be provided.
|
135
|
-
.
|
136
|
-
d) make other distribution arrangements with the author.
|
137
|
-
.
|
138
|
-
3. You may distribute the software in object code or executable
|
139
|
-
form, provided that you do at least ONE of the following:
|
140
|
-
.
|
141
|
-
a) distribute the executables and library files of the software,
|
142
|
-
together with instructions (in the manual page or equivalent)
|
143
|
-
on where to get the original distribution.
|
144
|
-
.
|
145
|
-
b) accompany the distribution with the machine-readable source of
|
146
|
-
the software.
|
147
|
-
.
|
148
|
-
c) give non-standard executables non-standard names, with
|
149
|
-
instructions on where to get the original software distribution.
|
150
|
-
.
|
151
|
-
d) make other distribution arrangements with the author.
|
152
|
-
.
|
153
|
-
4. You may modify and include the part of the software into any other
|
154
|
-
software (possibly commercial). But some files in the distribution
|
155
|
-
are not written by the author, so that they are not under this terms.
|
156
|
-
They are gc.c(partly), utils.c(partly), regex.[ch], fnmatch.[ch],
|
157
|
-
glob.c, st.[ch] and some files under the ./missing directory. See
|
158
|
-
each file for the copying condition.
|
159
|
-
.
|
160
|
-
5. The scripts and library files supplied as input to or produced as
|
161
|
-
output from the software do not automatically fall under the
|
162
|
-
copyright of the software, but belong to whomever generated them,
|
163
|
-
and may be sold commercially, and may be aggregated with this
|
164
|
-
software.
|
165
|
-
.
|
166
|
-
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
167
|
-
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
168
|
-
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
|
169
|
-
PURPOSE.
|
170
|
-
|
171
|
-
License: GPL-2
|
172
|
-
This program is free software; you can redistribute it
|
173
|
-
and/or modify it under the terms of the GNU General Public
|
174
|
-
License as published by the Free Software Foundation; either
|
175
|
-
version 2 of the License, or (at your option) any later
|
176
|
-
version.
|
177
|
-
.
|
178
|
-
This program is distributed in the hope that it will be
|
179
|
-
useful, but WITHOUT ANY WARRANTY; without even the implied
|
180
|
-
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
181
|
-
PURPOSE. See the GNU General Public License for more
|
182
|
-
details.
|
183
|
-
.
|
184
|
-
You should have received a copy of the GNU General Public
|
185
|
-
License along with this package; if not, write to the Free
|
186
|
-
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
187
|
-
Boston, MA 02110-1301 USA
|
188
|
-
.
|
189
|
-
On Debian systems, the full text of the GNU General Public
|
190
|
-
License version 2 can be found in the file
|
191
|
-
`/usr/share/common-licenses/GPL-2'.
|
192
|
-
|
193
|
-
License: LGPL-2.1
|
194
|
-
This library is free software; you can redistribute it and/or
|
195
|
-
modify it under the terms of the GNU Lesser General Public
|
196
|
-
License as published by the Free Software Foundation; either
|
197
|
-
version 2.1 of the License, or (at your option) any later version.
|
198
|
-
.
|
199
|
-
This library is distributed in the hope that it will be useful,
|
200
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
201
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
202
|
-
Lesser General Public License for more details.
|
203
|
-
.
|
204
|
-
You should have received a copy of the GNU Lesser General Public
|
205
|
-
License along with this library; if not, write to the Free Software
|
206
|
-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
207
|
-
|
208
|
-
License: OpenSSL
|
209
|
-
Redistribution and use in source and binary forms, with or without
|
210
|
-
modification, are permitted provided that the following conditions
|
211
|
-
are met:
|
212
|
-
.
|
213
|
-
1. Redistributions of source code must retain the above copyright
|
214
|
-
notice, this list of conditions and the following disclaimer.
|
215
|
-
.
|
216
|
-
2. Redistributions in binary form must reproduce the above copyright
|
217
|
-
notice, this list of conditions and the following disclaimer in
|
218
|
-
the documentation and/or other materials provided with the
|
219
|
-
distribution.
|
220
|
-
.
|
221
|
-
3. All advertising materials mentioning features or use of this
|
222
|
-
software must display the following acknowledgment:
|
223
|
-
"This product includes software developed by the OpenSSL Project
|
224
|
-
for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
225
|
-
.
|
226
|
-
4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
227
|
-
endorse or promote products derived from this software without
|
228
|
-
prior written permission. For written permission, please contact
|
229
|
-
openssl-core@openssl.org.
|
230
|
-
.
|
231
|
-
5. Products derived from this software may not be called "OpenSSL"
|
232
|
-
nor may "OpenSSL" appear in their names without prior written
|
233
|
-
permission of the OpenSSL Project.
|
234
|
-
.
|
235
|
-
6. Redistributions of any form whatsoever must retain the following
|
236
|
-
acknowledgment:
|
237
|
-
"This product includes software developed by the OpenSSL Project
|
238
|
-
for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
239
|
-
.
|
240
|
-
THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT `AS IS'' AND ANY
|
241
|
-
EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
242
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
243
|
-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
244
|
-
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
245
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
246
|
-
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
247
|
-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
248
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
249
|
-
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
250
|
-
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
251
|
-
OF THE POSSIBILITY OF SUCH DAMAGE.
|
252
|
-
.
|
253
|
-
This product includes cryptographic software written by Eric Young
|
254
|
-
(eay@cryptsoft.com). This product includes software written by Tim
|
255
|
-
Hudson (tjh@cryptsoft.com).
|
256
|
-
|
257
|
-
License: SSLeay
|
258
|
-
This package is an SSL implementation written
|
259
|
-
by Eric Young (eay@cryptsoft.com).
|
260
|
-
The implementation was written so as to conform with Netscapes SSL.
|
261
|
-
.
|
262
|
-
This library is free for commercial and non-commercial use as long as
|
263
|
-
the following conditions are aheared to. The following conditions
|
264
|
-
apply to all code found in this distribution, be it the RC4, RSA,
|
265
|
-
lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
266
|
-
included with this distribution is covered by the same copyright terms
|
267
|
-
except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
268
|
-
.
|
269
|
-
Copyright remains Eric Young's, and as such any Copyright notices in
|
270
|
-
the code are not to be removed.
|
271
|
-
If this package is used in a product, Eric Young should be given attribution
|
272
|
-
as the author of the parts of the library used.
|
273
|
-
This can be in the form of a textual message at program startup or
|
274
|
-
in documentation (online or textual) provided with the package.
|
275
|
-
.
|
276
|
-
Redistribution and use in source and binary forms, with or without
|
277
|
-
modification, are permitted provided that the following conditions
|
278
|
-
are met:
|
279
|
-
1. Redistributions of source code must retain the copyright
|
280
|
-
notice, this list of conditions and the following disclaimer.
|
281
|
-
2. Redistributions in binary form must reproduce the above copyright
|
282
|
-
notice, this list of conditions and the following disclaimer in the
|
283
|
-
documentation and/or other materials provided with the distribution.
|
284
|
-
3. All advertising materials mentioning features or use of this software
|
285
|
-
must display the following acknowledgement:
|
286
|
-
"This product includes cryptographic software written by
|
287
|
-
Eric Young (eay@cryptsoft.com)"
|
288
|
-
The word 'cryptographic' can be left out if the rouines from the library
|
289
|
-
being used are not cryptographic related :-).
|
290
|
-
4. If you include any Windows specific code (or a derivative thereof) from
|
291
|
-
the apps directory (application code) you must include an acknowledgement:
|
292
|
-
"This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
293
|
-
.
|
294
|
-
THIS SOFTWARE IS PROVIDED BY ERIC YOUNG `AS IS'' AND
|
295
|
-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
296
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
297
|
-
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
298
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
299
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
300
|
-
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
301
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
302
|
-
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
303
|
-
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
304
|
-
SUCH DAMAGE.
|
305
|
-
.
|
306
|
-
The licence and distribution terms for any publically available version or
|
307
|
-
derivative of this code cannot be changed. i.e. this code cannot simply be
|
308
|
-
copied and put under another distribution licence
|
309
|
-
[including the GNU Public Licence.]
|
310
|
-
|
311
|
-
License: MIT
|
312
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
313
|
-
a copy of this software and associated documentation files (the
|
314
|
-
"Software"), to deal in the Software without restriction, including
|
315
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
316
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
317
|
-
permit persons to whom the Software is furnished to do so, subject to
|
318
|
-
the following conditions:
|
319
|
-
.
|
320
|
-
The above copyright notice and this permission notice shall be
|
321
|
-
included in all copies or substantial portions of the Software.
|
322
|
-
.
|
323
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
324
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
325
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
326
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
327
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
328
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
329
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
330
|
-
|
331
|
-
License: Artistic
|
332
|
-
Copyright (c) 2000-2006, The Perl Foundation.
|
333
|
-
.
|
334
|
-
Everyone is permitted to copy and distribute verbatim copies
|
335
|
-
of this license document, but changing it is not allowed.
|
336
|
-
.
|
337
|
-
Preamble
|
338
|
-
.
|
339
|
-
This license establishes the terms under which a given free software
|
340
|
-
Package may be copied, modified, distributed, and/or redistributed.
|
341
|
-
The intent is that the Copyright Holder maintains some artistic
|
342
|
-
control over the development of that Package while still keeping the
|
343
|
-
Package available as open source and free software.
|
344
|
-
.
|
345
|
-
You are always permitted to make arrangements wholly outside of this
|
346
|
-
license directly with the Copyright Holder of a given Package. If the
|
347
|
-
terms of this license do not permit the full use that you propose to
|
348
|
-
make of the Package, you should contact the Copyright Holder and seek
|
349
|
-
a different licensing arrangement.
|
350
|
-
.
|
351
|
-
Definitions
|
352
|
-
.
|
353
|
-
"Copyright Holder" means the individual(s) or organization(s)
|
354
|
-
named in the copyright notice for the entire Package.
|
355
|
-
.
|
356
|
-
"Contributor" means any party that has contributed code or other
|
357
|
-
material to the Package, in accordance with the Copyright Holder's
|
358
|
-
procedures.
|
359
|
-
.
|
360
|
-
"You" and "your" means any person who would like to copy,
|
361
|
-
distribute, or modify the Package.
|
362
|
-
.
|
363
|
-
"Package" means the collection of files distributed by the
|
364
|
-
Copyright Holder, and derivatives of that collection and/or of
|
365
|
-
those files. A given Package may consist of either the Standard
|
366
|
-
Version, or a Modified Version.
|
367
|
-
.
|
368
|
-
"Distribute" means providing a copy of the Package or making it
|
369
|
-
accessible to anyone else, or in the case of a company or
|
370
|
-
organization, to others outside of your company or organization.
|
371
|
-
.
|
372
|
-
"Distributor Fee" means any fee that you charge for Distributing
|
373
|
-
this Package or providing support for this Package to another
|
374
|
-
party. It does not mean licensing fees.
|
375
|
-
.
|
376
|
-
"Standard Version" refers to the Package if it has not been
|
377
|
-
modified, or has been modified only in ways explicitly requested
|
378
|
-
by the Copyright Holder.
|
379
|
-
.
|
380
|
-
"Modified Version" means the Package, if it has been changed, and
|
381
|
-
such changes were not explicitly requested by the Copyright
|
382
|
-
Holder.
|
383
|
-
.
|
384
|
-
"Original License" means this Artistic License as Distributed with
|
385
|
-
the Standard Version of the Package, in its current version or as
|
386
|
-
it may be modified by The Perl Foundation in the future.
|
387
|
-
.
|
388
|
-
"Source" form means the source code, documentation source, and
|
389
|
-
configuration files for the Package.
|
390
|
-
.
|
391
|
-
"Compiled" form means the compiled bytecode, object code, binary,
|
392
|
-
or any other form resulting from mechanical transformation or
|
393
|
-
translation of the Source form.
|
394
|
-
.
|
395
|
-
Permission for Use and Modification Without Distribution
|
396
|
-
.
|
397
|
-
(1) You are permitted to use the Standard Version and create and use
|
398
|
-
Modified Versions for any purpose without restriction, provided that
|
399
|
-
you do not Distribute the Modified Version.
|
400
|
-
.
|
401
|
-
.
|
402
|
-
Permissions for Redistribution of the Standard Version
|
403
|
-
.
|
404
|
-
(2) You may Distribute verbatim copies of the Source form of the
|
405
|
-
Standard Version of this Package in any medium without restriction,
|
406
|
-
either gratis or for a Distributor Fee, provided that you duplicate
|
407
|
-
all of the original copyright notices and associated disclaimers. At
|
408
|
-
your discretion, such verbatim copies may or may not include a
|
409
|
-
Compiled form of the Package.
|
410
|
-
.
|
411
|
-
(3) You may apply any bug fixes, portability changes, and other
|
412
|
-
modifications made available from the Copyright Holder. The resulting
|
413
|
-
Package will still be considered the Standard Version, and as such
|
414
|
-
will be subject to the Original License.
|
415
|
-
.
|
416
|
-
.
|
417
|
-
Distribution of Modified Versions of the Package as Source
|
418
|
-
.
|
419
|
-
(4) You may Distribute your Modified Version as Source (either gratis
|
420
|
-
or for a Distributor Fee, and with or without a Compiled form of the
|
421
|
-
Modified Version) provided that you clearly document how it differs
|
422
|
-
from the Standard Version, including, but not limited to, documenting
|
423
|
-
any non-standard features, executables, or modules, and provided that
|
424
|
-
you do at least ONE of the following:
|
425
|
-
.
|
426
|
-
(a) make the Modified Version available to the Copyright Holder
|
427
|
-
of the Standard Version, under the Original License, so that the
|
428
|
-
Copyright Holder may include your modifications in the Standard
|
429
|
-
Version.
|
430
|
-
.
|
431
|
-
(b) ensure that installation of your Modified Version does not
|
432
|
-
prevent the user installing or running the Standard Version. In
|
433
|
-
addition, the Modified Version must bear a name that is different
|
434
|
-
from the name of the Standard Version.
|
435
|
-
.
|
436
|
-
(c) allow anyone who receives a copy of the Modified Version to
|
437
|
-
make the Source form of the Modified Version available to others
|
438
|
-
under
|
439
|
-
.
|
440
|
-
(i) the Original License or
|
441
|
-
.
|
442
|
-
(ii) a license that permits the licensee to freely copy,
|
443
|
-
modify and redistribute the Modified Version using the same
|
444
|
-
licensing terms that apply to the copy that the licensee
|
445
|
-
received, and requires that the Source form of the Modified
|
446
|
-
Version, and of any works derived from it, be made freely
|
447
|
-
available in that license fees are prohibited but Distributor
|
448
|
-
Fees are allowed.
|
449
|
-
.
|
450
|
-
.
|
451
|
-
Distribution of Compiled Forms of the Standard Version
|
452
|
-
or Modified Versions without the Source
|
453
|
-
.
|
454
|
-
(5) You may Distribute Compiled forms of the Standard Version without
|
455
|
-
the Source, provided that you include complete instructions on how to
|
456
|
-
get the Source of the Standard Version. Such instructions must be
|
457
|
-
valid at the time of your distribution. If these instructions, at any
|
458
|
-
time while you are carrying out such distribution, become invalid, you
|
459
|
-
must provide new instructions on demand or cease further distribution.
|
460
|
-
If you provide valid instructions or cease distribution within thirty
|
461
|
-
days after you become aware that the instructions are invalid, then
|
462
|
-
you do not forfeit any of your rights under this license.
|
463
|
-
.
|
464
|
-
(6) You may Distribute a Modified Version in Compiled form without
|
465
|
-
the Source, provided that you comply with Section 4 with respect to
|
466
|
-
the Source of the Modified Version.
|
467
|
-
.
|
468
|
-
.
|
469
|
-
Aggregating or Linking the Package
|
470
|
-
.
|
471
|
-
(7) You may aggregate the Package (either the Standard Version or
|
472
|
-
Modified Version) with other packages and Distribute the resulting
|
473
|
-
aggregation provided that you do not charge a licensing fee for the
|
474
|
-
Package. Distributor Fees are permitted, and licensing fees for other
|
475
|
-
components in the aggregation are permitted. The terms of this license
|
476
|
-
apply to the use and Distribution of the Standard or Modified Versions
|
477
|
-
as included in the aggregation.
|
478
|
-
.
|
479
|
-
(8) You are permitted to link Modified and Standard Versions with
|
480
|
-
other works, to embed the Package in a larger work of your own, or to
|
481
|
-
build stand-alone binary or bytecode versions of applications that
|
482
|
-
include the Package, and Distribute the result without restriction,
|
483
|
-
provided the result does not expose a direct interface to the Package.
|
484
|
-
.
|
485
|
-
.
|
486
|
-
Items That are Not Considered Part of a Modified Version
|
487
|
-
.
|
488
|
-
(9) Works (including, but not limited to, modules and scripts) that
|
489
|
-
merely extend or make use of the Package, do not, by themselves, cause
|
490
|
-
the Package to be a Modified Version. In addition, such works are not
|
491
|
-
considered parts of the Package itself, and are not subject to the
|
492
|
-
terms of this license.
|
493
|
-
.
|
494
|
-
.
|
495
|
-
General Provisions
|
496
|
-
.
|
497
|
-
(10) Any use, modification, and distribution of the Standard or
|
498
|
-
Modified Versions is governed by this Artistic License. By using,
|
499
|
-
modifying or distributing the Package, you accept this license. Do not
|
500
|
-
use, modify, or distribute the Package, if you do not accept this
|
501
|
-
license.
|
502
|
-
.
|
503
|
-
(11) If your Modified Version has been derived from a Modified
|
504
|
-
Version made by someone other than you, you are nevertheless required
|
505
|
-
to ensure that your Modified Version complies with the requirements of
|
506
|
-
this license.
|
507
|
-
.
|
508
|
-
(12) This license does not grant you the right to use any trademark,
|
509
|
-
service mark, tradename, or logo of the Copyright Holder.
|
510
|
-
.
|
511
|
-
(13) This license includes the non-exclusive, worldwide,
|
512
|
-
free-of-charge patent license to make, have made, use, offer to sell,
|
513
|
-
sell, import and otherwise transfer the Package with respect to any
|
514
|
-
patent claims licensable by the Copyright Holder that are necessarily
|
515
|
-
infringed by the Package. If you institute patent litigation
|
516
|
-
(including a cross-claim or counterclaim) against any party alleging
|
517
|
-
that the Package constitutes direct or contributory patent
|
518
|
-
infringement, then this Artistic License to you shall terminate on the
|
519
|
-
date that such litigation is filed.
|
520
|
-
.
|
521
|
-
(14) Disclaimer of Warranty:
|
522
|
-
THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS
|
523
|
-
IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
|
524
|
-
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
|
525
|
-
NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL
|
526
|
-
LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL
|
527
|
-
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
528
|
-
DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF
|
529
|
-
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
530
|
-
|
531
|
-
License: Apache
|
532
|
-
Version 2.0, January 2004
|
533
|
-
http://www.apache.org/licenses/
|
534
|
-
.
|
535
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
536
|
-
.
|
537
|
-
1. Definitions.
|
538
|
-
.
|
539
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
540
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
541
|
-
.
|
542
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
543
|
-
the copyright owner that is granting the License.
|
544
|
-
.
|
545
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
546
|
-
other entities that control, are controlled by, or are under common
|
547
|
-
control with that entity. For the purposes of this definition,
|
548
|
-
"control" means (i) the power, direct or indirect, to cause the
|
549
|
-
direction or management of such entity, whether by contract or
|
550
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
551
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
552
|
-
.
|
553
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
554
|
-
exercising permissions granted by this License.
|
555
|
-
.
|
556
|
-
"Source" form shall mean the preferred form for making modifications,
|
557
|
-
including but not limited to software source code, documentation
|
558
|
-
source, and configuration files.
|
559
|
-
.
|
560
|
-
"Object" form shall mean any form resulting from mechanical
|
561
|
-
transformation or translation of a Source form, including but
|
562
|
-
not limited to compiled object code, generated documentation,
|
563
|
-
and conversions to other media types.
|
564
|
-
.
|
565
|
-
"Work" shall mean the work of authorship, whether in Source or
|
566
|
-
Object form, made available under the License, as indicated by a
|
567
|
-
copyright notice that is included in or attached to the work
|
568
|
-
(an example is provided in the Appendix below).
|
569
|
-
.
|
570
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
571
|
-
form, that is based on (or derived from) the Work and for which the
|
572
|
-
editorial revisions, annotations, elaborations, or other modifications
|
573
|
-
represent, as a whole, an original work of authorship. For the purposes
|
574
|
-
of this License, Derivative Works shall not include works that remain
|
575
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
576
|
-
the Work and Derivative Works thereof.
|
577
|
-
.
|
578
|
-
"Contribution" shall mean any work of authorship, including
|
579
|
-
the original version of the Work and any modifications or additions
|
580
|
-
to that Work or Derivative Works thereof, that is intentionally
|
581
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
582
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
583
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
584
|
-
means any form of electronic, verbal, or written communication sent
|
585
|
-
to the Licensor or its representatives, including but not limited to
|
586
|
-
communication on electronic mailing lists, source code control systems,
|
587
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
588
|
-
Licensor for the purpose of discussing and improving the Work, but
|
589
|
-
excluding communication that is conspicuously marked or otherwise
|
590
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
591
|
-
.
|
592
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
593
|
-
on behalf of whom a Contribution has been received by Licensor and
|
594
|
-
subsequently incorporated within the Work.
|
595
|
-
.
|
596
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
597
|
-
this License, each Contributor hereby grants to You a perpetual,
|
598
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
599
|
-
copyright license to reproduce, prepare Derivative Works of,
|
600
|
-
publicly display, publicly perform, sublicense, and distribute the
|
601
|
-
Work and such Derivative Works in Source or Object form.
|
602
|
-
.
|
603
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
604
|
-
this License, each Contributor hereby grants to You a perpetual,
|
605
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
606
|
-
(except as stated in this section) patent license to make, have made,
|
607
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
608
|
-
where such license applies only to those patent claims licensable
|
609
|
-
by such Contributor that are necessarily infringed by their
|
610
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
611
|
-
with the Work to which such Contribution(s) was submitted. If You
|
612
|
-
institute patent litigation against any entity (including a
|
613
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
614
|
-
or a Contribution incorporated within the Work constitutes direct
|
615
|
-
or contributory patent infringement, then any patent licenses
|
616
|
-
granted to You under this License for that Work shall terminate
|
617
|
-
as of the date such litigation is filed.
|
618
|
-
.
|
619
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
620
|
-
Work or Derivative Works thereof in any medium, with or without
|
621
|
-
modifications, and in Source or Object form, provided that You
|
622
|
-
meet the following conditions:
|
623
|
-
.
|
624
|
-
(a) You must give any other recipients of the Work or
|
625
|
-
Derivative Works a copy of this License; and
|
626
|
-
.
|
627
|
-
(b) You must cause any modified files to carry prominent notices
|
628
|
-
stating that You changed the files; and
|
629
|
-
.
|
630
|
-
(c) You must retain, in the Source form of any Derivative Works
|
631
|
-
that You distribute, all copyright, patent, trademark, and
|
632
|
-
attribution notices from the Source form of the Work,
|
633
|
-
excluding those notices that do not pertain to any part of
|
634
|
-
the Derivative Works; and
|
635
|
-
.
|
636
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
637
|
-
distribution, then any Derivative Works that You distribute must
|
638
|
-
include a readable copy of the attribution notices contained
|
639
|
-
within such NOTICE file, excluding those notices that do not
|
640
|
-
pertain to any part of the Derivative Works, in at least one
|
641
|
-
of the following places: within a NOTICE text file distributed
|
642
|
-
as part of the Derivative Works; within the Source form or
|
643
|
-
documentation, if provided along with the Derivative Works; or,
|
644
|
-
within a display generated by the Derivative Works, if and
|
645
|
-
wherever such third-party notices normally appear. The contents
|
646
|
-
of the NOTICE file are for informational purposes only and
|
647
|
-
do not modify the License. You may add Your own attribution
|
648
|
-
notices within Derivative Works that You distribute, alongside
|
649
|
-
or as an addendum to the NOTICE text from the Work, provided
|
650
|
-
that such additional attribution notices cannot be construed
|
651
|
-
as modifying the License.
|
652
|
-
.
|
653
|
-
You may add Your own copyright statement to Your modifications and
|
654
|
-
may provide additional or different license terms and conditions
|
655
|
-
for use, reproduction, or distribution of Your modifications, or
|
656
|
-
for any such Derivative Works as a whole, provided Your use,
|
657
|
-
reproduction, and distribution of the Work otherwise complies with
|
658
|
-
the conditions stated in this License.
|
659
|
-
.
|
660
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
661
|
-
any Contribution intentionally submitted for inclusion in the Work
|
662
|
-
by You to the Licensor shall be under the terms and conditions of
|
663
|
-
this License, without any additional terms or conditions.
|
664
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
665
|
-
the terms of any separate license agreement you may have executed
|
666
|
-
with Licensor regarding such Contributions.
|
667
|
-
.
|
668
|
-
6. Trademarks. This License does not grant permission to use the trade
|
669
|
-
names, trademarks, service marks, or product names of the Licensor,
|
670
|
-
except as required for reasonable and customary use in describing the
|
671
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
672
|
-
.
|
673
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
674
|
-
agreed to in writing, Licensor provides the Work (and each
|
675
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
676
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
677
|
-
implied, including, without limitation, any warranties or conditions
|
678
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
679
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
680
|
-
appropriateness of using or redistributing the Work and assume any
|
681
|
-
risks associated with Your exercise of permissions under this License.
|
682
|
-
.
|
683
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
684
|
-
whether in tort (including negligence), contract, or otherwise,
|
685
|
-
unless required by applicable law (such as deliberate and grossly
|
686
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
687
|
-
liable to You for damages, including any direct, indirect, special,
|
688
|
-
incidental, or consequential damages of any character arising as a
|
689
|
-
result of this License or out of the use or inability to use the
|
690
|
-
Work (including but not limited to damages for loss of goodwill,
|
691
|
-
work stoppage, computer failure or malfunction, or any and all
|
692
|
-
other commercial damages or losses), even if such Contributor
|
693
|
-
has been advised of the possibility of such damages.
|
694
|
-
.
|
695
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
696
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
697
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
698
|
-
or other liability obligations and/or rights consistent with this
|
699
|
-
License. However, in accepting such obligations, You may act only
|
700
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
701
|
-
of any other Contributor, and only if You agree to indemnify,
|
702
|
-
defend, and hold each Contributor harmless for any liability
|
703
|
-
incurred by, or claims asserted against, such Contributor by reason
|
704
|
-
of your accepting any such warranty or additional liability.
|
705
|
-
.
|
706
|
-
END OF TERMS AND CONDITIONS
|
707
|
-
.
|
708
|
-
APPENDIX: How to apply the Apache License to your work.
|
709
|
-
.
|
710
|
-
To apply the Apache License to your work, attach the following
|
711
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
712
|
-
replaced with your own identifying information. (Don't include
|
713
|
-
the brackets!) The text should be enclosed in the appropriate
|
714
|
-
comment syntax for the file format. We also recommend that a
|
715
|
-
file or class name and description of purpose be included on the
|
716
|
-
same "printed page" as the copyright notice for easier
|
717
|
-
identification within third-party archives.
|
718
|
-
.
|
719
|
-
Copyright [yyyy] [name of copyright owner]
|
720
|
-
.
|
721
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
722
|
-
you may not use this file except in compliance with the License.
|
723
|
-
You may obtain a copy of the License at
|
724
|
-
.
|
725
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
726
|
-
.
|
727
|
-
Unless required by applicable law or agreed to in writing, software
|
728
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
729
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
730
|
-
See the License for the specific language governing permissions and
|
731
|
-
limitations under the License.
|
732
|
-
|
733
|
-
License: Zlib
|
734
|
-
This software is provided 'as-is', without any express or implied
|
735
|
-
warranty. In no event will the authors be held liable for any damages
|
736
|
-
arising from the use of this software.
|
737
|
-
.
|
738
|
-
Permission is granted to anyone to use this software for any purpose,
|
739
|
-
including commercial applications, and to alter it and redistribute it
|
740
|
-
freely, subject to the following restrictions:
|
741
|
-
.
|
742
|
-
1. The origin of this software must not be misrepresented; you must not
|
743
|
-
claim that you wrote the original software. If you use this software
|
744
|
-
in a product, an acknowledgment in the product documentation would be
|
745
|
-
appreciated but is not required.
|
746
|
-
2. Altered source versions must be plainly marked as such, and must not be
|
747
|
-
misrepresented as being the original software.
|
748
|
-
3. This notice may not be removed or altered from any source distribution.
|