gyp
gyp copied to clipboard
gyp: A pure Go YARA parser
Bumps google.golang.org/protobuf from 1.27.1 to 1.33.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
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...
After parsing a Yara Ruleset into a ast.RuleSet is there a way to manipulate a rule's condition? Take this sample ruleset ``` rule rule_1 { strings: $header_v2 = {50 02}...
Over the past year I’ve been using GYP fairly heavily to help manage a large YARA ruleset. One of the things I needed to do was to: * Build a...
In the process of working with your library I found out that when you parse a ruleset from string and then, at some point, you want to serialize one of...
I am not sure if this is valid Yara but I have a lot of rules that make use of this constuct ``` rule X { strings: $A = "hello"...