Skip to content

Commit b8a9a4b

Browse files
authored
fixed sphinx build + updated changelog and bumped version to v3.2.3 (#805)
* adjust to sphinx build * updated changelog and bumped version to v3.2.3
1 parent 7e50bd0 commit b8a9a4b

File tree

7 files changed

+30
-5
lines changed

7 files changed

+30
-5
lines changed

.github/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

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

5+
## [v3.2.3](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.3)
6+
7+
**New Analyzers:**
8+
9+
- `Mnemonic_PassiveDNS`: Look up a domain or IP using the [Mnemonic PassiveDNS public API](https://docs.mnemonic.no/display/public/API/Passive+DNS+Overview).
10+
- `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)
11+
- `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)
12+
- `Yara_Scan_ATM_MALWARE`: analyze your files with the rules from this [repo](https://github.com/fboldewin/YARA-rules)
13+
14+
**Fixes & Improvements:**
15+
16+
- `HashLookupServer_*` analyzers now correctly support sha256 hashes
17+
- added IP addresses support to `URLhaus` analyzer
18+
- fixed `VirusTotal` analyzers to reduce quota consumption
19+
- fixed `Dragonfly_Emulation` and `Quark_Engine_APK` analyzer
20+
- updated `dnstwist`, `XLMMacroDeobfuscator` and other dependencies upgrades
21+
- adjustments in the PR template
22+
23+
**For IntelOwl Contributors**
24+
25+
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.
26+
527
## [v3.2.2](https://github.com/intelowlproject/IntelOwl/releases/tag/v3.2.2)
628

729
**Notes:**

docker/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### DO NOT CHANGE THIS VALUE !!
22
### It should be updated only when you pull latest changes off from the 'master' branch of IntelOwl.
3-
INTELOWL_TAG_VERSION=v3.2.2
3+
INTELOWL_TAG_VERSION=v3.2.3
44
### Change this to `develop` when doing local development.
55
INTELOWL_NG_TAG_VERSION=v3.1.0

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9.7-buster
1+
FROM python:3.9.9-buster
22

33
ENV PYTHONUNBUFFERED 1
44
ENV DJANGO_SETTINGS_MODULE intel_owl.settings

docs/source/Usage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ The following is the list of the available analyzers you can run out-of-the-box.
172172
* `Qiling`: [Qiling](https://github.com/qilingframework/qiling) qiling binary emulation.
173173
* `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/)
174174
* `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)
175+
* `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).
175176
* `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).
176177

177178
##### Observable analyzers (ip, domain, url, hash)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
author = "Matteo Lodi"
3030

3131
# The full version, including alpha/beta/rc tags
32-
release = "v3.2.2"
32+
release = "v3.2.3"
3333

3434

3535
# -- General configuration ---------------------------------------------------

docs/source/requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
sphinx_rtd_theme==0.5.2
22
sphinxcontrib-openapi==0.7.0
3-
sphinxcontrib-redoc==1.6.0
3+
sphinxcontrib-redoc==1.6.0
4+
# this is to fix this bug https://github.com/Tribler/tribler/issues/6624
5+
mistune==0.8.4

intel_owl/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def retrieve(self, file, analyzer):
153153
# DRF Spectacular
154154
SPECTACULAR_SETTINGS = {
155155
"TITLE": "IntelOwl API specification",
156-
"VERSION": "3.2.2",
156+
"VERSION": "3.2.3",
157157
}
158158

159159
# Django-Rest-Durin

0 commit comments

Comments
 (0)