pymisp 2.5.3__py3-none-any.whl → 2.5.7__py3-none-any.whl

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.

Potentially problematic release.


This version of pymisp might be problematic. Click here for more details.

Files changed (162) hide show
  1. CHANGELOG.txt +5380 -0
  2. examples/__init__.py +0 -0
  3. examples/add_attributes_from_csv.py +74 -0
  4. examples/add_email_object.py +29 -0
  5. examples/add_fail2ban_object.py +86 -0
  6. examples/add_feed.py +25 -0
  7. examples/add_file_object.py +47 -0
  8. examples/add_filetype_object_from_csv.py +53 -0
  9. examples/add_generic_object.py +26 -0
  10. examples/add_github_user.py +65 -0
  11. examples/add_gitlab_user.py +56 -0
  12. examples/add_named_attribute.py +25 -0
  13. examples/add_organisations.py +57 -0
  14. examples/add_ssh_authorized_keys.py +29 -0
  15. examples/add_user.py +22 -0
  16. examples/add_vehicle_object.py +22 -0
  17. examples/addtag2.py +45 -0
  18. examples/asciidoc_generator.py +114 -0
  19. examples/cache_all.py +10 -0
  20. examples/copyTagsFromAttributesToEvent.py +68 -0
  21. examples/copy_list.py +93 -0
  22. examples/create_events.py +26 -0
  23. examples/cytomic_orion.py +549 -0
  24. examples/del.py +22 -0
  25. examples/delete_user.py +16 -0
  26. examples/edit_organisation.py +20 -0
  27. examples/edit_user.py +20 -0
  28. examples/falsepositive_disabletoids.py +136 -0
  29. examples/fetch_events_feed.py +15 -0
  30. examples/fetch_warninglist_hits.py +38 -0
  31. examples/freetext.py +22 -0
  32. examples/generate_file_objects.py +78 -0
  33. examples/generate_meta_feed.py +15 -0
  34. examples/get.py +37 -0
  35. examples/get_csv.py +37 -0
  36. examples/get_network_activity.py +187 -0
  37. examples/last.py +48 -0
  38. examples/load_csv.py +94 -0
  39. examples/lookup.py +28 -0
  40. examples/misp2cef.py +71 -0
  41. examples/misp2clamav.py +52 -0
  42. examples/openioc_to_misp.py +27 -0
  43. examples/proofpoint_tap.py +203 -0
  44. examples/proofpoint_vap.py +65 -0
  45. examples/search.py +48 -0
  46. examples/search_attributes_yara.py +40 -0
  47. examples/search_sighting.py +42 -0
  48. examples/server_sync_check_conn.py +32 -0
  49. examples/sharing_groups.py +15 -0
  50. examples/show_sightings.py +168 -0
  51. examples/stats_report.py +405 -0
  52. examples/sync_sighting.py +171 -0
  53. examples/tags.py +25 -0
  54. examples/test_sign.py +19 -0
  55. examples/trustar_misp.py +59 -0
  56. examples/up.py +21 -0
  57. examples/upload.py +60 -0
  58. examples/users_list.py +15 -0
  59. examples/vmray_automation.py +281 -0
  60. examples/vt_to_misp.py +182 -0
  61. examples/warninglists.py +22 -0
  62. examples/yara.py +38 -0
  63. examples/yara_dump.py +98 -0
  64. pymisp/api.py +33 -5
  65. pymisp/data/misp-objects/objects/android-app/definition.json +8 -2
  66. pymisp/data/misp-objects/objects/instagram-account/definition.json +66 -0
  67. pymisp/data/misp-objects/objects/lnk/definition.json +13 -1
  68. pymisp/data/misp-objects/objects/rmm/definition.json +88 -0
  69. pymisp/data/misp-objects/objects/spambee-report/definition.json +54 -0
  70. pymisp/data/misp-objects/objects/target-system/definition.json +2 -2
  71. pymisp/data/misp-objects/objects/vulnerability/definition.json +5 -4
  72. pymisp/data/misp-objects/relationships/definition.json +17 -1
  73. pymisp/data/misp-objects/schema_objects.json +1 -1
  74. pymisp/mispevent.py +95 -23
  75. {pymisp-2.5.3.dist-info → pymisp-2.5.7.dist-info}/METADATA +23 -28
  76. {pymisp-2.5.3.dist-info → pymisp-2.5.7.dist-info}/RECORD +144 -30
  77. {pymisp-2.5.3.dist-info → pymisp-2.5.7.dist-info}/WHEEL +1 -1
  78. tests/57c4445b-c548-4654-af0b-4be3950d210f.json +1 -0
  79. tests/__init__.py +0 -0
  80. tests/csv_testfiles/invalid_fieldnames.csv +11 -0
  81. tests/csv_testfiles/valid_fieldnames.csv +4 -0
  82. tests/email_testfiles/mail_1.eml.zip +0 -0
  83. tests/email_testfiles/mail_1.msg +0 -0
  84. tests/email_testfiles/mail_1_bom.eml +858 -0
  85. tests/email_testfiles/mail_1_headers_only.eml +28 -0
  86. tests/email_testfiles/mail_2.eml +32 -0
  87. tests/email_testfiles/mail_3.eml +170 -0
  88. tests/email_testfiles/mail_3.msg +0 -0
  89. tests/email_testfiles/mail_4.msg +0 -0
  90. tests/email_testfiles/mail_5.msg +0 -0
  91. tests/email_testfiles/mail_multiple_to.eml +15 -0
  92. tests/email_testfiles/source +1 -0
  93. tests/git-vuln-finder-quagga.json +1493 -0
  94. tests/misp_event.json +76 -0
  95. tests/mispevent_testfiles/attribute.json +21 -0
  96. tests/mispevent_testfiles/attribute_del.json +23 -0
  97. tests/mispevent_testfiles/def_param.json +53 -0
  98. tests/mispevent_testfiles/event.json +8 -0
  99. tests/mispevent_testfiles/event_obj_attr_tag.json +57 -0
  100. tests/mispevent_testfiles/event_obj_def_param.json +62 -0
  101. tests/mispevent_testfiles/event_obj_tag.json +29 -0
  102. tests/mispevent_testfiles/event_tags.json +18 -0
  103. tests/mispevent_testfiles/existing_event.json +4599 -0
  104. tests/mispevent_testfiles/existing_event_edited.json +4601 -0
  105. tests/mispevent_testfiles/galaxy.json +25 -0
  106. tests/mispevent_testfiles/malware.json +19 -0
  107. tests/mispevent_testfiles/malware_exist.json +163 -0
  108. tests/mispevent_testfiles/misp_custom_obj.json +38 -0
  109. tests/mispevent_testfiles/overwrite_file/definition.json +457 -0
  110. tests/mispevent_testfiles/proposals.json +35 -0
  111. tests/mispevent_testfiles/shadow.json +148 -0
  112. tests/mispevent_testfiles/sighting.json +5 -0
  113. tests/mispevent_testfiles/simple.json +2 -0
  114. tests/mispevent_testfiles/test_object_template/definition.json +29 -0
  115. tests/new_misp_event.json +34 -0
  116. tests/reportlab_testfiles/HTML_event.json +1 -0
  117. tests/reportlab_testfiles/galaxy_1.json +1250 -0
  118. tests/reportlab_testfiles/image_event.json +2490 -0
  119. tests/reportlab_testfiles/japanese_test.json +156 -0
  120. tests/reportlab_testfiles/japanese_test_heavy.json +318 -0
  121. tests/reportlab_testfiles/long_event.json +3730 -0
  122. tests/reportlab_testfiles/mainly_objects_1.json +1092 -0
  123. tests/reportlab_testfiles/mainly_objects_2.json +977 -0
  124. tests/reportlab_testfiles/sighting_1.json +305 -0
  125. tests/reportlab_testfiles/sighting_2.json +221 -0
  126. tests/reportlab_testfiles/to_delete1.json +804 -0
  127. tests/reportlab_testfiles/to_delete2.json +1 -0
  128. tests/reportlab_testfiles/to_delete3.json +1 -0
  129. tests/reportlab_testfiles/very_long_event.json +1006 -0
  130. tests/reportlab_testoutputs/to_delete1.json.pdf +391 -0
  131. tests/reportlab_testoutputs/to_delete2.json.pdf +506 -0
  132. tests/reportlab_testoutputs/to_delete3.json.pdf +277 -0
  133. tests/search_index_result.json +69 -0
  134. tests/sharing_groups.json +98 -0
  135. tests/stix1.xml-utf8 +110 -0
  136. tests/stix2.json +1 -0
  137. tests/test_analyst_data.py +123 -0
  138. tests/test_emailobject.py +157 -0
  139. tests/test_fileobject.py +20 -0
  140. tests/test_mispevent.py +473 -0
  141. tests/test_reportlab.py +431 -0
  142. tests/testlive_comprehensive.py +3734 -0
  143. tests/testlive_sync.py +474 -0
  144. pymisp/data/misp-objects/.git +0 -1
  145. pymisp/data/misp-objects/.gitchangelog.rc +0 -289
  146. pymisp/data/misp-objects/.github/workflows/codeql.yml +0 -41
  147. pymisp/data/misp-objects/.github/workflows/nosetests.yml +0 -39
  148. pymisp/data/misp-objects/.travis.yml +0 -16
  149. pymisp/data/misp-objects/LICENSE-software-only.md +0 -661
  150. pymisp/data/misp-objects/LICENSE.md +0 -36
  151. pymisp/data/misp-objects/README.md +0 -566
  152. pymisp/data/misp-objects/docs/time-related-objects.ods +0 -0
  153. pymisp/data/misp-objects/docs/time-related-objects.pdf +0 -0
  154. pymisp/data/misp-objects/jq_all_the_things.sh +0 -29
  155. pymisp/data/misp-objects/tools/adoc_objects.py +0 -145
  156. pymisp/data/misp-objects/tools/alfred_links_to_relarelationships.py +0 -48
  157. pymisp/data/misp-objects/tools/list_of_objects.py +0 -50
  158. pymisp/data/misp-objects/tools/updated.sh +0 -6
  159. pymisp/data/misp-objects/tools/validate_opposites.sh +0 -17
  160. pymisp/data/misp-objects/unique_uuid.py +0 -16
  161. pymisp/data/misp-objects/validate_all.sh +0 -38
  162. {pymisp-2.5.3.dist-info → pymisp-2.5.7.dist-info}/LICENSE +0 -0
@@ -1,289 +0,0 @@
1
- # -*- coding: utf-8; mode: python -*-
2
- ##
3
- ## Format
4
- ##
5
- ## ACTION: [AUDIENCE:] COMMIT_MSG [!TAG ...]
6
- ##
7
- ## Description
8
- ##
9
- ## ACTION is one of 'chg', 'fix', 'new'
10
- ##
11
- ## Is WHAT the change is about.
12
- ##
13
- ## 'chg' is for refactor, small improvement, cosmetic changes...
14
- ## 'fix' is for bug fixes
15
- ## 'new' is for new features, big improvement
16
- ##
17
- ## AUDIENCE is optional and one of 'dev', 'usr', 'pkg', 'test', 'doc'|'docs'
18
- ##
19
- ## Is WHO is concerned by the change.
20
- ##
21
- ## 'dev' is for developpers (API changes, refactors...)
22
- ## 'usr' is for final users (UI changes)
23
- ## 'pkg' is for packagers (packaging changes)
24
- ## 'test' is for testers (test only related changes)
25
- ## 'doc' is for doc guys (doc only changes)
26
- ##
27
- ## COMMIT_MSG is ... well ... the commit message itself.
28
- ##
29
- ## TAGs are additionnal adjective as 'refactor' 'minor' 'cosmetic'
30
- ##
31
- ## They are preceded with a '!' or a '@' (prefer the former, as the
32
- ## latter is wrongly interpreted in github.) Commonly used tags are:
33
- ##
34
- ## 'refactor' is obviously for refactoring code only
35
- ## 'minor' is for a very meaningless change (a typo, adding a comment)
36
- ## 'cosmetic' is for cosmetic driven change (re-indentation, 80-col...)
37
- ## 'wip' is for partial functionality but complete subfunctionality.
38
- ##
39
- ## Example:
40
- ##
41
- ## new: usr: support of bazaar implemented
42
- ## chg: re-indentend some lines !cosmetic
43
- ## new: dev: updated code to be compatible with last version of killer lib.
44
- ## fix: pkg: updated year of licence coverage.
45
- ## new: test: added a bunch of test around user usability of feature X.
46
- ## fix: typo in spelling my name in comment. !minor
47
- ##
48
- ## Please note that multi-line commit message are supported, and only the
49
- ## first line will be considered as the "summary" of the commit message. So
50
- ## tags, and other rules only applies to the summary. The body of the commit
51
- ## message will be displayed in the changelog without reformatting.
52
-
53
-
54
- ##
55
- ## ``ignore_regexps`` is a line of regexps
56
- ##
57
- ## Any commit having its full commit message matching any regexp listed here
58
- ## will be ignored and won't be reported in the changelog.
59
- ##
60
- ignore_regexps = [
61
- r'@minor', r'!minor',
62
- r'@cosmetic', r'!cosmetic',
63
- r'@refactor', r'!refactor',
64
- r'@wip', r'!wip',
65
- r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[p|P]kg:',
66
- r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*[d|D]ev:',
67
- r'^(.{3,3}\s*:)?\s*[fF]irst commit.?\s*$',
68
- ]
69
-
70
-
71
- ## ``section_regexps`` is a list of 2-tuples associating a string label and a
72
- ## list of regexp
73
- ##
74
- ## Commit messages will be classified in sections thanks to this. Section
75
- ## titles are the label, and a commit is classified under this section if any
76
- ## of the regexps associated is matching.
77
- ##
78
- ## Please note that ``section_regexps`` will only classify commits and won't
79
- ## make any changes to the contents. So you'll probably want to go check
80
- ## ``subject_process`` (or ``body_process``) to do some changes to the subject,
81
- ## whenever you are tweaking this variable.
82
- ##
83
- section_regexps = [
84
- ('New', [
85
- r'^[nN]ew\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n]*)$',
86
- ]),
87
- ('Changes', [
88
- r'^[cC]hg\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n]*)$',
89
- ]),
90
- ('Fix', [
91
- r'^[fF]ix\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n]*)$',
92
- ]),
93
-
94
- ('Other', None ## Match all lines
95
- ),
96
-
97
- ]
98
-
99
-
100
- ## ``body_process`` is a callable
101
- ##
102
- ## This callable will be given the original body and result will
103
- ## be used in the changelog.
104
- ##
105
- ## Available constructs are:
106
- ##
107
- ## - any python callable that take one txt argument and return txt argument.
108
- ##
109
- ## - ReSub(pattern, replacement): will apply regexp substitution.
110
- ##
111
- ## - Indent(chars=" "): will indent the text with the prefix
112
- ## Please remember that template engines gets also to modify the text and
113
- ## will usually indent themselves the text if needed.
114
- ##
115
- ## - Wrap(regexp=r"\n\n"): re-wrap text in separate paragraph to fill 80-Columns
116
- ##
117
- ## - noop: do nothing
118
- ##
119
- ## - ucfirst: ensure the first letter is uppercase.
120
- ## (usually used in the ``subject_process`` pipeline)
121
- ##
122
- ## - final_dot: ensure text finishes with a dot
123
- ## (usually used in the ``subject_process`` pipeline)
124
- ##
125
- ## - strip: remove any spaces before or after the content of the string
126
- ##
127
- ## - SetIfEmpty(msg="No commit message."): will set the text to
128
- ## whatever given ``msg`` if the current text is empty.
129
- ##
130
- ## Additionally, you can `pipe` the provided filters, for instance:
131
- #body_process = Wrap(regexp=r'\n(?=\w+\s*:)') | Indent(chars=" ")
132
- #body_process = Wrap(regexp=r'\n(?=\w+\s*:)')
133
- #body_process = noop
134
- body_process = ReSub(r'((^|\n)[A-Z]\w+(-\w+)*: .*(\n\s+.*)*)+$', r'') | strip
135
-
136
-
137
- ## ``subject_process`` is a callable
138
- ##
139
- ## This callable will be given the original subject and result will
140
- ## be used in the changelog.
141
- ##
142
- ## Available constructs are those listed in ``body_process`` doc.
143
- subject_process = (strip |
144
- ReSub(r'^([cC]hg|[fF]ix|[nN]ew)\s*:\s*((dev|use?r|pkg|test|doc|docs)\s*:\s*)?([^\n@]*)(@[a-z]+\s+)*$', r'\4') |
145
- SetIfEmpty("No commit message.") | ucfirst | final_dot)
146
-
147
-
148
- ## ``tag_filter_regexp`` is a regexp
149
- ##
150
- ## Tags that will be used for the changelog must match this regexp.
151
- ##
152
- tag_filter_regexp = r'^v[0-9]+\.[0-9]+\.[0-9]+$'
153
-
154
-
155
-
156
- ## ``unreleased_version_label`` is a string or a callable that outputs a string
157
- ##
158
- ## This label will be used as the changelog Title of the last set of changes
159
- ## between last valid tag and HEAD if any.
160
- unreleased_version_label = "%%version%% (unreleased)"
161
-
162
-
163
- ## ``output_engine`` is a callable
164
- ##
165
- ## This will change the output format of the generated changelog file
166
- ##
167
- ## Available choices are:
168
- ##
169
- ## - rest_py
170
- ##
171
- ## Legacy pure python engine, outputs ReSTructured text.
172
- ## This is the default.
173
- ##
174
- ## - mustache(<template_name>)
175
- ##
176
- ## Template name could be any of the available templates in
177
- ## ``templates/mustache/*.tpl``.
178
- ## Requires python package ``pystache``.
179
- ## Examples:
180
- ## - mustache("markdown")
181
- ## - mustache("restructuredtext")
182
- ##
183
- ## - makotemplate(<template_name>)
184
- ##
185
- ## Template name could be any of the available templates in
186
- ## ``templates/mako/*.tpl``.
187
- ## Requires python package ``mako``.
188
- ## Examples:
189
- ## - makotemplate("restructuredtext")
190
- ##
191
- #output_engine = rest_py
192
- #output_engine = mustache("restructuredtext")
193
- output_engine = mustache("markdown")
194
- #output_engine = makotemplate("restructuredtext")
195
-
196
-
197
- ## ``include_merge`` is a boolean
198
- ##
199
- ## This option tells git-log whether to include merge commits in the log.
200
- ## The default is to include them.
201
- include_merge = True
202
-
203
-
204
- ## ``log_encoding`` is a string identifier
205
- ##
206
- ## This option tells gitchangelog what encoding is outputed by ``git log``.
207
- ## The default is to be clever about it: it checks ``git config`` for
208
- ## ``i18n.logOutputEncoding``, and if not found will default to git's own
209
- ## default: ``utf-8``.
210
- #log_encoding = 'utf-8'
211
-
212
-
213
- ## ``publish`` is a callable
214
- ##
215
- ## Sets what ``gitchangelog`` should do with the output generated by
216
- ## the output engine. ``publish`` is a callable taking one argument
217
- ## that is an interator on lines from the output engine.
218
- ##
219
- ## Some helper callable are provided:
220
- ##
221
- ## Available choices are:
222
- ##
223
- ## - stdout
224
- ##
225
- ## Outputs directly to standard output
226
- ## (This is the default)
227
- ##
228
- ## - FileInsertAtFirstRegexMatch(file, pattern, idx=lamda m: m.start())
229
- ##
230
- ## Creates a callable that will parse given file for the given
231
- ## regex pattern and will insert the output in the file.
232
- ## ``idx`` is a callable that receive the matching object and
233
- ## must return a integer index point where to insert the
234
- ## the output in the file. Default is to return the position of
235
- ## the start of the matched string.
236
- ##
237
- ## - FileRegexSubst(file, pattern, replace, flags)
238
- ##
239
- ## Apply a replace inplace in the given file. Your regex pattern must
240
- ## take care of everything and might be more complex. Check the README
241
- ## for a complete copy-pastable example.
242
- ##
243
- # publish = FileInsertIntoFirstRegexMatch(
244
- # "CHANGELOG.rst",
245
- # r'/(?P<rev>[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n/',
246
- # idx=lambda m: m.start(1)
247
- # )
248
- #publish = stdout
249
-
250
-
251
- ## ``revs`` is a list of callable or a list of string
252
- ##
253
- ## callable will be called to resolve as strings and allow dynamical
254
- ## computation of these. The result will be used as revisions for
255
- ## gitchangelog (as if directly stated on the command line). This allows
256
- ## to filter exaclty which commits will be read by gitchangelog.
257
- ##
258
- ## To get a full documentation on the format of these strings, please
259
- ## refer to the ``git rev-list`` arguments. There are many examples.
260
- ##
261
- ## Using callables is especially useful, for instance, if you
262
- ## are using gitchangelog to generate incrementally your changelog.
263
- ##
264
- ## Some helpers are provided, you can use them::
265
- ##
266
- ## - FileFirstRegexMatch(file, pattern): will return a callable that will
267
- ## return the first string match for the given pattern in the given file.
268
- ## If you use named sub-patterns in your regex pattern, it'll output only
269
- ## the string matching the regex pattern named "rev".
270
- ##
271
- ## - Caret(rev): will return the rev prefixed by a "^", which is a
272
- ## way to remove the given revision and all its ancestor.
273
- ##
274
- ## Please note that if you provide a rev-list on the command line, it'll
275
- ## replace this value (which will then be ignored).
276
- ##
277
- ## If empty, then ``gitchangelog`` will act as it had to generate a full
278
- ## changelog.
279
- ##
280
- ## The default is to use all commits to make the changelog.
281
- #revs = ["^1.0.3", ]
282
- #revs = [
283
- # Caret(
284
- # FileFirstRegexMatch(
285
- # "CHANGELOG.rst",
286
- # r"(?P<rev>[0-9]+\.[0-9]+(\.[0-9]+)?)\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)\n--+\n")),
287
- # "HEAD"
288
- #]
289
- revs = []
@@ -1,41 +0,0 @@
1
- name: "CodeQL"
2
-
3
- on:
4
- push:
5
- branches: [ "main" ]
6
- pull_request:
7
- branches: [ "main" ]
8
- schedule:
9
- - cron: "43 15 * * 4"
10
-
11
- jobs:
12
- analyze:
13
- name: Analyze
14
- runs-on: ubuntu-latest
15
- permissions:
16
- actions: read
17
- contents: read
18
- security-events: write
19
-
20
- strategy:
21
- fail-fast: false
22
- matrix:
23
- language: [ python ]
24
-
25
- steps:
26
- - name: Checkout
27
- uses: actions/checkout@v3
28
-
29
- - name: Initialize CodeQL
30
- uses: github/codeql-action/init@v2
31
- with:
32
- languages: ${{ matrix.language }}
33
- queries: +security-and-quality
34
-
35
- - name: Autobuild
36
- uses: github/codeql-action/autobuild@v2
37
-
38
- - name: Perform CodeQL Analysis
39
- uses: github/codeql-action/analyze@v2
40
- with:
41
- category: "/language:${{ matrix.language }}"
@@ -1,39 +0,0 @@
1
- name: Python application
2
-
3
- on:
4
- push:
5
- branches: [ main ]
6
- pull_request:
7
- branches: [ main ]
8
-
9
- jobs:
10
- build:
11
-
12
- runs-on: ubuntu-latest
13
- strategy:
14
- matrix:
15
- python-version: ['3.8', '3.9', '3.10']
16
-
17
- steps:
18
-
19
- - uses: actions/checkout@v2
20
-
21
- - name: Set up Python ${{matrix.python-version}}
22
- uses: actions/setup-python@v2
23
- with:
24
- python-version: ${{matrix.python-version}}
25
-
26
- - name: Initialize submodules
27
- run: git submodule update --init --recursive
28
-
29
- - name: Install system dependencies
30
- run: |
31
- sudo apt install jq moreutils
32
-
33
- - name: Install Python dependencies
34
- run: |
35
- python -m pip install --upgrade jsonschema
36
-
37
- - name: Test
38
- run: |
39
- ./validate_all.sh
@@ -1,16 +0,0 @@
1
- language: python
2
-
3
- cache: pip
4
-
5
- python:
6
- - "3.6"
7
-
8
- sudo: required
9
-
10
- install:
11
- - sudo apt-get update -qq
12
- - sudo apt-get install -y -qq jq moreutils
13
- - pip install jsonschema
14
-
15
- script:
16
- - ./validate_all.sh