Hi,
may I ask how I can use yaramod to retrieve all tokens from the yara rule file(regardless of whether the rule is valid or complete)?
For example, the contents of my file are as follows:
rule abc {
condition:
xyz
}
and what I hope to get is:
['rule','abc','{','\n','condition',':','\n','xyz','\n','}']
Excuse me.