1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-13 10:59:13 +02:00
openwrt-packages/utils/yara/Config.in
Ashkan Jazayeri 8d20a24cf5 yara: add dotnet module
Dotnet module added as a compile time option.
The dotnet module allows you to create more fine-grained rules
for .NET files by using attributes and features of the .NET file format.
http://yara.readthedocs.io/en/latest/modules/dotnet.html

Signed-off-by: Ashkan Jazayeri <ashkan@jazayeri.net>
2018-06-05 22:31:14 +04:30

24 lines
544 B
Plaintext

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
config YARA_module_dotnet
bool "Dotnet module"
default n
help
The dotnet module allows you to create more fine-grained rules
for .NET files by using attributes and features of the .NET file format
endif