James_inthe_box

Raccoon stealer yara sig

Sep 18th, 2019
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. rule Raccoon_stealer_bin
  2. {
  3. meta:
  4. description = "Raccoon Stealer"
  5. author = "James_inthe_box"
  6. reference = "161e393d9f16ea79c1d8356ec926f5bbf11568f5a322f1cd7216bcd12b4d2091"
  7. date = "2019/09"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "attachment_url"
  12. $string2 = "loader_urls"
  13. $string3 = "[^:]://"
  14. $string4 = "POST" ascii wide
  15. $string5 = "SUBTYPE GUID="
  16. $string6 = "rg:\\stealer\\stealler\\json.hpp" wide
  17.  
  18. condition:
  19. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  20. }
  21.  
  22. rule Raccoon_stealer_mem
  23. {
  24. meta:
  25. description = "Raccoon Stealer"
  26. author = "James_inthe_box"
  27. reference = "161e393d9f16ea79c1d8356ec926f5bbf11568f5a322f1cd7216bcd12b4d2091"
  28. date = "2019/09"
  29. maltype = "Stealer"
  30.  
  31. strings:
  32. $string1 = "attachment_url"
  33. $string2 = "loader_urls"
  34. $string3 = "[^:]://"
  35. $string4 = "POST" ascii wide
  36. $string5 = "SUBTYPE GUID="
  37. $string6 = "rg:\\stealer\\stealler\\json.hpp" wide
  38.  
  39. condition:
  40. uint16(0) == 0x5A4D and all of ($string*) and filesize > 800KB
  41. }
Add Comment
Please, Sign In to add comment