forked from MISP/PyMISP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
4776 lines (3910 loc) · 152 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog
=========
v2.4.169.1 (2023-03-14)
-----------------------
Changes
~~~~~~~
- Bump version. [Raphaël Vinot]
- Add greynoise-ip object. [Raphaël Vinot]
Fix #951
v2.4.169 (2023-03-10)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Add local key in MISPTag. [Raphaël Vinot]
Related #947
- Use pytest for the tests. [Raphaël Vinot]
v2.4.168.1 (2023-02-28)
-----------------------
New
~~~
- [doc] added the Jupyter notebook used in a.7-rest-api-extensive-
restsearch. [Alexandre Dulaunoy]
Changes
~~~~~~~
- Bump changelog, version. [Raphaël Vinot]
- Bump templates, again. [Raphaël Vinot]
- Bump templates. [Raphaël Vinot]
- Bump deps, templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Properly handle missing parameter in CSV importer. [Raphaël Vinot]
Fix #931
- Undefined variable in event delegation. [Raphaël Vinot]
- Remove reference to old pydeep. [Raphaël Vinot]
Fix #914
v2.4.168 (2023-01-23)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
v2.4.167.2 (2023-01-17)
-----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
Fix
~~~
- Set relationship_type default in MISPTag to empty string. [Raphaël
Vinot]
- Another typo in readme. [Raphaël Vinot]
- Typo in readme. [Raphaël Vinot]
v2.4.167.1 (2023-01-16)
-----------------------
New
~~~
- Add relationship_type in Tag entries for feeds. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump requests. [Raphaël Vinot]
- Bump pyzmq. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump python version used by read the docs. [Raphaël Vinot]
- Bump warning to inform user that python 3.10 wil be required in 12
months. [Raphaël Vinot]
- Bump minimal PyMISP version to 3.8. [Raphaël Vinot]
- Re-bump changelog. [Raphaël Vinot]
Fix
~~~
- Update whl files. [Raphaël Vinot]
- Nvm, readthedocs requires python 3.8 at most. [Raphaël Vinot]
v2.4.167 (2022-12-22)
---------------------
Changes
~~~~~~~
- Bump objects. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Bump dependencies, move to poetry 1.3. [Raphaël Vinot]
- Bump certifi. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Re-order classes. [Raphaël Vinot]
Other
~~~~~
- Creation fo "add_attributes_from_csv.py" [Julien Mongenet]
The file aims to ingest a formated CSV file containing attributes for MISP ingestion.
- Graceful handling of tagging when name attribute is missing. [Sura De
Silva]
- Add: Galaxy test sample. [Christian Studer]
- Add: Added very straight forward tests to make sure the galaxy
clusters are properly defined. [Christian Studer]
- Add: Added the `Galaxy` field to MISPAttribute using the MISPGalaxy
class. [Christian Studer]
- Including an `add_galaxy` method similar to the
one used for events
- `attribute.galaxies` gives the list of attached
galaxy clusters
v2.4.166 (2022-11-28)
---------------------
New
~~~
- Basic support for listing, enabling and disabling decaying models.
[Raphaël Vinot]
- [tests] Test for local tags. [Raphaël Vinot]
Changes
~~~~~~~
- Re-bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump deps, version. [Raphaël Vinot]
- [types] added azure-application-id. [iglocska]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- [describetypes] updated with the latest output from MISP. [iglocska]
- [types] added missing type value. [iglocska]
v2.4.165.1 (2022-11-10)
-----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Properly bump version. [Raphaël Vinot]
Other
~~~~~
- Update __init__.py. [Marcelo Chaves]
Regardless of running the latest PyMISP version, the message below is presented:
```
The version of PyMISP recommended by the MISP instance (2.4.165) is newer than the one you're using now (2.4.162.1). Please upgrade PyMISP.
```
v2.4.165 (2022-11-09)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump mypy. [Raphaël Vinot]
- Add links to doc. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Issue with EMailObject. [Raphaël Vinot]
v2.4.162.2 (2022-11-02)
-----------------------
New
~~~
- Add in ability to set a taxonomies required status. [Tom King]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump lief (CVEs), version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- [tests] fix the list name test following latest warning-list updates.
[Alexandre Dulaunoy]
- Bump deps. [Raphaël Vinot]
- Add dependabot. [Raphaël Vinot]
Other
~~~~~
- Revert "chg: [tests] fix the list name test following latest warning-
list" [Alexandre Dulaunoy]
This reverts commit be3715595bcf08d497303198fefdf91c735b3fb2.
- Build(deps): bump actions/setup-python from 2 to 4. [dependabot[bot]]
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v2...v4)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
- Build(deps): bump actions/checkout from 2 to 3. [dependabot[bot]]
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
- Build(deps): bump codecov/codecov-action from 1 to 3.
[dependabot[bot]]
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 3.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v1...v3)
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-major
...
- Create codeql-analysis.yml. [Raphaël Vinot]
v2.4.162.1 (2022-10-02)
-----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps and version. [Raphaël Vinot]
Fix LIEF vuln.
- Bump deps, objects. [Raphaël Vinot]
Fix
~~~
- Change DNS warning list test. [Raphaël Vinot]
v2.4.162 (2022-09-09)
---------------------
New
~~~
- Pass arbitrary headers to a PyMISP request. [Raphaël Vinot]
- Allow to force the timestamps in to_dict/to_json, even if a change was
made. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Add in sort/desc for sorting results and limit/page for pagination.
[Tom King]
- Improve documentation for add_attribute. [Raphaël Vinot]
Fix
~~~
- Missing place to update version. [Raphaël Vinot]
v2.4.160.1 (2022-08-09)
-----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Make keepalive configuration linux only. [Raphaël Vinot]
Bump deps
v2.4.160 (2022-08-05)
---------------------
New
~~~
- Enable TCP keepalive. [Raphaël Vinot]
Changes
~~~~~~~
- Bump deps. [Raphaël Vinot]
- Bump version, deps. [Raphaël Vinot]
- Improve warning on invalid template, bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Make mypy happy. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Add in test case. [Tom King]
- Add ability to filter by sharing group for RestSearch for MISP >=
v2.4.158. [Tom King]
Fix
~~~
- Delete sharing group after deleting the event. [Raphaël Vinot]
- Give more time to MISP to publish the events before searching.
[Raphaël Vinot]
- Improper json check on non-json responses. [Raphaël Vinot]
Fix #854
- Mark all attributes in a soft deleted object as soft deleted too.
[Raphaël Vinot]
Bump misp-objects, deps.
- Make flake8 happy. [Raphaël Vinot]
- Properly convert MSG to EML. [Raphaël Vinot]
- Update lock file. [Raphaël Vinot]
- [feed] fixes bug when template_uuid does not exist. [Christophe
Vandeplas]
Other
~~~~~
- Update api.py. [Derekt2]
- Fix typo in logging message. [Philipp Hauswirth]
- Fig: [feed] fixes bugs during export with old data. [Christophe
Vandeplas]
- Update pyproject.toml. [Steven]
Add publicsuffixlist optional package for URL Object, which has a more current list than pyfaup
- Fix multiple_space warning. [malvidin]
- Option to include more URLObject attributes Add publicsuffixlist faup
for URLObject Windows support URLObject with PSLFaup prefers IP to
host/domain. [malvidin]
- Ensure that keys are sorted in the returned `_to_feed()` dictionary.
[Yun Zheng Hu]
This allows for better deterministic feed output generation.
v2.4.159 (2022-05-30)
---------------------
New
~~~
- [example:copyTagsFromAttributesToEvent] Added script to copy tags from
attributes to the event level. [Sami Mokaddem]
Changes
~~~~~~~
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Massive bump deps for python 3.7. [Raphaël Vinot]
v2.4.157 (2022-03-24)
---------------------
Changes
~~~~~~~
- Bump object templates. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps, objects. [Raphaël Vinot]
- [tests] reverted. [Alexandre Dulaunoy]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- [tests] subversion are supported. [Alexandre Dulaunoy]
Fix
~~~
- [tests] check if the version is a substring as PyMISP might contain
sub version. [Alexandre Dulaunoy]
v2.4.155.1 (2022-03-03)
-----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump required python version for doc. [Raphaël Vinot]
- Remove python 3.6 from metadata. [Raphaël Vinot]
Fix
~~~
- Incorrect call when requesting a new API key. [Raphaël Vinot]
v2.4.155 (2022-03-03)
---------------------
New
~~~
- Get_new_authkey for a user. [Raphaël Vinot]
- [dep] Use pydeep2 instead of pydeep. [Jakub Onderka]
Changes
~~~~~~~
- Re-bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump misp-objects. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump new minimal python version to 3.7. [Raphaël Vinot]
- Perl dependencies not longer required. [Jakub Onderka]
- Simplify submodules checkout. [Jakub Onderka]
- Use https for link to documentation. [Jakub Onderka]
- Bump deps. [Raphaël Vinot]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- [FIPS] no clean way to support OpenSSL hashlib interface for FIPS.
[Alexandre Dulaunoy]
- [FIPS] falling back on older version of Python not having
usedforsecurity. [Alexandre Dulaunoy]
- [FIPS] in some cases, the `usedforsecurity` is not used. So fail if
the FIPS compliance is required and then the `usedforsecurity` is
disabled. [Alexandre Dulaunoy]
- [feeds] FIPS: when MD5 hashes are generated for fast-lookup it's not
for security. [Alexandre Dulaunoy]
hashlib provides an option to tell if the hash is used for security or
not. By default, it's set to True. For the feed cache generation, it's
not. Then usedforsecurity=False
- Bump deps. [Raphaël Vinot]
- Bump deps, objects. [Raphaël Vinot]
Fix
~~~
- Libfuzzy-dev is not longer required. [Jakub Onderka]
- [mispevent] cannot type. [Alexandre Dulaunoy]
- Make mypy happy. [Raphaël Vinot]
Other
~~~~~
- Create add_filetype_object_from_csv.py. [Félix Herrenschmidt]
- Add feed option for local tag exclusion #817. [deku]
v2.4.152 (2021-12-22)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps, object templates. [Raphaël Vinot]
- Bump objects templates. [Raphaël Vinot]
- Bump misp-objects. [Raphaël Vinot]
- Lief doesn't supports python 3.10. [Raphaël Vinot]
- Debug poetry install, freezes on the GHA. [Raphaël Vinot]
- Bump deps, use pytest. [Raphaël Vinot]
- [feed-generator] support for distribution and sharing groups.
[Christophe Vandeplas]
Fix
~~~
- Update live tests to support proper format of SGs. [Raphaël Vinot]
- [sharinggroups] Fixes wrong model for SharingGroupOrg. [Christophe
Vandeplas]
- [feed-generator] code style fixes. [Christophe Vandeplas]
- [feed-generator] keeping function compatibility. [Christophe
Vandeplas]
- [feed-generator] fix missing except type. [Christophe Vandeplas]
v2.4.151 (2021-11-19)
---------------------
New
~~~
- Add Blind Carbon Copy (bcc) headers. [Sami Tainio]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump misp-objects. [Raphaël Vinot]
- [feed-generator] Make the feature to exlude attribute type more
generic. [Sami Mokaddem]
- [feed-generator] Added exclude malware samples option. [Sami Mokaddem]
- Bump deps, chardet is required by pyfaup. [Raphaël Vinot]
- Removed a whitespace. [Sami Tainio]
- Keep strict and generate attributes when needed. [Raphaël Vinot]
- Slight changes regarding timezones. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Unified constructors. [Thomas Dupuy]
- Slight changes regarding timezones. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [types] remove the duplicate. [Alexandre Dulaunoy]
- [describeTypes] remove duplicate filename-pattern. [Alexandre
Dulaunoy]
- [misp-objects] updated. [Alexandre Dulaunoy]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- Bump many dependencies. [Raphaël Vinot]
- Add in test case for get_sharing_group and validate orgs are present.
[Tom King]
- Improve sharing groups, bring back organsations included and ability
to get specific SG. [Tom King]
- Add in test case for searching against orgs and users. [Tom King]
- Add ability to search against orgs and users by freetext search (both)
or organisation (users) [Tom King]
- [test] Check if all category types exists. [Jakub Onderka]
- Bump changelog. [Raphaël Vinot]
- [py] Typo. [Steve Clement]
- [describeTypes] updated to include ssh-fingerprint. [Alexandre
Dulaunoy]
Fix
~~~
- [feed-generator] Revert back the event initial search to use the index
endpoint instead of RestSearch. [Sami Mokaddem]
Relying on RestSearch was offering more flexibility than index in terms of filtering options,
however, it might introduce a significant overhead potentially leading to timeout.
- PyMISP.get_user_setting method. [Jakub Onderka]
- [tests] Remove debug prints. [Jakub Onderka]
- Fix final nosetest. [Tom King]
- Fix nosetests. [Tom King]
- [types] Update types to use `filename-pattern` type. [Jakub Onderka]
- [test] Remove debug print. [Jakub Onderka]
- [test] Correct error messages for blocked event. [Jakub Onderka]
- Missing import in __init__ [Raphaël Vinot]
Fix #796
- [tests] Fixed stix test. [chrisr3d]
- [py] Typo. [Steve Clement]
Other
~~~~~
- Update README.md. [Raphaël Vinot]
v2.4.148.1 (2021-09-30)
-----------------------
New
~~~
- Add few keys to email object creator. [Raphaël Vinot]
Fix #787
- Test cases for edit objects and upload stix. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump misp-objects. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [doc] Minor fixes, note and typo. [Steve Clement]
- Bump deps. [Raphaël Vinot]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- Update tutorial for custom objects. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump live tests. [Raphaël Vinot]
- [misp-objects] updated to the latest version. [Alexandre Dulaunoy]
- [types] updated types/categories mapping. [Christophe Vandeplas]
- Remove test files. [Raphaël Vinot]
- Automatically pull the malwares repo when running
tests/testlive_comprehensive.py. [Raphaël Vinot]
- Remove submodules with malware. [Raphaël Vinot]
- Add test for updating a objects from a custom template. [Raphaël
Vinot]
- Re-bump changelog. [Raphaël Vinot]
Fix
~~~
- Message_from_bytes really dislikes newline at the beginning of a mail.
[Raphaël Vinot]
- Skip IPs in Received header. [Raphaël Vinot]
- Name is passed to super. [Raphaël Vinot]
- Do not create empty manifest, json load dislikes it. [Raphaël Vinot]
- Initial round of cleanup on redis feed generator. [Raphaël Vinot]
- Upload of STIX document with non-ascii characters. [Raphaël Vinot]
Due to: https://github.com/psf/requests/issues/5560
TL;DR: a variable of type str passed to data in a POST request will be
silently re-encoded to ISO-8859-1, making MISP barf on the other side.
- Remove outdated deps from setup.py. [Raphaël Vinot]
Fix https://github.com/MISP/MISP/issues/7729
Other
~~~~~
- Remove unicode to ascii parts. [Sami Tainio]
- Fix #787 and add Unicode to ASCII function. [Sami Tainio]
Fix #787
- Uses regex to pick up the hostnames/domains from the "Received: from" headers.
Unicode to ASCII function
- Spam messages more often than not contain junk text as unicode characters in the headers. The "from" and "subject" headers being the most common ones. Before this change the script would error on such emails or sometimes replace the unicode characters with questionmarks "?".
- Function takes argument as an input and then encodes it in ascii while ignoring any malformed data. It then returns an ASCII string without the unicode characters.
- Currently implemented for "from" and "subject" handling.
- Update README.md. [Raphaël Vinot]
Not using travis anymore.
v2.4.148 (2021-08-05)
---------------------
New
~~~
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- Save one REST call when initialize PyMISP class. [Jakub Onderka]
- Method `organisation_exists` [Jakub Onderka]
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- `to_dict` method supports `json_format` parameter. [Jakub Onderka]
- Method `organisation_exists` [Jakub Onderka]
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- Save one REST call when initialize PyMISP class. [Jakub Onderka]
- Method `organisation_exists` [Jakub Onderka]
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- Exclude decayed attributes in search. [Raphaël Vinot]
Fix #753
Changes
~~~~~~~
- Bump objects template. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Remove duplicates tests. [Raphaël Vinot]
- [testlive_comprehensive] correct path to access sharing group
releasability after edit. [iglocska]
- Properly validate update_sharing_group without pythonify. [Raphaël
Vinot]
- Bump missing dep. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [testlive_comprehensive] correct path to access sharing group
releasability after edit. [iglocska]
- [authkey test] removed from testlive_comprehensive. [iglocska]
- the default now enables advanced authkeys making the retriaval of keys impossible after the user creation
- Do not load schema for event when not necessary. [Jakub Onderka]
- Bump deps. [Raphaël Vinot]
- `get_taxonomy` supports namespace. [Jakub Onderka]
- Properly validate update_sharing_group without pythonify. [Raphaël
Vinot]
- Bump missing dep. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [testlive_comprehensive] correct path to access sharing group
releasability after edit. [iglocska]
- [authkey test] removed from testlive_comprehensive. [iglocska]
- the default now enables advanced authkeys making the retriaval of keys impossible after the user creation
- Do not load schema for event when not necessary. [Jakub Onderka]
- Bump deps. [Raphaël Vinot]
- `get_taxonomy` supports namespace. [Jakub Onderka]
- Properly validate update_sharing_group without pythonify. [Raphaël
Vinot]
- Bump missing dep. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [testlive_comprehensive] correct path to access sharing group
releasability after edit. [iglocska]
- [authkey test] removed from testlive_comprehensive. [iglocska]
- the default now enables advanced authkeys making the retriaval of keys impossible after the user creation
- Do not load schema for event when not necessary. [Jakub Onderka]
- Bump deps. [Raphaël Vinot]
- `get_taxonomy` supports namespace. [Jakub Onderka]
- Update mypy, change accordingly. [Raphaël Vinot]
Fix
~~~
- Typo in key name. [Raphaël Vinot]
- [test] test_sharing_groups. [Jakub Onderka]
- [test] test_sharing_groups again. [Jakub Onderka]
- [test] test_sharing_groups. [Jakub Onderka]
- Typo in key name. [Raphaël Vinot]
- [test] test_sharing_groups again. [Jakub Onderka]
- [test] test_sharing_groups. [Jakub Onderka]
- [test] test_sharing_groups again. [Jakub Onderka]
- [test] test_sharing_groups. [Jakub Onderka]
- Flake8 stuff. [Raphaël Vinot]
- Revert rename, fix mypy. [Raphaël Vinot]
- Properly handle the case MISP is in a sub redirect. [Raphaël Vinot]
Fix #757
Other
~~~~~
- Revert "chg: Remove legacy stix converter." [iglocska]
This reverts commit 94ce4a367bbde9284a6f29e6e6152c91de386879.
- breaks misp-stix converter, reverting it for now, let's find a way to deprecate this without outright removing it
- Revert "chg: Remove legacy stix converter." [iglocska]
This reverts commit 94ce4a367bbde9284a6f29e6e6152c91de386879.
- breaks misp-stix converter, reverting it for now, let's find a way to deprecate this without outright removing it
- Revert "chg: Remove legacy stix converter." [iglocska]
This reverts commit 94ce4a367bbde9284a6f29e6e6152c91de386879.
- breaks misp-stix converter, reverting it for now, let's find a way to deprecate this without outright removing it
v2.4.144 (2021-06-07)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump object templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Other
~~~~~
- Fix misp API response content parsing. [Silvian I]
v2.4.143 (2021-05-14)
---------------------
New
~~~
- Method to get the raw object template. [Raphaël Vinot]
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version, deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump objects templates. [Raphaël Vinot]
Fix
~~~
- First-seen and last-seen on attributes and objects were not checked
for sanity. [Raphaël Vinot]
- Remove search_all example, use search instead. [Raphaël Vinot]
v2.4.142 (2021-04-26)
---------------------
New
~~~
- Support for correlation exclusion list. [Raphaël Vinot]
Fix #732
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Fix test suite. [Raphaël Vinot]
- Bump objects templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Add comment for controller attribute in search. [Raphaël Vinot]
Fix
~~~
- Enable/disable feeds. [Raphaël Vinot]
- Mistake in mypy config. [Raphaël Vinot]
- Exclude data from mypy. [Raphaël Vinot]
v2.4.141.1 (2021-04-02)
-----------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Re-bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
Other
~~~~~
- Fix bump version, deps, templates. [Raphaël Vinot]
- Update README.md. [Raphaël Vinot]
v2.4.141 (2021-04-01)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Get_uuid_or_id_from_abstract_misp accepts dict. [Raphaël Vinot]
- Remove references to ExpandedPyMISP. [Raphaël Vinot]
Fix #721
- Follow best practices and remove the logging handler. [Raphaël Vinot]
- Strip NULL string from value. [Raphaël Vinot]
https://github.com/MISP/PyMISP/issues/678
- Bump deps. [Raphaël Vinot]
- Raise exception on missing template in CSVLoader. [Raphaël Vinot]
- Bump templates. [Raphaël Vinot]
- Re-bump objects. [Raphaël Vinot]
- Bump object templates. [Raphaël Vinot]
- Add test case, fix mypy. [Raphaël Vinot]
- Take simple_value as value in MISPObject.add_attribute. [Raphaël
Vinot]
Fix
~~~
- Use get_uuid_or_id_from_abstract_misp in tag methods. [Raphaël Vinot]
Fix #725
- Skip nameless sections in ELF. [Raphaël Vinot]
- Make reportlab tests optional if missing dep. [Raphaël Vinot]
- Enable taxonomy failed if global pythonify is on. [Raphaël Vinot]
- Properly pass content-type. [Raphaël Vinot]
- Re-enable support for uploading STIX 1 documents. [Raphaël Vinot]
Fix #711
v2.4.140 (2021-03-03)
---------------------
New
~~~
- Soft delete object in MISPEvent. [Raphaël Vinot]
Fix #706
- Add in ability to add a new cluster relation. [Tom King]
- MISP Galaxy 2.0 capability. [Tom King]
- Soft delete object in MISPEvent. [Raphaël Vinot]
Fix #706
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump object templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [describetypes] updated. [Alexandre Dulaunoy]
- Bump objects templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump tests for galaxy cluster. [Raphaël Vinot]
- Improve Pydoc on search method's timestamp parameter. [Raphaël Vinot]
Fix #708
- Bump poetry file. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [data] describeTypes updated. [Alexandre Dulaunoy]
- Add deprecation warning for Python < 3.8. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Don't parse the meta key into cluster elements on a MISPEvent, but
allow users to manually perform this action. [Tom King]
- Add in nosetests for MISP Galaxy functions, check default key as a
dict attribute not MISPAbstract attribute. [Tom King]
- Add in more Galaxy 2.0 functions and code cleanup. [Tom King]
- Add in add_cluster function and ability to search clusters within a
galaxy. [Tom King]
- Remove legacy stix converter. [Raphaël Vinot]
- Improve Pydoc on search method's timestamp parameter. [Raphaël Vinot]
Fix #708
- Bump poetry file. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- [data] describeTypes updated. [Alexandre Dulaunoy]
- Add deprecation warning for Python < 3.8. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
Fix
~~~
- Typo in tests. [Raphaël Vinot]
- Make mypy happy in python 3.6 and 3.7. [Raphaël Vinot]
- Cosmetic changes, fix mypy. [Raphaël Vinot]
- Support text search again. [Raphaël Vinot]
Fix #705
- Do not add the serial-number twice. [Raphaël Vinot]
- Skip PE section if name is none AND size is 0. [Raphaël Vinot]
- Urllib3.__version__ may not have a patch number. [Raphaël Vinot]
fix https://github.com/MISP/PyMISP/issues/698
- Fix mispevent edit test by including default and distribution keys on
a GalaxyCluster. [Tom King]
- Support text search again. [Raphaël Vinot]
Fix #705
- Do not add the serial-number twice. [Raphaël Vinot]
- Skip PE section if name is none AND size is 0. [Raphaël Vinot]
- Urllib3.__version__ may not have a patch number. [Raphaël Vinot]
fix https://github.com/MISP/PyMISP/issues/698
Other
~~~~~
- Removed unused import. [Nick]
- Supress ssl warnings. [Nick]
- Re-added error checking for defaults. [Nick]
- Deleted all references to org as it's unneeded. [Nick]
- Re-added brackets. [Nick]
- Multiple updates to proofpoint example. [Nick]
- Added additionally necessary keys to keys.py.example
- Added error check for unset keys
- Used built-in HTTP Basic Auth for requests instead of manually-created header
- Removed setting of orgc as that's pulled from the MISP key being used
-
- Removed cast of str to str. [Nick]
- Added check for invalid creds. [Nick]
Without the added check, the script will error out on line 29 since the key doesn't exist in the dict. This at least gives a reason.
- Removed unused import. [Nick]
- Supress ssl warnings. [Nick]
- Re-added error checking for defaults. [Nick]
- Deleted all references to org as it's unneeded. [Nick]
- Re-added brackets. [Nick]
- Multiple updates to proofpoint example. [Nick]
- Added additionally necessary keys to keys.py.example
- Added error check for unset keys
- Used built-in HTTP Basic Auth for requests instead of manually-created header
- Removed setting of orgc as that's pulled from the MISP key being used
-
- Removed cast of str to str. [Nick]
- Added check for invalid creds. [Nick]
Without the added check, the script will error out on line 29 since the key doesn't exist in the dict. This at least gives a reason.
v2.4.138 (2021-02-08)
---------------------
Changes
~~~~~~~
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
v2.4.137.4 (2021-02-04)
-----------------------