You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
544 B

  1. if PACKAGE_yara
  2. comment "Optional modules"
  3. config YARA_module_magic
  4. bool "Magic module"
  5. default y
  6. help
  7. Identify the type of the file based on the output of file command
  8. config YARA_module_cuckoo
  9. bool "Cuckoo module"
  10. default n
  11. help
  12. Create rules based on behavioral info generated by a Cuckoo sandbox
  13. config YARA_module_dotnet
  14. bool "Dotnet module"
  15. default n
  16. help
  17. The dotnet module allows you to create more fine-grained rules
  18. for .NET files by using attributes and features of the .NET file format
  19. endif