Skip to content

Commit

Permalink
Sigmatools release 0.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Aug 25, 2020
1 parent b742e4e commit bae09e9
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions tools/LONG_DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
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",
Expand Down

0 comments on commit bae09e9

Please sign in to comment.