serrastusbear

QuakBot_DropperXLS_YARA

Dec 1st, 2020
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. rule QuakBot_XLS_MalDocs
  2. {
  3. meta:
  4. author = "Joe Slowik, DomainTools"
  5. description = "Identify metadata characteristics for recent QuakBot XLS maldocs."
  6. strings:
  7. $s1 = "C:\\Flopers" ascii
  8. $s2 = "C:\\Flopers\\Flopers2" ascii
  9. $s3 = "Admin" ascii fullword
  10. $s4 = "Friner" ascii fullword
  11. $s5 = "DocuSign" ascii fullword
  12. condition:
  13. uint16(0) == 0xcfd0 and 3 of ($s*)
  14. }
Advertisement
Add Comment
Please, Sign In to add comment