yaralyzer 0.9.5__tar.gz → 0.9.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 (29) hide show
  1. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/CHANGELOG.md +3 -0
  2. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/PKG-INFO +1 -1
  3. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/pyproject.toml +1 -1
  4. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/util/argument_parser.py +2 -2
  5. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/.yaralyzer.example +0 -0
  6. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/LICENSE +0 -0
  7. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/README.md +0 -0
  8. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/__init__.py +0 -0
  9. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/bytes_match.py +0 -0
  10. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/config.py +0 -0
  11. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/decoding/bytes_decoder.py +0 -0
  12. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/decoding/decoding_attempt.py +0 -0
  13. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/encoding_detection/character_encodings.py +0 -0
  14. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/encoding_detection/encoding_assessment.py +0 -0
  15. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/encoding_detection/encoding_detector.py +0 -0
  16. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/helpers/bytes_helper.py +0 -0
  17. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/helpers/dict_helper.py +0 -0
  18. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/helpers/file_helper.py +0 -0
  19. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/helpers/rich_text_helper.py +0 -0
  20. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/helpers/string_helper.py +0 -0
  21. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/output/decoding_attempts_table.py +0 -0
  22. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/output/file_export.py +0 -0
  23. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/output/file_hashes_table.py +0 -0
  24. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/output/regex_match_metrics.py +0 -0
  25. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/output/rich_console.py +0 -0
  26. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/util/logging.py +0 -0
  27. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/yara/yara_match.py +0 -0
  28. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/yara/yara_rule_builder.py +0 -0
  29. {yaralyzer-0.9.5 → yaralyzer-0.9.6}/yaralyzer/yaralyzer.py +0 -0
@@ -1,5 +1,8 @@
1
1
  # NEXT RELEASE
2
2
 
3
+ ### 0.9.6
4
+ * Fix help message
5
+
3
6
  ### 0.9.5
4
7
  * Use all files in a directory specified by `--rule-dir` instead of just those with the extension `.yara`
5
8
  * Fix bug where `--rule-dir` is prefixed by `./`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: yaralyzer
3
- Version: 0.9.5
3
+ Version: 0.9.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
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "yaralyzer"
3
- version = "0.9.5"
3
+ version = "0.9.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"
@@ -29,7 +29,7 @@ DESCRIPTION = "Get a good hard colorful look at all the byte sequences that make
29
29
  EPILOG = "* Values for various config options can be set permanently by a .yaralyzer file in your home directory; " + \
30
30
  "see the documentation for details.\n" + \
31
31
  f"* A registry of previous yaralyzer invocations will be incribed to a file if the " + \
32
- "'{YaralyzerConfig.LOG_DIR_ENV_VAR}' environment variable is configured."
32
+ f"{YaralyzerConfig.LOG_DIR_ENV_VAR} environment variable is configured."
33
33
 
34
34
 
35
35
  # Positional args, version, help, etc
@@ -95,7 +95,7 @@ tuning.add_argument('--suppress-decodes-table', action='store_true',
95
95
  help='suppress decodes table entirely (including hex/raw output)')
96
96
 
97
97
  tuning.add_argument('--suppress-decoding-attempts', action='store_true',
98
- help='suppress decodes attempts for matched bytes (only hex/raw output will be shown)')
98
+ help='suppress decode attempts for matched bytes (only hex/raw output will be shown)')
99
99
 
100
100
  tuning.add_argument('--min-decode-length',
101
101
  help='suppress decode attempts for quoted byte sequences shorter than N',
File without changes
File without changes
File without changes
File without changes