Replies: 1 comment
-
YARA doesn't use the actual This blog post can sheds some light on how YARA works internally. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm wondering a lot of questions every time.
Since i use Yara, there is a question that i didn't find answer yet.
When i make a very simple yara rule file, like this one :
rule test_rule : test
{
strings:
$1 = "text"
And i run this yara rule against a binary file with this command line : " yara test.yara -s binary"
=> What action really does yara to check if the strings "test" exists in the file "binary" ?
=> Does it use a simple "grep" (or something equivalent if it is on a linux computer) on the file "binary" ?
=> Or does it make something more complex ?
Thank for the help on this question
Fred
Beta Was this translation helpful? Give feedback.
All reactions