Skip to content

Commit 5c4fd3a

Browse files
committed
Release 0.20
1 parent 5b72cdb commit 5c4fd3a

File tree

2 files changed

+40
-5
lines changed

2 files changed

+40
-5
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,42 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
77
from version 0.14.0.
88

9+
## 0.20 - 2021-08-14
10+
11+
### Added
12+
13+
* Devo backend
14+
* Fields selection added to SQL backend
15+
* Linux/MacOS support for MDATP backend
16+
* Output results as generic YAML/JSON
17+
* Hash normalization option (hash_normalize) for Elasticsearch wildcard handling
18+
* ALA AWS Cloudtrail and Azure mappings
19+
* Logrhytm backend
20+
* Splunk Data Models backend
21+
* Further log sources used in open source Sigma ruleset
22+
* CarbonBlack EDR backend
23+
* Elastic EQL backend
24+
* Additional conversion selection filters
25+
* Filter negation
26+
* Specifiy table in SQL backend
27+
* Generic registry event log source
28+
* Chronicle backend
29+
30+
### Changed
31+
32+
* Elastic Watcher backend populates name attribute instead of title.
33+
* One item list optimization.
34+
* Updated Winlogbeat mapping
35+
* Generic mapping for Powershell backend
36+
37+
### Fixed
38+
39+
* Elastalert multi output file
40+
* Fixed duplicate output in ElastAlert backend
41+
* Escaping in Graylog backend
42+
* es-rule ndjson output
43+
* Various fixes of known bugs
44+
945
## 0.19.1 - 2021-02-28
1046

1147
### Changed

tools/setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='sigmatools',
17-
version='0.19.1',
17+
version='0.20',
1818
description='Tools for the Generic Signature Format for SIEM Systems',
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",
@@ -30,9 +30,8 @@
3030
'Topic :: Security',
3131
'Topic :: Internet :: Log Analysis',
3232
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
33-
'Programming Language :: Python :: 3.6',
34-
'Programming Language :: Python :: 3.7',
3533
'Programming Language :: Python :: 3.8',
34+
'Programming Language :: Python :: 3.9',
3635
'Environment :: Console',
3736
],
3837
keywords='security monitoring siem logging signatures elasticsearch splunk ids sysmon',
@@ -43,8 +42,8 @@
4342
'sigma.parser',
4443
'sigma.parser.modifiers',
4544
],
46-
python_requires='~=3.6',
47-
install_requires=['PyYAML', 'pymisp', 'progressbar2'],
45+
python_requires='~=3.8',
46+
install_requires=['PyYAML', 'pymisp', 'progressbar2', 'ruamel.yaml'],
4847
extras_require={
4948
'test': ['coverage', 'yamllint'],
5049
},

0 commit comments

Comments
 (0)