gyp icon indicating copy to clipboard operation
gyp copied to clipboard

gyp: A pure Go YARA parser

Results 6 gyp issues
Sort by recently updated
recently updated
newest added

Bumps google.golang.org/protobuf from 1.27.1 to 1.33.0. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.27.1&new-version=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...

dependencies

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"...