Advertisement
dissectmalware

Yara rule - xlsb_with_xlm_macro

Apr 23rd, 2020
929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. rule xlsb_with_xlm_macro{
  2. meta:
  3. description = "Detects Modern Excel4 macro use"
  4. author = "DissectMalware"
  5. strings:
  6. $zip_marker = "PK"
  7. $xlsx_marker = {5B 43 6F 6E 74 65 6E 74 5F 54 79 70 65 73 5D 2E 78 6D 6C}
  8. $macrosheet_marker = {77 6F 72 6B 62 6F 6F 6B 2E 62 69 6E}
  9. condition:
  10. $zip_marker at 0 and $xlsx_marker and $macrosheet_marker
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement