- update to version 2.4.170.1:
- Changes
- Disable fail fast in GHA.
- Fix
- Update lief code to v0.13.
- update to version 2.4.170:
- Changes
- Other
- Add: support breakOnDuplicate option for attributes:add()
- Update reportlab_generator.py.
- update to version 2.4.169.3:
- Changes
- Fix
- Invalid check if taxo is enabled.
- update to version 2.4.169.2:
- Changes
- Include event reports by default in feed.
- Fix
- Use proper parameter to trigger the request in search_galaxy_clusters.
- Use POST in search galaxy cluster.
- Other
- Rename include_event_reports kwarg to with_event_reports, in-line with
other kwarg naming.
- Add kwarg to allow the inclusion of event reports into to_feed(),
honour with_distribution and valid_distributions kwargs.
- update to version 2.4.169.1:
- Changes
- Add greynoise-ip object.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=107
- New
- Pass arbitrary headers to a PyMISP request
- Allow to force the timestamps in to_dict/to_json, even if a change was
made
- Changes
- Add in sort/desc for sorting results and limit/page for pagination.
- Improve documentation for add_attribute
- update to version 2.4.160.1:
- Fix
- Make keepalive configuration linux only
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=101
- New
- Method to get the raw object template. [Raphaël Vinot]
- Changes
- 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]
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=84
- update to version 2.4.138:
- Changes
- Bump version. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- update to version 2.4.137.4:
- Changes
- Bump changelog. [Raphaël Vinot]
- Bump version. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Add kw_params to tags. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Bump template ID in test case. [Raphaël Vinot]
- update to version 2.4.137.3:
- Changes
- Bump version. [Raphaël Vinot]
- Bump changelog. [Raphaël Vinot]
- Bump objects. [Raphaël Vinot]
- Fix and improve optional dependencies. [Raphaël Vinot]
- Make brotli optional. [Raphaël Vinot]
- update to version 2.4.137.2:
- New
- Add in ability to create/update/delete MISP Event Reports. [Tom King]
- Hard delete flag for objects. [Raphaël Vinot]
- Fail if a duplicate object is added to an event. [Raphaël Vinot]
- Support brotli compression. [Jakub Onderka]
- Hard delete flag for objects. [Raphaël Vinot]
- Fail if a duplicate object is added to an event. [Raphaël Vinot]
- Add in ability to create/update/delete MISP Event Reports. [Tom King]
- Add in ability to create/update/delete MISP Event Reports. [Tom King]
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pymisp?expand=0&rev=77
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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