yaralyzer 1.0.4__tar.gz → 1.0.5__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.4 → yaralyzer-1.0.5}/CHANGELOG.md +3 -0
  2. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/PKG-INFO +4 -1
  3. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/pyproject.toml +5 -1
  4. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/.yaralyzer.example +0 -0
  5. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/LICENSE +0 -0
  6. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/README.md +0 -0
  7. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/__init__.py +0 -0
  8. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/bytes_match.py +0 -0
  9. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/config.py +0 -0
  10. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/decoding/bytes_decoder.py +0 -0
  11. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/decoding/decoding_attempt.py +0 -0
  12. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/encoding_detection/character_encodings.py +0 -0
  13. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/encoding_detection/encoding_assessment.py +0 -0
  14. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/encoding_detection/encoding_detector.py +0 -0
  15. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/helpers/bytes_helper.py +0 -0
  16. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/helpers/dict_helper.py +0 -0
  17. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/helpers/file_helper.py +0 -0
  18. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/helpers/list_helper.py +0 -0
  19. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/helpers/rich_text_helper.py +0 -0
  20. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/helpers/string_helper.py +0 -0
  21. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/output/decoding_attempts_table.py +0 -0
  22. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/output/file_export.py +0 -0
  23. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/output/file_hashes_table.py +0 -0
  24. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/output/regex_match_metrics.py +0 -0
  25. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/output/rich_console.py +0 -0
  26. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/util/argument_parser.py +0 -0
  27. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/util/logging.py +0 -0
  28. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/yara/yara_match.py +0 -0
  29. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/yara/yara_rule_builder.py +0 -0
  30. {yaralyzer-1.0.4 → yaralyzer-1.0.5}/yaralyzer/yaralyzer.py +0 -0
@@ -1,5 +1,8 @@
1
1
  # NEXT RELEASE
2
2
 
3
+ ### 1.0.5
4
+ * Add `Development Status :: 5 - Production/Stable` to pypi classifiers
5
+
3
6
  ### 1.0.4
4
7
  * Lock `chardet` library to 5.x
5
8
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: yaralyzer
3
- Version: 1.0.4
3
+ Version: 1.0.5
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
@@ -8,11 +8,14 @@ Keywords: ascii art,binary,character encoding,color,cybersecurity,data visualiza
8
8
  Author: Michel de Cryptadamus
9
9
  Author-email: michel@cryptadamus.com
10
10
  Requires-Python: >=3.9,<4.0
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Information Technology
11
13
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
12
14
  Classifier: Programming Language :: Python :: 3
13
15
  Classifier: Programming Language :: Python :: 3.9
14
16
  Classifier: Programming Language :: Python :: 3.10
15
17
  Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Topic :: Artistic Software
16
19
  Classifier: Topic :: Scientific/Engineering :: Visualization
17
20
  Classifier: Topic :: Security
18
21
  Requires-Dist: chardet (>=5.0.0,<6.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "yaralyzer"
3
- version = "1.0.4"
3
+ version = "1.0.5"
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"
@@ -38,6 +38,10 @@ keywords = [
38
38
  ]
39
39
 
40
40
  classifiers = [
41
+ "Development Status :: 5 - Production/Stable",
42
+ "Intended Audience :: Information Technology",
43
+ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
44
+ "Topic :: Artistic Software",
41
45
  "Topic :: Security",
42
46
  "Topic :: Scientific/Engineering :: Visualization",
43
47
  ]
File without changes
File without changes
File without changes
File without changes