We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed, that rules like:
rule bad_type_percentage { strings: $s = "test" condition: "test"% of them }
Result in error:
error: rule "bad_type_percentage" in test.yar(5): wrong type "string" for % operator
But when I execute this python code:
import yaramod y = yaramod.Yaramod() yara_file = y.parse_string(r''' rule bad_type_percentage { strings: $s = "test" condition: "test"% of them } ''') print(yara_file.text)
No exception is raised by yaramod. Shouldn't yaramod also test the data type of the expression before the percentage (%) operator?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed, that rules like:
Result in error:
But when I execute this python code:
No exception is raised by yaramod. Shouldn't yaramod also test the data type of the expression before the percentage (%) operator?
The text was updated successfully, but these errors were encountered: