You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In expressions such as 123 < "abc" or true and "abc", data types of operands are not checked and those expressions are parsed without error, even though YARA fails with error when parsing them.
This bug occurs with boolean operators (and, or, not) and comparison operators (==, !=, <, <=, >, >=). I haven't done any deeper research so it is possible that it occurs in some other expressions too.
The text was updated successfully, but these errors were encountered:
In expressions such as
123 < "abc"
ortrue and "abc"
, data types of operands are not checked and those expressions are parsed without error, even though YARA fails with error when parsing them.This bug occurs with boolean operators (
and
,or
,not
) and comparison operators (==
,!=
,<
,<=
,>
,>=
). I haven't done any deeper research so it is possible that it occurs in some other expressions too.The text was updated successfully, but these errors were encountered: