Skip to content

Commit bae09e9

Browse files
committed
Sigmatools release 0.18.1
1 parent b742e4e commit bae09e9

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,37 @@ 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.18.1 - 2020-08-25
10+
11+
Release created for technical reasons (issues with extended README and PyPI), no real changes done.
12+
13+
## 0.18.0 - 2020-08-25
14+
15+
### Added
16+
17+
* C# backend
18+
* STIX backend
19+
* Options to xpack-watcher backend (action_throttle_period, mail_from acaw, mail_profile and other)
20+
* More generic log sources
21+
* Windows Defender log sources
22+
* Generic DNS query log source
23+
* AppLocker log source
24+
25+
### Changed
26+
27+
* Improved backend and configuration descriptions
28+
* Microsoft Defender ATP mapping updated
29+
* Improved handling of wildcards in Elastic backends
30+
31+
### Fixed
32+
33+
* Powershell backend: key name was incorrectly added into regular expression
34+
* Grouping issue in Carbon Black backend
35+
* Handling of default field mapping in case field is referenced multiple from a rule
36+
* Code cleanup and various fixes
37+
* Log source mappings in configurations
38+
* Handling of conditional field mappings by Elastic backends
39+
940
## 0.17.0 - 2020-06-12
1041

1142
### Added

tools/LONG_DESCRIPTION.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Sigma Tools
2+
3+
This package contains the following tools for [Sigma](https://github.com/Neo23x0/sigma):
4+
5+
* sigmac: the Sigma converter
6+
* merge_sigma: Merge a Sigma collection into a minimal set of Sigma rules
7+
* sigma2misp: Import Sigma rules into MISP
8+
* sigma2attack: Create a MITRE ATT&CK coverage map
9+
* sigma_similarity: Measure similarity of Sigma rules
10+
* sigma_uuid: Check Sigma identifiers

tools/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
here = path.abspath(path.dirname(__file__))
1010

1111
# Get the long description from the README file
12-
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
12+
with open(path.join(here, 'LONG_DESCRIPTION.md'), encoding='utf-8') as f:
1313
long_description = f.read()
1414

1515
setup(
1616
name='sigmatools',
17-
version='0.17.0',
17+
version='0.18.1',
1818
description='Tools for the Generic Signature Format for SIEM Systems',
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)