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
While attempting to parse a valid yara ruleset with the latest version of master, the following error was returned by gyp.Parse(): syntax error: unexpected _HEX_NUMBER_, expecting _NUMBER_
The relevant snippet of the line in the ruleset where the error occurred is as follows: xor(0x01-0xff)
I've verified that no error is returned in v0.9.0, so I believe the bug was introduced in the latest commit, when the new _HEX_NUMBER_ and _OCT_NUMBER_ tokens introduced an inconsistency with the official libyara grammar, and the xor string modifiers definition was not updated.
The text was updated successfully, but these errors were encountered:
While attempting to parse a valid yara ruleset with the latest version of
master
, the following error was returned bygyp.Parse()
:syntax error: unexpected _HEX_NUMBER_, expecting _NUMBER_
The relevant snippet of the line in the ruleset where the error occurred is as follows:
xor(0x01-0xff)
I've verified that no error is returned in
v0.9.0
, so I believe the bug was introduced in the latest commit, when the new_HEX_NUMBER_
and_OCT_NUMBER_
tokens introduced an inconsistency with the official libyara grammar, and the xor string modifiers definition was not updated.The text was updated successfully, but these errors were encountered: