diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index be0bc2d15e..4999379b62 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -2,6 +2,25 @@ [**Upgrade Guide**](https://intelowl.readthedocs.io/en/latest/Installation.html#update-to-the-most-recent-version) +## [v3.2.2](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.2) + +**Notes:** + +- The `Dragonfly_Emulation` analyzer will not work without this update. + +**New Analyzers:** + +- `BitcoinAbuse`: Check a BTC address against bitcoinabuse.com, a public database of BTC addresses used by hackers and criminals. +- `Phishstats`: Search [PhishStats](https://phishstats.info) API to determine if an IP/URL/domain/generic is malicious. +- `WhoIs_RipeDB_Search`: Fetch whois record data of an IP address from Ripe DB using their [search API](https://github.com/RIPE-NCC/whois/wiki/WHOIS-REST-API-search). + +**Fixes & Improvements:** + +- Bump `pydragonfly` dependency for `Dragonfly_Emulation` analyzer. +- Fixes in cloudfare based analyzers. +- Populate `not_supported_filetypes` field in `HashLookupServer_Get_File` analyzer. +- Use `force_unique_key` parameter in all docker based analyzers to prevent trivial errors. + ## [v3.2.1](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.1) > Update PyIntelOwl to version [4.1.3](https://github.com/intelowlproject/pyintelowl/blob/master/.github/CHANGELOG.md#413). diff --git a/docker/.env b/docker/.env index 311309bace..bb96d95961 100644 --- a/docker/.env +++ b/docker/.env @@ -1,5 +1,5 @@ ### DO NOT CHANGE THIS VALUE !! ### It should be updated only when you pull latest changes off from the 'master' branch of IntelOwl. -INTELOWL_TAG_VERSION=v3.2.1 +INTELOWL_TAG_VERSION=v3.2.2 ### Change this to `develop` when doing local development. INTELOWL_NG_TAG_VERSION=v3.1.0 diff --git a/docs/source/conf.py b/docs/source/conf.py index 435020f4bf..99cf7df994 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,7 +29,7 @@ author = "Matteo Lodi" # The full version, including alpha/beta/rc tags -release = "v3.2.1" +release = "v3.2.2" # -- General configuration --------------------------------------------------- diff --git a/intel_owl/settings.py b/intel_owl/settings.py index 34e3d15919..7e51eb9edd 100644 --- a/intel_owl/settings.py +++ b/intel_owl/settings.py @@ -153,7 +153,7 @@ def retrieve(self, file, analyzer): # DRF Spectacular SPECTACULAR_SETTINGS = { "TITLE": "IntelOwl API specification", - "VERSION": "3.2.1", + "VERSION": "3.2.2", } # Django-Rest-Durin