James_inthe_box

Bandook yara sig

Apr 26th, 2019
633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. rule Bandook_bin
  2. {
  3. meta:
  4. description = "Bandook rat"
  5. author = "James_inthe_box"
  6. reference = "059296ebba9ab44684cf4af6ef19185b24584bc0a6c9efe1089d3cc022d689c2"
  7. date = "2019/04"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "<ellipsis>"
  12. $string2 = "https://wtfismyip.com/text"
  13. $string3 = "SELECT * FROM AntiVirusProduct"
  14. $string4 = "%s~!"
  15. $string5 = "TEST" wide
  16.  
  17. condition:
  18. uint16(0) == 0x5A4D and all of ($string*) and filesize < 1000KB
  19. }
  20.  
  21. rule Bandook_mem
  22. {
  23. meta:
  24. description = "Bandook rat"
  25. author = "James_inthe_box"
  26. reference = "059296ebba9ab44684cf4af6ef19185b24584bc0a6c9efe1089d3cc022d689c2"
  27. date = "2019/04"
  28. maltype = "RAT"
  29.  
  30. strings:
  31. $string1 = "<ellipsis>"
  32. $string2 = "https://wtfismyip.com/text"
  33. $string3 = "SELECT * FROM AntiVirusProduct"
  34. $string4 = "%s~!"
  35. $string5 = "TEST" wide
  36.  
  37. condition:
  38. all of ($string*) and filesize > 1000KB
  39. }
Advertisement
Add Comment
Please, Sign In to add comment