125 Commits

Author SHA256 Message Date
8c99914bfb - update to version 2.4.135.3:
- Changes
   - Bump version. [Raphaël Vinot]
   - Improve typing. [Raphaël Vinot]
   - Improve add_attribute with a list. [Raphaël Vinot]
 - Fix
   - Do not fail on PyMISP import when mail-parser is not present. [Raphaël
     Vinot]
- update to version 2.4.135.2:
 - New
   - Add Github workflow. [Raphaël Vinot]
 - Changes
   - Bump changelog. [Raphaël Vinot]
   - Bump version. [Raphaël Vinot]
   - Improve error message if a type in missing. [Raphaël Vinot]
   - [type] process-state added. [Alexandre Dulaunoy]
   - Bump misp-objects. [Raphaël Vinot]
   - [misp-objects] updated. [Alexandre Dulaunoy]
   - Add path to CSV sample files. [Raphaël Vinot]
   - [types] jarm-fingerprint added. [Alexandre Dulaunoy]
 - Fix
   - Remove python 3.9 from action (lief not supported yet) [Raphaël Vinot]
   - Initialize submodules in gh action. [Raphaël Vinot]
   - Make mail-parser really optional. [Raphaël Vinot]
- update to version 2.4.135.1:
 - Changes
   - Bump changelog. [Raphaël Vinot]
   - Bump version, travis install. [Raphaël Vinot]
   - Make mail-parser an optional dependency. [Raphaël Vinot]
- update to version 2.4.135:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=75
2020-11-25 20:56:36 +00:00
1719d84f83 Accepting request 847347 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/847347
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=29
2020-11-10 12:46:22 +00:00
d065c2d53a - update to version 2.4.134:
- Changes
   - Bump version. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - Keep connection alive between requests. [Jakub Onderka]
   - Bump deps. [Raphaël Vinot]
   - Format docstrings in mispevent.py. [Lott, Christopher (cl778h)]
     Add ":param " prefix to parameters to improve ReadTheDocs output.
     Fix some minor typos in docstrings.
   - Bump deps. [Raphaël Vinot]
   - Bump deps. [Raphaël Vinot]
   - Bump changelog. [Raphaël Vinot]
 - Fix
   - Remove duplicate check if debug logging is enabled. [Jakub Onderka]
   - Do now fail on requests returning plain text. [Raphaël Vinot]
     Fix #639
 - Other
   - Revert "Update .travis.yml" [Raphaël Vinot]
     lief isn't compatible with python 3.9
     This reverts commit e10843fa33c9a08b7da4ef24cbce457be53a7459.
   - Update .travis.yml. [Raphaël Vinot]
     Add python 3.9
   - Drop `encoding=` in Python 3.9. [Friedrich Lindenberg]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=73
2020-11-02 19:32:01 +00:00
32dcfd3008 - update to version 2.4.133:
- New
   - [attribute type] telfhash added. [Alexandre Dulaunoy]
   - [add_gitlab_user] new gitlab user fetch script to MISP object.
     [Alexandre Dulaunoy]
     usage: add_gitlab_user.py [-h] -e EVENT [-f] -u USERNAME [-l LINK]
     Fetch GitLab user details and add it in object in MISP
     optional arguments:
       -h, --help            show this help message and exit
       -e EVENT, --event EVENT
                             Event ID to update
       -f, --force-template-update
       -u USERNAME, --username USERNAME
                             GitLab username to add
       -l LINK, --link LINK  Url to access the GitLab instance, Default is
                             www.gitlab.com.
   - [example] add_github_user example - WiP. [Alexandre Dulaunoy]
     usage: add_github_user.py [-h] -e EVENT [-f] -u USERNAME
     Fetch GitHub user details and add it in object in MISP
     optional arguments:
       -h, --help            show this help message and exit
       -e EVENT, --event EVENT
                             Event ID to update
       -f, --force-template-update
       -u USERNAME, --username USERNAME
                             GitHub username to add
   - Method to get the new version of the templates. [Raphaël Vinot]
   - Delete tags via update_attribute, search by sharing group. [Tom King]
 - Changes
   - Bump version. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=72
2020-11-01 18:29:47 +00:00
950698d5df Accepting request 820415 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/820415
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=28
2020-07-14 05:56:29 +00:00
4ee53901da - update to version 5.0.2:
- Ensured black profile was complete, adding missing line_length definition.
- update to version 5.0.1:
 - Fixed a runtime error in a vendored dependency (toml).
- update to version 5.0.0:
 - Breaking changes:
  - isort now requires Python 3.6+ to run but continues to support formatting on ALL versions of python including Python 2 code.
  - isort deprecates official support for Python 3.4, removing modules only in this release from known_standard_library:
  -     user
  - Config files are no longer composed on-top of each-other. Instead the first config file found is used.
  -     Since there is no longer composition negative form settings (such as --dont-skip) are no longer required and have been removed.
  - Two-letter shortened setting names (like ac for atomic) now require two dashes to avoid ambiguity: --ac.
  - For consistency with other tools -v now is shorthand for verbose and -V is shorthand for version. See Issue: #1067.
  - length_sort_{section_name} config usage has been deprecated. Instead length_sort_sections list can be used to specify a list of sections that need to be length sorted.
  - safety_excludes and unsafe have been deprecated
  - Config now includes as default full set of safety directories defined by safety excludes.
  - --recursive option has been removed. Directories passed in are now automatically sorted recursive.
  - --apply option has been removed as it is the default behaviour.
  - isort now does nothing, beyond giving instructions and exiting status code 0, when ran with no arguments.
  -     a new --interactive flag has been added to enable the old style behaviour.
  - isort now works on contiguous sections of imports, instead of one whole file at a time.
  - isort now formats all nested "as" imports in the "from" form. import x.y as a becomes from x import y as a.
  - keep_direct_and_as_imports option now defaults to True.
  - appdirs is no longer supported. Unless manually specified, config should be project config only.
  - toml is now installed as a vendorized module, meaning pyproject.toml based config is always supported.
  - Completely new Python API, old version is removed and no longer accessible.
  - New module placement logic and module fully replaces old finders. Old approach is still available via --old-finders.
 - Internal:
  - isort now utilizes mypy and typing to filter out typing related issues before deployment.
  - isort now utilizes black internally to ensure more consistent formatting.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=70
2020-07-04 12:21:24 +00:00
05b410fc52 Accepting request 809967 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/809967
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=27
2020-06-09 22:45:07 +00:00
b16a33054a - update to version 2.4.126:
- New
   - Test search with timestamp. [Raphaël Vinot]
   - Add testcase for updating partial event. [Raphaël Vinot]
   - Add pyfaup as optional dependency. [Raphaël Vinot]
   - [dev] add microblog object tool. [VVX7]
   - Very simple test case for rest search on objects. [Raphaël Vinot]
   - Self registration, object level search (initial) [Raphaël Vinot]
   - [dev] add flag to get extended misp event. [VVX7]
   - [dev] add flag to get extended misp event. [VVX7]
 - Changes
   - Bump version. [Raphaël Vinot]
   - Bump misp-object. [Raphaël Vinot]
   - Bump dependencies. [Raphaël Vinot]
   - Add test for feed partial update. [Raphaël Vinot]
   - Strip empty parameters in build_complex_query. [Raphaël Vinot]
     Fix #577
   - Simplify delete_attribute. [Raphaël Vinot]
   - Bump travis install. [Raphaël Vinot]
   - Add comment in microblog object. [Raphaël Vinot]
   - Bump dependencies. [Raphaël Vinot]
   - [dev] clean up how keys are accessed in self._parameters. [VVX7]
   - [dev] use isinstance() type check. [VVX7]
   - [dev] fix abstract generator import. add logger. [VVX7]
   - [dev] change type() == list. [VVX7]
   - Bump misp-objects. [Raphaël Vinot]
   - Bump dependencies. [Raphaël Vinot]
   - [dev] remove duplicate line. [VVX7]
   - [dev] add extend_event() test. chg typo in get_event() [VVX7]
   - Re-Bump CHANGELOG. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=68
2020-05-21 13:49:26 +00:00
cd7353fe08 Accepting request 802508 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/802508
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=26
2020-05-11 11:42:23 +00:00
7ccf86afcc - update to version 2.4.125:
- New
   - Extended option on get event. [Raphaël Vinot]
     Related to #567
 - Changes
   - Bump objects, deps. [Raphaël Vinot]
   - Bump dependencies. [Raphaël Vinot]
   - Remove old suricata script, keep reference to old code. [Raphaël
     Vinot]
 - Fix
   - Enable autoalert on admin user. [Raphaël Vinot]
   - [abstract] Forces file to be read with utf8 encoding. [mokaddem]
   - Properly handle timezone in tests. [Raphaël Vinot]
 - Other
   - Update up.py. [Raphaël Vinot]
     Fix #563
   - Fixed __query_virustotal return type. [DocArmoryTech]
     __query_virustotal returned a Response object and not the json expected; modified so that report_json is returned instead of report.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=66
2020-05-03 13:20:50 +00:00
2cd3cce510 Accepting request 795768 from devel:languages:python
- Remove the py2 packages as the package is set to build only
  on python3

OBS-URL: https://build.opensuse.org/request/show/795768
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=25
2020-04-21 11:08:53 +00:00
Tomáš Chvátal
555ae41aa7 - Remove the py2 packages as the package is set to build only
on python3

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=64
2020-04-20 10:33:55 +00:00
dca2917e5b Accepting request 792919 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/792919
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=24
2020-04-10 21:53:37 +00:00
3045d60e8c - update to version 2.4.124:
- Changes
   - Bump version. [Raphaël Vinot]
   - Bump dependencies. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - Add option to aggregare by country. [Raphaël Vinot]
   - [CSSE COVID] Publish the event immediately. [Raphaël Vinot]
   - Add changelog and readme in the package. [Raphaël Vinot]
   - Bump version in pyproject. [Raphaël Vinot]
 - Fix
   - Strip every string in AbstractMISP. [Raphaël Vinot]
     fix #546
   - Incorrect expectation of attribute value to be a str - take 2.
     [Raphaël Vinot]
     Related #553
   - Incorrect expectation of attribute value to be a str. [Raphaël Vinot]
     Fix #553
 - Other
   - Dos2unix examples/stats_report.py. [Sebastian Wagner]
   - Cytomic Orion API access. [Koen Van Impe]
   - Add organisations from CSV. [Koen Van Impe]
   - Minor updates to vmray_automation for travis. [Koen Van Impe]
   - VMRay Automation with ExpandedPyMISP. [Koen Van Impe]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=62
2020-04-03 08:25:08 +00:00
d5b850b440 Accepting request 787843 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/787843
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=23
2020-03-25 22:45:04 +00:00
59f4766141 - set UTF-8 encoding for test, fixes Leap 15.1 buildc
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=60
2020-03-17 14:49:48 +00:00
5ef70bdff2 - change source URL to github, as the pypi archive misses some files.
- add misp-objects source as github archive misses it.
- update to version 2.4.123:
 - New
   - Add import script for dxy data. [Raphaël Vinot]
   - Csse covid19 daily report importer. [Raphaël Vinot]
 - Changes
   - Bump version. [Raphaël Vinot]
   - Bump changelog. [Raphaël Vinot]
   - Bump dependencies. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - JSON files are UTF8. [Raphaël Vinot]
     Bump dev deps, update comment
   - Add tag, set distribution, add file and source (CSSE importer)
     [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
- update to version 2.4.122:
 - New
   - Add uuid by default in MISPEvent, add F/L seen in feed output.
     [Raphaël Vinot]
   - Admin script to setup a sync server. [Raphaël Vinot]
   - Add feed generation example in notebook. [Raphaël Vinot]
 - Changes
   - Bump changelog. [Raphaël Vinot]
   - Comments were still referencing pipenv. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - Bump changelog. [Raphaël Vinot]
   - Bump version. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=59
2020-03-17 14:32:41 +00:00
211dfe77a4 Accepting request 775647 from devel:languages:python
- update to version 2.4.121.1:
 - Fix
   - Make lief optional again. [Raphaël Vinot]
     fix #538
- remove fix-tests-template-version.patch, merged upstream
- update to version 2.4.121:
 - New
   - Add includeDecayScore to rest search. [VVX7]
   - Support for first_seen/last_seen. [Raphaël Vinot]
     Cleaner import of datetime
   - [attributes] chrome-extension-id added. [Alexandre Dulaunoy]
 - Changes
   - Do not install neo by default. [Raphaël Vinot]
   - Bump objects. [Raphaël Vinot]
   - More flexible when an event is in a weird state. [Raphaël Vinot]
   - Str to int, properly load SharingGroup. [Raphaël Vinot]
     Fix #535
   - Bump deps, add pep8 test. [Raphaël Vinot]
   - Bump objects. [Raphaël Vinot]
   - Support dict in tag/untag. [Raphaël Vinot]
   - Test update last seen. [Raphaël Vinot]
   - Add test cases in feed. [Raphaël Vinot]
   - Add test cases. [Raphaël Vinot]
   - Normalize to_datetime conversion. [Raphaël Vinot]
   - Trustar example uses objects. [Raphaël Vinot]
   - Add lief in the generic requirements. [Raphaël Vinot]
   - Refactorize typing, validate. [Raphaël Vinot]
 - Fix
   - Issue with readme. [Raphaël Vinot]
   - Remove debugging. [Raphaël Vinot]
   - [*-seen] Consider that `-` can also be in the date component while
     parsing. [mokaddem]
   - First seen was after last seen, trigerring the exception. [Raphaël
     Vinot]
   - Tests failing if local tz was not CET. [Raphaël Vinot]
   - Syntax and typos. [Raphaël Vinot]
   - Bugs introduced by last commit. [Raphaël Vinot]
 - Other
   - Doc: fix Search-FullOverview.ipynb code example. [Bernhard E. Reiter]
   - Chore: delete old examples. [Manabu Niseki]
     Delete examples which use deprecated/deleted methods
   - Scrape trustar intel platform reports and create misp events.
     [th3jiv3r]
   - Configuration for trustar integration. [th3jiv3r]
   - Fixed trailing lines. [turtlefac3]
   - Fixed trailing lines. [turtlefac3]
   - Custom integration written in python to scrape Proofpoint VAP API for
     metrics of top Very Attacked Persons and create MISP events.
     [turtlefac3]
   - Fix typos on FullOverview.ipynb. [Bernhard E. Reiter]

OBS-URL: https://build.opensuse.org/request/show/775647
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=22
2020-02-19 11:41:56 +00:00
11d00678d7 - remove fix-tests-template-version.patch, merged upstream
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=57
2020-02-18 20:06:46 +00:00
d46fbfe5ff - update to version 2.4.121.1:
- Fix
   - Make lief optional again. [Raphaël Vinot]
     fix #538

- update to version 2.4.121:
 - New
   - Add includeDecayScore to rest search. [VVX7]
   - Support for first_seen/last_seen. [Raphaël Vinot]
     Cleaner import of datetime
   - [attributes] chrome-extension-id added. [Alexandre Dulaunoy]
 - Changes
   - Do not install neo by default. [Raphaël Vinot]
   - Bump objects. [Raphaël Vinot]
   - More flexible when an event is in a weird state. [Raphaël Vinot]
   - Str to int, properly load SharingGroup. [Raphaël Vinot]
     Fix #535
   - Bump deps, add pep8 test. [Raphaël Vinot]
   - Bump objects. [Raphaël Vinot]
   - Support dict in tag/untag. [Raphaël Vinot]
   - Test update last seen. [Raphaël Vinot]
   - Add test cases in feed. [Raphaël Vinot]
   - Add test cases. [Raphaël Vinot]
   - Normalize to_datetime conversion. [Raphaël Vinot]
   - Trustar example uses objects. [Raphaël Vinot]
   - Add lief in the generic requirements. [Raphaël Vinot]
   - Refactorize typing, validate. [Raphaël Vinot]
 - Fix
   - Issue with readme. [Raphaël Vinot]
   - Remove debugging. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=56
2020-02-08 16:42:40 +00:00
2cf59f7753 Accepting request 767033 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/767033
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=21
2020-01-25 12:25:28 +00:00
ac9001ce34 - drop python2, not supported anymore upstream
- add fix-tests-template-version.patch from upstream commit to fix tests
- update to version 2.4.120:
 - New
   - [attribute type] kusto-query attribute type. [Alexandre Dulaunoy]
     Kusto query is the query language for the Kusto services in Azure used
     to search large dataset. It's used in Windows Defender ATP Hunting-Queries
     and also Azure Sentinel (Cloud-native SIEM).
   - Remove python < 3.6 support. [Raphaël Vinot]
 - Changes
   - Bump version. [Raphaël Vinot]
   - Bump Changelog. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - Bump dependencies, add debug. [Raphaël Vinot]
   - Upate dummy events creator. [Raphaël Vinot]
   - Add tests on more version of Python. [Raphaël Vinot]
   - Search with the STIX output returns a json STIX. [Raphaël Vinot]
     Was XML before.
   - Bump dependencies. [Raphaël Vinot]
   - Add more typing information. [Raphaël Vinot]
   - Add typing markup. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
   - Bump Dependencies. [Raphaël Vinot]
   - Bump misp-objects. [Raphaël Vinot]
 - Fix
   - Add missing variable in dummy creator. [Raphaël Vinot]
   - Et2misp was python2 only. [Raphaël Vinot]
   - Feed generator was broken. [Raphaël Vinot]
     Fix #506
   - Event without hashable attribute. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=54
2020-01-18 10:29:37 +00:00
12c93ea87b Accepting request 761127 from devel:languages:python
- update to version 2.4.119.1:
- New
 - URLObject (requires pyfaup) [Raphaël Vinot]
- Changes
 - Version bump. [Raphaël Vinot]
 - Bump test files. [Raphaël Vinot]
 - Bump misp-objects. [Raphaël Vinot]
 - Debug travis error message. [Raphaël Vinot]
 - [types] eppn type added. [Alexandre Dulaunoy]
 - Fix typo. [Raphaël Vinot]
 - Move scrippsco2 feed generator to a sub directory. [Raphaël Vinot]
 - Update documentation. [Raphaël Vinot]
    Fix #396
 - Bump objects. [Raphaël Vinot]
- Fix
 - Properly test custom objects. [Raphaël Vinot]
 - Adding a sighting takes a little bit of time. [Raphaël Vinot]
 - Test case on reference. [Raphaël Vinot]
 - Add missing fields to event & attribute for the feed output. [Raphaël
    Vinot]
 - Make sure the publish timestamp is bumped on update. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/request/show/761127
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=20
2020-01-06 14:24:27 +00:00
0a7fefd7a6 - update to version 2.4.119.1:
- New
 - URLObject (requires pyfaup) [Raphaël Vinot]
- Changes
 - Version bump. [Raphaël Vinot]
 - Bump test files. [Raphaël Vinot]
 - Bump misp-objects. [Raphaël Vinot]
 - Debug travis error message. [Raphaël Vinot]
 - [types] eppn type added. [Alexandre Dulaunoy]
 - Fix typo. [Raphaël Vinot]
 - Move scrippsco2 feed generator to a sub directory. [Raphaël Vinot]
 - Update documentation. [Raphaël Vinot]
    Fix #396
 - Bump objects. [Raphaël Vinot]
- Fix
 - Properly test custom objects. [Raphaël Vinot]
 - Adding a sighting takes a little bit of time. [Raphaël Vinot]
 - Test case on reference. [Raphaël Vinot]
 - Add missing fields to event & attribute for the feed output. [Raphaël
    Vinot]
 - Make sure the publish timestamp is bumped on update. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=52
2020-01-01 16:21:32 +00:00
42ba972901 Accepting request 758907 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/758907
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=19
2019-12-23 21:45:46 +00:00
7d6c0b4305 - update to version 2.4.119:
- Changes
  - Bump version. [Raphaël Vinot]
  - Bump dependencies. [Raphaël Vinot]
 - Fix
  - Bump lief to 0.10.1. [Raphaël Vinot]
  - Update tests. [Raphaël Vinot]
  - Raise PyMISPError instead of Exception. [Raphaël Vinot]
  - Rename feed_meta_generator so it clearly fails with python<3.6.
     [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=50
2019-12-15 22:11:19 +00:00
4117b57d6e Accepting request 753262 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/753262
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=18
2019-12-04 12:52:44 +00:00
56fdf891fc - update to version 2.4.117.3:
- New
 - Script to generate the metadata of a feed out of a directory. [Raphaël
    Vinot]
 - Add to_feed export to MISPEvent. [Raphaël Vinot]
 - Validate object templates. [Raphaël Vinot]
    fix https://github.com/MISP/misp-objects/issues/199
 - Test cases for restricted tags. [Raphaël Vinot]
    Fix #483
 - Get Database Schema Diagnostic. [Raphaël Vinot]
    Fix #492
- Changes
 - Bump version. [Raphaël Vinot]
 - Bump dependencies. [Raphaël Vinot]
 - Require stable version of lief again. [Raphaël Vinot]
 - Few more improvements on the feed export. [Raphaël Vinot]
 - Bump misp-objects. [Raphaël Vinot]
 - Make the feed generator more generic. [Raphaël Vinot]
 - Use New version of PyMISP in the feed generator. [Raphaël Vinot]
 - Bump misp-object. [Raphaël Vinot]
 - Allow to sort and indent the json output for objects. [Raphaël Vinot]
 - Bump objects. [Raphaël Vinot]
 - Bump dependencies. [Raphaël Vinot]
 - [test] feed test updated as botvrij is now TLS by default. [Alexandre
    Dulaunoy]
- Fix
 - Improve stability of feed output. [Raphaël Vinot]
 - Do not unitialize the uuid in MISPEvent. [Raphaël Vinot]
 - Bump url template version in test cases. [Raphaël Vinot]
 - Python 2.7 tests. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=48
2019-11-26 13:21:06 +00:00
128e9a60e7 Accepting request 722152 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/722152
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=17
2019-08-13 11:17:59 +00:00
f70d9d4c9d Accepting request 720299 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/720299
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=16
2019-08-05 08:38:35 +00:00
fab14655be - update to version 2.4.112:
- New
 - [Search] Add a few new options in rest search. [Raphaël Vinot]
 - Allow to change the template on an object on-the-fly. [Raphaël Vinot]
 - [example] Script to load datasets from Scripps CO2. [Raphaël Vinot]
 - Get_objects_by_name in MISPEvent. [Raphaël Vinot]
    new: Convert datetime objects to python datetime.
- Changes
 - Bump Changelog. [Raphaël Vinot]
 - Bump version. [Raphaël Vinot]
 - [tests] Few improvements. [Raphaël Vinot]
 - [tests] Add new test cases. [Raphaël Vinot]
 - Rename relationship included-in -> includes. [Raphaël Vinot]
 - Bump misp-objects. [Raphaël Vinot]
 - [deps] Bump. [Raphaël Vinot]
 - [examples] pythonify properly when needed. [Raphaël Vinot]
 - [tests] Toggle pythonify in create_massive_dummy_events. [Raphaël
    Vinot]
- Fix
 - Inconsistency in MISPEvent, reenable tests. [Raphaël Vinot]
 - Some test cases need more love. [Raphaël Vinot]
 - PyTaxonomies is not compatible with python<3.6. [Raphaël Vinot]
 - Rename filename. [Raphaël Vinot]
 - [deprecation] Wrong deprecation message. [Raphaël Vinot]
    Also, deprecated method was broken.
    Fix #424
- Other
 - Add: New attribute type weakness. [chrisr3d]
 - Fix missing f in f-string. [Paal Braathen]
 - Wrong variable. [Georges Toth]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=45
2019-08-03 07:47:52 +00:00
99ff24348b - add missing dependency python-Deprecated
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=44
2019-07-25 19:29:28 +00:00
8d246e92fd - update to version 2.4.111.2:
- New
 - [Sightings] Delete method. [Raphaël Vinot]
    Fix #230
 - [tests] non-exportable tags. [Raphaël Vinot]
- Changes
 - Bump verison. [Raphaël Vinot]
 - Make pythonify=False default everywhere. [Raphaël Vinot]
    Add a method to toggle pythonify globally
 - [tests] Update stats. [Raphaël Vinot]
 - [tests] Remove travis exceptions. [Raphaël Vinot]
- Fix
 - [tests] Path to test file. [Raphaël Vinot]
    Fix #423
 - [objects] Allow the value of an attribute to be 0. [Raphaël Vinot]
 - [tests] Disable one of the test cases for now. [Raphaël Vinot]
 - [tests] By default, the workflow taxonomy isn't enabled. [Raphaël
    Vinot]
 - Properly handle fallbacks add/update/delete attributes. [Raphaël
    Vinot]
 - [add_attribute] Only create a proposal when needed. [Raphaël Vinot]
- Other
 - Fix for issue 420. [github-pba]
- update to version 2.4.111.1:
- New
 - Add option to locally expand malware samples with LIEF. [Raphaël
    Vinot]
- Changes
 - Bump Changelog. [Raphaël Vinot]
 - Bump version. [Raphaël Vinot]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=43
2019-07-25 19:22:51 +00:00
5e2ddd82dd Accepting request 701014 from devel:languages:python
- update to version 2.4.106:
 - New
  - Test cases for attributes and proposals.
  - Improve python3.6+ lib.
  - Add_attributes method in MISPObject (for multiple attributes)
  - Method to set the default role.
  - Default to "me" in the get_user method, update ExpandedPyMISP.
    Fix #377
  - Add get_object to ExpandedPyMISP.
    Fix #372
  - Test cases for CSV loader, add cleaner methods in ExpandedPyMISP.
  - Add CSV loader.
    Fix #376
  - Helper to create MISP Objects for regcheck.org.uk.
  - Test for ACLs in testlive.
  - Test for manual calls to add_object and add_object_reference.
  - Test update object in event.
 - Changes
  - Add python 3.7 support for pipenv users.
  - Allow to pass a eml as string to EmailObject.
  - Bump dependencies.
    Fix CVE-2019-11324 (urllib3)
  - Allow to pass an AbstractMISP to add_reference.
    Fix #379
  - Rework notebooks.
  - Display an error on failure in testlive.
  - Add tests for disable_tag.
  - Reorganize some tests.
  - Orders of tests in make_bool.
  - Initial set of refactoring on PDF generator.

OBS-URL: https://build.opensuse.org/request/show/701014
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=15
2019-05-13 12:49:18 +00:00
31deb42122 - update to version 2.4.106:
- New
  - Test cases for attributes and proposals.
  - Improve python3.6+ lib.
  - Add_attributes method in MISPObject (for multiple attributes)
  - Method to set the default role.
  - Default to "me" in the get_user method, update ExpandedPyMISP.
    Fix #377
  - Add get_object to ExpandedPyMISP.
    Fix #372
  - Test cases for CSV loader, add cleaner methods in ExpandedPyMISP.
  - Add CSV loader.
    Fix #376
  - Helper to create MISP Objects for regcheck.org.uk.
  - Test for ACLs in testlive.
  - Test for manual calls to add_object and add_object_reference.
  - Test update object in event.
 - Changes
  - Add python 3.7 support for pipenv users.
  - Allow to pass a eml as string to EmailObject.
  - Bump dependencies.
    Fix CVE-2019-11324 (urllib3)
  - Allow to pass an AbstractMISP to add_reference.
    Fix #379
  - Rework notebooks.
  - Display an error on failure in testlive.
  - Add tests for disable_tag.
  - Reorganize some tests.
  - Orders of tests in make_bool.
  - Initial set of refactoring on PDF generator.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=41
2019-05-03 18:22:12 +00:00
89ad3b049c Accepting request 691461 from devel:languages:python
- New requirement python3-sphinx-autodoc-typehints for docs.

- run spec-cleaner
- update to version 2.4.103:
 - New
  - Add auth parameter to pass to python-requests.
  - Add readthedocs config.
 - Changes
  - [jupyter] remove all the response key (as response is removing it)
  - Enforce strict in object testing to ease debugging.
  - [pipenv] Pipfile.lock generated.
  - [exportpdf] BIG refactoring. Classes, comments, Galaxy starting.
  - [exportPDF] add basic handling of clusters.
  - [exportpdf] Add metadata, bugfixes cases (too long values,
    sanitization), links to misp instances.
  - Add sphinx-autodoc-typehints.
  - Use version 2 of readthedoc config file.
  - [doc] add a reference to the Jupyter Notebook.
  - Remove dependency on six.
 - Fix
  - [exportpdf] fix empty object/attribute/galaxy bugs.
  - [exportpdf] Add suggestions (UX)
  - [exportpdf] switch page size to A4.
  - [exportpdf] switch page size to A4.
  - Hopefully last fix for python 2.7 & reportlab.
  - Properly pass the auth parameter to the request.
  - Properly catch error if reportlab isn't installed.
  - Make sure install works even without reportlab installed.
  - URLJoin condition for double quotes. [Hannah Ward]
  - Do not override sub-path from root URL. [Hannah Ward]

OBS-URL: https://build.opensuse.org/request/show/691461
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=14
2019-04-05 10:04:29 +00:00
cb2acc6d22 - New requirement python3-sphinx-autodoc-typehints for docs.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=39
2019-03-23 14:39:03 +00:00
a62c6679d0 - run spec-cleaner
- update to version 2.4.103:
 - New
  - Add auth parameter to pass to python-requests.
  - Add readthedocs config.
 - Changes
  - [jupyter] remove all the response key (as response is removing it)
  - Enforce strict in object testing to ease debugging.
  - [pipenv] Pipfile.lock generated.
  - [exportpdf] BIG refactoring. Classes, comments, Galaxy starting.
  - [exportPDF] add basic handling of clusters.
  - [exportpdf] Add metadata, bugfixes cases (too long values,
    sanitization), links to misp instances.
  - Add sphinx-autodoc-typehints.
  - Use version 2 of readthedoc config file.
  - [doc] add a reference to the Jupyter Notebook.
  - Remove dependency on six.
 - Fix
  - [exportpdf] fix empty object/attribute/galaxy bugs.
  - [exportpdf] Add suggestions (UX)
  - [exportpdf] switch page size to A4.
  - [exportpdf] switch page size to A4.
  - Hopefully last fix for python 2.7 & reportlab.
  - Properly pass the auth parameter to the request.
  - Properly catch error if reportlab isn't installed.
  - Make sure install works even without reportlab installed.
  - URLJoin condition for double quotes. [Hannah Ward]
  - Do not override sub-path from root URL. [Hannah Ward]
  - [reportlab] Galaxies and Clusters printing.
  - [reportlab] Clusters added. Still UX to perform.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=38
2019-03-16 11:14:37 +00:00
b8eca239e4 Accepting request 679037 from devel:languages:python
- update to version 2.4.102:
 - New
  - Add test cases for stix export.
 - Changes
  - [datamodel] new anonymised type added.
  - [data] types updated to include the new zeek type.
 - Other
  - Check if IOC values are in warninglist.
- update to version 2.4.101:
 - New
  - Add missing test case for NOT on attribute level, update Pipfile.
  - Add support for unix timestamp in set_date.
    fix #302
  - Add test for references when adding/updating a full event.
  - [usersStats] Possibility to fetch users/statistics data for all
    context (usage, org, tags, ...)
 - Changes
  - Force to_ids to be a boolean, as MISP is expecting.
    fix #320
  - Add support for sharing group filter for search_index.
  - Support for Payload Delivery > Other attribute as PyMISP function.
  - Add Pipfile config.
  - [data] fix describeTypes.
  - [data] new types added (hassh-md5 and hasshserver-md5)
  - Bump misp-objects.
  - [misp-objects] templates updated to the latest version.
  - [data] describeTypes updated (grabbed from MISP HEAD)
  - [data] ja3-fingerprint-md5 type added.
  - [test] set a default distribution for massive event creation.
  - [data] describeTypes.json updated to the latest version.
  - More flexibility when loading an object from python dict.
  - Pass all parameters to the search API.
  - Remove compat for MISP 2.4.52, cleanup.
  - Set verifycert to false in tests.
  - [tests] Added verifycert option in case of using self-signed cert.
 - Fix
  - Remove jupyter & ipython from dev install so it works with python2.
  - Wrong variable name in MISPEvent.
  - Documentation error fix #278.
  - Attempt to fix memory footprint in MISPAttribute.
  - Still support simple event dict content.
  - Don't modify event passed to the add_attribute methods.
    fix #321
  - The wrong class name was used when there is an error at Event
    creation.
  - Use new API in get_csv.py.
    Fix #314
  - Test case was broken.
  - Create massive event using ExpandedPyMISP.
  - Error vs errors key.
  - Typo.
  - Get_object_template_id.
 - Other
  - Update pymisp tutorial.
    Extract the "response" field from the json result returned by misp.search_index
  - Sort describeTypes.json output. 
    This is needed for the compatibility with the gen_misp_types_categories.py script. Data was sorted using the order_dict function of the gen_misp_types_categories script.
- Update to version 2.4.99:
 - New
  - Auto generate doc for PyMISPExpanded. 
  - Search_index in ExpandedPyMISP, cleanup, update jupyter.
  - Add log search. 
  - Add test for pushing an event to ZMQ. 
  - Change_distribution method. 
  - Add test cases for sightings, cleanup. 
  - [example] Added sighting rest search example. 
  - [sighting] Added support of sighting REST API. 
  - Allow to pass csv to return_format in search. 
  - Page/limit in search. 
 - Changes
  - Add test cases for default distribution levels. 
  - Include proposals in attributes search. 
    Add includeProposals param to the search method
  - Update readme to document testing. 
  - Fixes & update Jupyter. 
  - [tuto] Update search. 
  - Add a script to load the API key from the file system (training VM)
  - Add print in testlive to debug travis. 
 - Fix
  - Auto generate doc for PyMISPExpanded. 
  - Properly handle errors on event creation/update. 
  - Test case. 
  - Do not run the zmq test on travis. 
  - Type of quick_filter. 
  - Quick_filter was broken. 
  - Properly initialize the config when jupyter runs on the VM.
  - Readme update + python3 + pep8. 
    align python path to readme specifying python3
  - Feed-generator gitignore. 
  - Test cases. 
 - Other
  - Dded get_object & get_attribute. 
  - Fix for last pymisp version. 
  - Mention virtualenv. 
    mide make sense for people who want to use it with virtualenv
  - Be more precise with the supported time indicators.
  - Fixed documentation bug. 
  - Fixes date parameters for search_index() function. 
  - Align examples on custom usage of misp_verifycert.

OBS-URL: https://build.opensuse.org/request/show/679037
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=13
2019-02-26 21:20:29 +00:00
d387d04887 - update to version 2.4.102:
- New
  - Add test cases for stix export.
 - Changes
  - [datamodel] new anonymised type added.
  - [data] types updated to include the new zeek type.
 - Other
  - Check if IOC values are in warninglist.
- update to version 2.4.101:
 - New
  - Add missing test case for NOT on attribute level, update Pipfile.
  - Add support for unix timestamp in set_date.
    fix #302
  - Add test for references when adding/updating a full event.
  - [usersStats] Possibility to fetch users/statistics data for all
    context (usage, org, tags, ...)
 - Changes
  - Force to_ids to be a boolean, as MISP is expecting.
    fix #320
  - Add support for sharing group filter for search_index.
  - Support for Payload Delivery > Other attribute as PyMISP function.
  - Add Pipfile config.
  - [data] fix describeTypes.
  - [data] new types added (hassh-md5 and hasshserver-md5)
  - Bump misp-objects.
  - [misp-objects] templates updated to the latest version.
  - [data] describeTypes updated (grabbed from MISP HEAD)
  - [data] ja3-fingerprint-md5 type added.
  - [test] set a default distribution for massive event creation.
  - [data] describeTypes.json updated to the latest version.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=36
2019-02-03 22:02:10 +00:00
fa63375f9d - Update to version 2.4.99:
- New
  - Auto generate doc for PyMISPExpanded. 
  - Search_index in ExpandedPyMISP, cleanup, update jupyter.
  - Add log search. 
  - Add test for pushing an event to ZMQ. 
  - Change_distribution method. 
  - Add test cases for sightings, cleanup. 
  - [example] Added sighting rest search example. 
  - [sighting] Added support of sighting REST API. 
  - Allow to pass csv to return_format in search. 
  - Page/limit in search. 
 - Changes
  - Add test cases for default distribution levels. 
  - Include proposals in attributes search. 
    Add includeProposals param to the search method
  - Update readme to document testing. 
  - Fixes & update Jupyter. 
  - [tuto] Update search. 
  - Add a script to load the API key from the file system (training VM)
  - Add print in testlive to debug travis. 
 - Fix
  - Auto generate doc for PyMISPExpanded. 
  - Properly handle errors on event creation/update. 
  - Test case. 
  - Do not run the zmq test on travis. 
  - Type of quick_filter. 
  - Quick_filter was broken. 
  - Properly initialize the config when jupyter runs on the VM.
  - Readme update + python3 + pep8.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=35
2019-01-27 18:55:16 +00:00
73766ea7e7 Accepting request 659595 from devel:languages:python
Remove superfluous devel dependency for noarch package

OBS-URL: https://build.opensuse.org/request/show/659595
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=12
2018-12-24 10:42:08 +00:00
b422744249 Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=33
2018-12-04 13:52:25 +00:00
8e7d513e35 Accepting request 643569 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/643569
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=11
2018-10-31 12:11:58 +00:00
6d1dac325f - Remove fix-274.patch and fix-274-1.patch.
- update to version 2.4.96:
 - New
  - [freedFromRedis] try to create an object/attribute out of the incoming
    data even if not added with the helper.
  - Direct_call without data means GET.
  - Add direct call to just post data on a URL.
  - Update warninglists.
  - Toggle warning list, add test case.
  - Add lots of test cases, find lots of bugs.
  - Use new CSV interface, add test cases.
 - Changes
  - Allow to pass a json string to direct_call.
  - Update order parameters & doc.
  - Add an extra IP from the warninglists.
 - Fix
  - Prevent checking length on a integer.
  - Use proper dependency (enum34)
 - Other
  - Fixed leaked taxonomy tags problem.
  - Added some getters and setters for taxonomies, warninglists,
    noticelists and tags & documentation.
  - Add: Advanced Extraction to upload_sample.
  - Add: update noticelists and object templates.
  - Add: Add __eq__ to AbstractMISP.
    Allow to discard duplicate tags.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=31
2018-10-14 13:36:56 +00:00
727f602652 Accepting request 639137 from devel:languages:python
- Add fix-274.patch and fix-274-1.patch to fix missing enum library (#274).
- update to version v2.4.95 (2018-09-06):
 - New
 -  Add helpers for new server related APIs.
  Fix #266
 -  Reworking the REST API (WiP)
 -  Add Jupyter for search.
 - Changes
 -  [data-model] updated describeTypes file.
 -  Added email-header attribute.
 -  Updated types/categories mapping.
 -  Open all json files as bytes before loading in json.
 -  [PyMISP] describeTypes.json updated to add XMR type.
 - Fix
 -  Normalizing the outputs.
 -  Jerry rig support for old python.
 -  Format of the describeTypes.
 -  [search.py] more example of query type added.
 -  Properly validate the last-type search query.
 -  Opening the json blobs as bytes was buggy.
 -  Allow boolean parameters in search_index.
 -  Typo in OpenIOC script.
  - Fix #237
 -  Bad URL in get_attachment.
  - Fix #240
 -  Improve error message in case the object template is unknown.
- update to version v2.4.93 (2018-07-01):
 - New
 -  Add many comments in the jupyter notebook.
 -  Return the new object in `add_object`

OBS-URL: https://build.opensuse.org/request/show/639137
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=10
2018-10-11 09:48:08 +00:00
d4d8ad7a35 - Add fix-274.patch and fix-274-1.patch to fix missing enum library (#274).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=29
2018-09-29 13:15:44 +00:00
24f00e87ba - update to version v2.4.95 (2018-09-06):
- New
 -  Add helpers for new server related APIs.
  Fix #266
 -  Reworking the REST API (WiP)
 -  Add Jupyter for search.
 - Changes
 -  [data-model] updated describeTypes file.
 -  Added email-header attribute.
 -  Updated types/categories mapping.
 -  Open all json files as bytes before loading in json.
 -  [PyMISP] describeTypes.json updated to add XMR type.
 - Fix
 -  Normalizing the outputs.
 -  Jerry rig support for old python.
 -  Format of the describeTypes.
 -  [search.py] more example of query type added.
 -  Properly validate the last-type search query.
 -  Opening the json blobs as bytes was buggy.
 -  Allow boolean parameters in search_index.
 -  Typo in OpenIOC script.
  - Fix #237
 -  Bad URL in get_attachment.
  - Fix #240
 -  Improve error message in case the object template is unknown.
- update to version v2.4.93 (2018-07-01):
 - New
 -  Add many comments in the jupyter notebook.
 -  Return the new object in `add_object`
 -  Add the ability to add Other attributes via the API.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=28
2018-09-22 08:51:16 +00:00
8dc6cb8b5b Accepting request 611050 from devel:languages:python
- update to version 2.4.90.1:
 * New
  - Properly implement the Email object creator.
 * Changes
  - Normalize the RestResponse calls.
 * Fix
  - Properly get and decode the body of the email.
  - Provide the extension of the EML file to attach.
  - Properly handle attachments.

OBS-URL: https://build.opensuse.org/request/show/611050
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=9
2018-05-29 08:37:57 +00:00
45d8496f59 Accepting request 603204 from devel:languages:python
- update to version 2.4.90:
 * New
  - Add more feed management methods. Fix #221
  - Add update_attribute method.
  - Add event_timestamp to REST search. Fix #220
  - Add helper for Geolocation object.
  - Add helper for ASN object.
  - More flexibility in <something> -> datetime.
  - Add helper for DomainIP.
  - Add preliminary fail2ban object.
 * Changes
  - Add more examples.
  - Remove useless timestamp cleanup.
  - Make object helpers more generic, cleanup.
  - Update fail2ban helper & example.
 * Fix
  - Use the recommended approach to add an attribute.
  - Tests, new template version.
  - New key - extends_uuid.
  - Update test file accordingly to the default value.
  - Geolocation object filename.
  - Consider a timestamp < 30000000 as a date.
  - AbstractMISP.from_dict() do not accept positional argument.
  - Properly create fail2ban object.
  - Add Info field to the event.
  - Disable email object for python <3.6.
 * Other
  - Added missing field to feed generator.
  - Add the ability to add an Autonomous System(AS) via the API.
  - Changed shebang to python3.
  - Deleted remaining outputs.
  - First jupyter notebook tutorial (1 iterations)
  - Added change_analysis_status API.
  - Fix add_named_attribute regression, update add_named_attribute.py
    example.
  - Example of specifying special attribute type in your search: here yara
    attribute.
- update to 2.4.89:
 - Add email object generator.
 - Method to return an object by uuid.
 - Do not try to upload objects in case make_binary_objects fails. Realtime feed generator
 - Creation of the generator object which permit to easily add attributes and objects to daily events, stored as a MISP feed.
 - Added support of MISP Object.
 - Point to right anchor for client side certificates.
 - Add search on sighting.
 - Add attributes within objects as well, for tagging via value/id/uuid.

OBS-URL: https://build.opensuse.org/request/show/603204
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pymisp?expand=0&rev=8
2018-05-11 12:27:49 +00:00