Victor M. Alvarez

Results 206 comments of Victor M. Alvarez

There's nothing specific to YARA in this PR. Its all about how to configure the tooling for building a generic C/++ project on OpenHarmony. In my opinion these instructions should...

I like the approach, and the `figment` create looks like a great choice, but I would make the configuration file a global one that not only affects the `fmt` command....

I think we should introduce some Python and Golang API that returns the output of a module without having to use a dummy rule, similarly to https://docs.rs/yara-x/0.14.0/yara_x/mods/fn.invoke.html and https://docs.rs/yara-x/0.14.0/yara_x/mods/fn.invoke_all.html. In...

> I know you mentioned go bindings specifically but that's going to require a bit more work to do. From a quick glance the go bindings are wrappers around the...

> @plusvic Hi, does this MR look okay, or do I need to add something else to merge it? I'm running the fuzzer a little bit before merging it.

Sure! This contribution is appreciated, if you want to work on that and send a PR, it's welcomed.

Can you provide more information about that .yar file? For instance, how many rules the file contains? How large is the largest condition?

The issue here is probably related to the size of the condition's code. YARA-X compiles the condition expression to webassembly code, which is later converted to native code by `cranelift`....

I've confirmed that cause of this issue is the large size of the WASM function that is produced by such a large condition. The panic looks like a bug in...