Browse Source

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>
lilik-openwrt-22.03
Ashkan Jazayeri 6 years ago
parent
commit
8d20a24cf5
2 changed files with 8 additions and 1 deletions
  1. +7
    -0
      utils/yara/Config.in
  2. +1
    -1
      utils/yara/Makefile

+ 7
- 0
utils/yara/Config.in View File

@ -12,5 +12,12 @@ if PACKAGE_yara
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

+ 1
- 1
utils/yara/Makefile View File

@ -41,7 +41,7 @@ define Package/yara/description
endef
CONFIGURE_ARGS += \
--disable-dotnet \
$(if $(CONFIG_YARA_module_dotnet),--enable,--disable)-dotnet \
$(if $(CONFIG_YARA_module_magic),--enable,--disable)-magic \
$(if $(CONFIG_YARA_module_cuckoo),--enable,--disable)-cuckoo


Loading…
Cancel
Save