James_inthe_box

Poullight stealer yara

Mar 22nd, 2020
13,833
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. rule poullight_bin
  2. {
  3. meta:
  4. description = "Poullight stealer"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/d9e4933b-3229-4cb4-84e6-c45a336b15be/"
  7. date = "2020/03"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "[LOGS]" wide
  12. $string2 = "Org.BouncyCastle.Crypto.Prng" ascii
  13. $string3 = "lookupPowX2" ascii
  14.  
  15. condition:
  16. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  17. }
  18.  
  19. rule poullight_mem
  20. {
  21. meta:
  22. description = "Poullight stealer"
  23. author = "James_inthe_box"
  24. reference = "https://app.any.run/tasks/d9e4933b-3229-4cb4-84e6-c45a336b15be/"
  25. date = "2020/03"
  26. maltype = "Stealer"
  27.  
  28. strings:
  29. $string1 = "[LOGS]" wide
  30. $string2 = "Org.BouncyCastle.Crypto.Prng" ascii
  31. $string3 = "lookupPowX2" ascii
  32.  
  33. condition:
  34. all of ($string*) and filesize > 800KB
  35. }
Add Comment
Please, Sign In to add comment