diff options
author | Marko Ratkaj <marko.ratkaj@sartura.hr> | 2017-04-18 15:35:29 +0200 |
---|---|---|
committer | Marko Ratkaj <marko.ratkaj@sartura.hr> | 2017-09-21 11:29:33 +0200 |
commit | 81edf42d945344a644e3a801da08ac464359c9a4 (patch) | |
tree | c1d30032c8dcdc2f80efdd4988d2fea3555813f5 /utils/yara/Config.in | |
parent | 9e265cfa1bcbe790139d33842c74cbfa4af49683 (diff) |
yara: add package
YARA is a tool aimed at (but not limited to) helping malware researchers
to identify and classify malware samples. With YARA you can create
descriptions of malware families based on textual or binary patterns.
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
Diffstat (limited to 'utils/yara/Config.in')
-rw-r--r-- | utils/yara/Config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/yara/Config.in b/utils/yara/Config.in new file mode 100644 index 000000000..76e83db6b --- /dev/null +++ b/utils/yara/Config.in @@ -0,0 +1,16 @@ +if PACKAGE_yara + comment "Optional modules" + + config YARA_module_magic + bool "Magic module" + default y + help + Identify the type of the file based on the output of file command + + config YARA_module_cuckoo + bool "Cuckoo module" + default n + help + Create rules based on behavioral info generated by a Cuckoo sandbox +endif + |