yaralyzer 1.0.5__tar.gz → 1.0.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of yaralyzer might be problematic. Click here for more details.

Files changed (30) hide show
  1. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/CHANGELOG.md +4 -0
  2. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/PKG-INFO +3 -1
  3. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/pyproject.toml +4 -1
  4. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/.yaralyzer.example +0 -0
  5. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/LICENSE +0 -0
  6. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/README.md +0 -0
  7. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/__init__.py +0 -0
  8. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/bytes_match.py +0 -0
  9. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/config.py +0 -0
  10. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/decoding/bytes_decoder.py +0 -0
  11. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/decoding/decoding_attempt.py +0 -0
  12. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/encoding_detection/character_encodings.py +0 -0
  13. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/encoding_detection/encoding_assessment.py +0 -0
  14. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/encoding_detection/encoding_detector.py +0 -0
  15. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/helpers/bytes_helper.py +0 -0
  16. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/helpers/dict_helper.py +0 -0
  17. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/helpers/file_helper.py +0 -0
  18. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/helpers/list_helper.py +0 -0
  19. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/helpers/rich_text_helper.py +0 -0
  20. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/helpers/string_helper.py +0 -0
  21. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/output/decoding_attempts_table.py +0 -0
  22. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/output/file_export.py +0 -0
  23. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/output/file_hashes_table.py +0 -0
  24. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/output/regex_match_metrics.py +0 -0
  25. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/output/rich_console.py +0 -0
  26. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/util/argument_parser.py +0 -0
  27. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/util/logging.py +0 -0
  28. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/yara/yara_match.py +0 -0
  29. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/yara/yara_rule_builder.py +0 -0
  30. {yaralyzer-1.0.5 → yaralyzer-1.0.6}/yaralyzer/yaralyzer.py +0 -0
@@ -1,5 +1,9 @@
1
1
  # NEXT RELEASE
2
2
 
3
+ ### 1.0.6
4
+ * Add `Environment :: Console` and `Programming Language :: Python` to PyPi classifiers
5
+ * Add `LICENSE` to PyPi package
6
+
3
7
  ### 1.0.5
4
8
  * Add `Development Status :: 5 - Production/Stable` to pypi classifiers
5
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: yaralyzer
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: Visualize and force decode YARA and regex matches found in a file or byte stream. With colors. Lots of colors.
5
5
  Home-page: https://github.com/michelcrypt4d4mus/yaralyzer
6
6
  License: GPL-3.0-or-later
@@ -9,8 +9,10 @@ Author: Michel de Cryptadamus
9
9
  Author-email: michel@cryptadamus.com
10
10
  Requires-Python: >=3.9,<4.0
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
12
13
  Classifier: Intended Audience :: Information Technology
13
14
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
15
+ Classifier: Programming Language :: Python
14
16
  Classifier: Programming Language :: Python :: 3
15
17
  Classifier: Programming Language :: Python :: 3.9
16
18
  Classifier: Programming Language :: Python :: 3.10
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "yaralyzer"
3
- version = "1.0.5"
3
+ version = "1.0.6"
4
4
  description = "Visualize and force decode YARA and regex matches found in a file or byte stream. With colors. Lots of colors."
5
5
  authors = ["Michel de Cryptadamus <michel@cryptadamus.com>"]
6
6
  readme = "README.md"
@@ -39,8 +39,10 @@ keywords = [
39
39
 
40
40
  classifiers = [
41
41
  "Development Status :: 5 - Production/Stable",
42
+ "Environment :: Console",
42
43
  "Intended Audience :: Information Technology",
43
44
  "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
45
+ "Programming Language :: Python",
44
46
  "Topic :: Artistic Software",
45
47
  "Topic :: Security",
46
48
  "Topic :: Scientific/Engineering :: Visualization",
@@ -48,6 +50,7 @@ classifiers = [
48
50
 
49
51
  include = [
50
52
  "CHANGELOG.md",
53
+ "LICENSE",
51
54
  ".yaralyzer.example"
52
55
  ]
53
56
 
File without changes
File without changes
File without changes
File without changes