From e1ec7e197594dcd86d002668438e619197940d11 Mon Sep 17 00:00:00 2001 From: Vincent Thiberville Date: Tue, 27 Dec 2022 11:08:16 +0100 Subject: [PATCH] chore: update Changelog on yara 4.3 changes --- CHANGELOG.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8afda483..31a463c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +Update to be compatible with Yara 4.3 + ### Added +Yara 4.3 compatibility: + +- `string` module +- `rva` field in imported functions in `pe` module. +- `pe.import_rva` and `pe.delayed_import_rva` functions. +- `pe.import_rva` and `pe.delayed_import_rva` functions. +- string iterator, `for any s in ("foo", "bar"): (...)`. +- `at` for expression, `for any s in ("foo", "bar"): (...)`. + +Other: + - `openssl` feature for `boreal-cli`. +### Fixed + +- Proper handling of pe sections with VirtualSize = 0. +- Improved handling on invalid ranges in '$a in (from..to)' expression. +- Do not allow using identifiers currently being bound in iterator values. + ## [0.1.0] - 2022-12-04 Initial release.