James_inthe_box

Innfirat yara

Sep 13th, 2019
1,278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. rule InnfiRAT_bin
  2. {
  3. meta:
  4. description = "InnfiRAT"
  5. author = "James_inthe_box"
  6. reference = "https://www.zscaler.com/blogs/research/innfirat-new-rat-aiming-your-cryptocurrency-and-more"
  7. date = "2019/09"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "get_HWID"
  12. $string2 = "BitcoinWallet"
  13. $string3 = "get_Login"
  14. $string4 = "get_Password"
  15. $string5 = "VictimLogs"
  16. $string6 = "DockInfo"
  17. $string7 = "IVictimCallback"
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  21. }
  22.  
  23. rule InnfiRAT_mem
  24. {
  25. meta:
  26. description = "InnfiRAT"
  27. author = "James_inthe_box"
  28. reference = "https://www.zscaler.com/blogs/research/innfirat-new-rat-aiming-your-cryptocurrency-and-more"
  29. date = "2019/09"
  30. maltype = "RAT"
  31.  
  32. strings:
  33. $string1 = "get_HWID"
  34. $string2 = "BitcoinWallet"
  35. $string3 = "get_Login"
  36. $string4 = "get_Password"
  37. $string5 = "VictimLogs"
  38. $string6 = "DockInfo"
  39. $string7 = "IVictimCallback"
  40.  
  41. condition:
  42. all of ($string*) and filesize > 800KB
  43. }
Advertisement
Add Comment
Please, Sign In to add comment