Sigmatools release 0.18.1

This commit is contained in:
Thomas Patzke 2020-08-25 23:58:04 +02:00
parent b742e4ef08
commit bae09e9447
3 changed files with 43 additions and 2 deletions

View File

@ -6,6 +6,37 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
from version 0.14.0.
## 0.18.1 - 2020-08-25
Release created for technical reasons (issues with extended README and PyPI), no real changes done.
## 0.18.0 - 2020-08-25
### Added
* C# backend
* STIX backend
* Options to xpack-watcher backend (action_throttle_period, mail_from acaw, mail_profile and other)
* More generic log sources
* Windows Defender log sources
* Generic DNS query log source
* AppLocker log source
### Changed
* Improved backend and configuration descriptions
* Microsoft Defender ATP mapping updated
* Improved handling of wildcards in Elastic backends
### Fixed
* Powershell backend: key name was incorrectly added into regular expression
* Grouping issue in Carbon Black backend
* Handling of default field mapping in case field is referenced multiple from a rule
* Code cleanup and various fixes
* Log source mappings in configurations
* Handling of conditional field mappings by Elastic backends
## 0.17.0 - 2020-06-12
### Added

10
tools/LONG_DESCRIPTION.md Normal file
View File

@ -0,0 +1,10 @@
# Sigma Tools
This package contains the following tools for [Sigma](https://github.com/Neo23x0/sigma):
* sigmac: the Sigma converter
* merge_sigma: Merge a Sigma collection into a minimal set of Sigma rules
* sigma2misp: Import Sigma rules into MISP
* sigma2attack: Create a MITRE ATT&CK coverage map
* sigma_similarity: Measure similarity of Sigma rules
* sigma_uuid: Check Sigma identifiers

View File

@ -9,12 +9,12 @@ from pathlib import Path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, 'LONG_DESCRIPTION.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='sigmatools',
version='0.17.0',
version='0.18.1',
description='Tools for the Generic Signature Format for SIEM Systems',
long_description=long_description,
long_description_content_type="text/markdown",