Skip to content

Commit

Permalink
fixed sphinx build + updated changelog and bumped version to v3.2.3 (#…
Browse files Browse the repository at this point in the history
…805)

* adjust to sphinx build

* updated changelog and bumped version to v3.2.3
  • Loading branch information
mlodic committed Dec 16, 2021
1 parent 7e50bd0 commit b8a9a4b
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .github/CHANGELOG.md
Expand Up @@ -2,6 +2,28 @@

[**Upgrade Guide**](https://intelowl.readthedocs.io/en/latest/Installation.html#update-to-the-most-recent-version)

## [v3.2.3](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.3)

**New Analyzers:**

- `Mnemonic_PassiveDNS`: Look up a domain or IP using the [Mnemonic PassiveDNS public API](https://docs.mnemonic.no/display/public/API/Passive+DNS+Overview).
- `FileScan_Search`: Finds reports and uploaded files by various tokens, like hash, filename, verdict, IOCs etc via [FileScan.io API](https://www.filescan.io/api/docs)
- `FileScan_Upload_File`: Upload your file to extract IoCs from executable files, documents and scripts via [FileScan.io API](https://www.filescan.io/api/docs)
- `Yara_Scan_ATM_MALWARE`: analyze your files with the rules from this [repo](https://github.com/fboldewin/YARA-rules)

**Fixes & Improvements:**

- `HashLookupServer_*` analyzers now correctly support sha256 hashes
- added IP addresses support to `URLhaus` analyzer
- fixed `VirusTotal` analyzers to reduce quota consumption
- fixed `Dragonfly_Emulation` and `Quark_Engine_APK` analyzer
- updated `dnstwist`, `XLMMacroDeobfuscator` and other dependencies upgrades
- adjustments in the PR template

**For IntelOwl Contributors**

We updated the documentation on how to [Contribute](https://intelowl.readthedocs.io/en/latest/Contribute.html#rules). Please read through them if interested in contributing in the project.

## [v3.2.2](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.2)

**Notes:**
Expand Down
2 changes: 1 addition & 1 deletion 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.2
INTELOWL_TAG_VERSION=v3.2.3
### Change this to `develop` when doing local development.
INTELOWL_NG_TAG_VERSION=v3.1.0
2 changes: 1 addition & 1 deletion docker/Dockerfile
@@ -1,4 +1,4 @@
FROM python:3.9.7-buster
FROM python:3.9.9-buster

ENV PYTHONUNBUFFERED 1
ENV DJANGO_SETTINGS_MODULE intel_owl.settings
Expand Down
1 change: 1 addition & 0 deletions docs/source/Usage.md
Expand Up @@ -172,6 +172,7 @@ The following is the list of the available analyzers you can run out-of-the-box.
* `Qiling`: [Qiling](https://github.com/qilingframework/qiling) qiling binary emulation.
* `Malpedia_Scan`: scan a binary or a zip file (pwd:infected) against all the yara rules available in [Malpedia](https://malpedia.caad.fkie.fraunhofer.de/)
* `HashLookupServer_Get_File`: check if a md5 or sha1 is available in the database of [known file hosted by CIRCL](https://github.com/adulau/hashlookup-server)
* `FileScan_Upload_File`: Upload your file to extract IoCs from executable files, documents and scripts via [FileScan.io API](https://www.filescan.io/api/docs).
* `Dragonfly_Emulation`: Emulate malware against [Dragonfly](https://dragonfly.certego.net?utm_source=intelowl) sandbox by [Certego S.R.L](https://certego.net?utm_source=intelowl).

##### Observable analyzers (ip, domain, url, hash)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -29,7 +29,7 @@
author = "Matteo Lodi"

# The full version, including alpha/beta/rc tags
release = "v3.2.2"
release = "v3.2.3"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 3 additions & 1 deletion docs/source/requirements.txt
@@ -1,3 +1,5 @@
sphinx_rtd_theme==0.5.2
sphinxcontrib-openapi==0.7.0
sphinxcontrib-redoc==1.6.0
sphinxcontrib-redoc==1.6.0
# this is to fix this bug https://github.com/Tribler/tribler/issues/6624
mistune==0.8.4
2 changes: 1 addition & 1 deletion intel_owl/settings.py
Expand Up @@ -153,7 +153,7 @@ def retrieve(self, file, analyzer):
# DRF Spectacular
SPECTACULAR_SETTINGS = {
"TITLE": "IntelOwl API specification",
"VERSION": "3.2.2",
"VERSION": "3.2.3",
}

# Django-Rest-Durin
Expand Down

0 comments on commit b8a9a4b

Please sign in to comment.