xneanq
Results
2
comments of
xneanq
the reason this is happening is because the `YaraScan` analyzer is separately compiling each yara file and holding on to each `yara.Rules` object and running each one separately (the florian...
you could also just combine all of the rules into an `index.yar` in `repo_downloader.sh` ``` find yara -name \*.yar | while read yarafile; do yarac -d filename=XXX $yarafile /dev/null &&...