diff --git a/CHANGELOG.md b/CHANGELOG.md index c7e41c48ab4..1806298b14f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ from version 0.14.0. Changes from this section will be contained in the next release. +## 0.14 + ### Added * sigma-similarity tool @@ -26,6 +28,11 @@ Changes from this section will be contained in the next release. * Searches not bound to fields are restricted to keyword fields in es-qs backend * Graylog backend now based on es-qs backend +### Fixed + +* Removed ProcessCommandLine mapping for Windows Security EventID 4688 in generic + process creation log source configuration. + ## 0.13 ### Added diff --git a/Pipfile.lock b/Pipfile.lock index e6143397cf6..776e1a075c3 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -207,25 +207,25 @@ }, "pymisp": { "hashes": [ - "sha256:1983808d9a834c26d42d52871af1f86dc9739c9f2ee22091cf4a2a62ce6a171d", - "sha256:32675ce303f9d06698eb390c5381cb1de430d355e203612264bce6cd53972b95", - "sha256:9cf1187b5d618bd2b0e631cc877586b7cd5d02b59322a509a4f5ad07496cd171" + "sha256:17b145dbc39a1ba4ebce60e8b75a479d2c8fd3c2a239f32682f2e1a3636469ec", + "sha256:814023f346f9e1dcf6763d93450df44ff0157f2061c612a7eaf2020280f588a3", + "sha256:de67196f6a8916b9c52a84a1c45ea967c53fa9d2b3795b070ad2c1cbc28d79d7" ], "index": "pypi", - "version": "==2.4.117" + "version": "==2.4.117.2" }, "pyrsistent": { "hashes": [ - "sha256:34b47fa169d6006b32e99d4b3c4031f155e6e68ebcc107d6454852e8e0ee6533" + "sha256:eb6545dbeb1aa69ab1fb4809bfbf5a8705e44d92ef8fc7c2361682a47c46c778" ], - "version": "==0.15.4" + "version": "==0.15.5" }, "python-dateutil": { "hashes": [ - "sha256:7e6584c74aeed623791615e26efd690f29817a27c73085b78e4bad02493df2fb", - "sha256:c89805f6f4d64db21ed966fda138f8a5ed7a4fdbc1a8ee329ce1b74e3c74da9e" + "sha256:73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c", + "sha256:75bb3f31ea686f1197762692a9ee6a7550b59fc6ca3a1f4b5d7e32fb98e2da2a" ], - "version": "==2.8.0" + "version": "==2.8.1" }, "python-utils": { "hashes": [ @@ -262,19 +262,19 @@ }, "six": { "hashes": [ - "sha256:3350809f0555b11f552448330d0b52d5f24c91a322ea4a15ef22629740f3761c", - "sha256:d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73" + "sha256:1f1b7d42e254082a9db6279deae68afb421ceba6158efa6131de7b3003ee93fd", + "sha256:30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66" ], - "version": "==1.12.0" + "version": "==1.13.0" }, "typing-extensions": { "hashes": [ - "sha256:2ed632b30bb54fc3941c382decfd0ee4148f5c591651c9272473fea2c6397d95", - "sha256:b1edbbf0652660e32ae780ac9433f4231e7339c7f9a8057d0f042fcbcea49b87", - "sha256:d8179012ec2c620d3791ca6fe2bf7979d979acdbef1fca0bc56b37411db682ed" + "sha256:091ecc894d5e908ac75209f10d5b4f118fbdb2eb1ede6a63544054bb1edb41f2", + "sha256:910f4656f54de5993ad9304959ce9bb903f90aadc7c67a0bef07e678014e892d", + "sha256:cf8b63fedea4d89bab840ecbb93e75578af28f76f66c35889bd7065f5af88575" ], "markers": "python_version < '3.7'", - "version": "==3.7.4" + "version": "==3.7.4.1" }, "urllib3": { "hashes": [ diff --git a/tools/setup.py b/tools/setup.py index 110b9aff670..8059c88e6ed 100644 --- a/tools/setup.py +++ b/tools/setup.py @@ -13,7 +13,7 @@ setup( name='sigmatools', - version='0.13', + version='0.14', description='Tools for the Generic Signature Format for SIEM Systems', long_description=long_description, long_description_content_type="text/markdown", @@ -36,7 +36,7 @@ keywords='security monitoring siem logging signatures elasticsearch splunk ids sysmon', packages=['sigma', 'sigma.backends', 'sigma.config', 'sigma.parser', 'sigma.parser.modifiers'], python_requires='~=3.6', - install_requires=['PyYAML', 'pymisp'], + install_requires=['PyYAML', 'pymisp', 'progressbar2'], extras_require={ 'test': ['coverage', 'yamllint'], }, @@ -70,5 +70,6 @@ 'sigmac', 'merge_sigma', 'sigma2misp', + 'sigma-similarity', ] )