Advertisement
James_inthe_box

Kpot yara

May 19th, 2019
1,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. rule Kpot_stealer_bin
  2. {
  3. meta:
  4. description = "KPOT stealer"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/913b9afa-60f9-47fe-b3c5-b7cea0922c3c"
  7. date = "2019/05"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "password-check"
  12. $string2 = "%s = %s"
  13. $string3 = "%s\\%s.txt" wide
  14. $string4 = "%s\\%s.vdf" wide
  15. $string5 = "%s\\%s\\%s-Qt" wide
  16. $string6 = "%s\\%s\\%s.xml" wide
  17. $string7 = "%s\\%s\\%s\\%.6s_%d.dat" wide
  18. $string8 = "_%s_"
  19.  
  20. condition:
  21. uint16(0) == 0x5A4D and 5 of ($string*) and filesize < 800KB
  22. }
  23.  
  24. rule Kpot_stealer_mem
  25. {
  26. meta:
  27. description = "KPOT stealer"
  28. author = "James_inthe_box"
  29. reference = "https://app.any.run/tasks/913b9afa-60f9-47fe-b3c5-b7cea0922c3c"
  30. date = "2019/05"
  31. maltype = "Stealer"
  32.  
  33. strings:
  34. $string1 = "password-check"
  35. $string2 = "%s = %s"
  36. $string3 = "%s\\%s.txt" wide
  37. $string4 = "%s\\%s.vdf" wide
  38. $string5 = "%s\\%s\\%s-Qt" wide
  39. $string6 = "%s\\%s\\%s.xml" wide
  40. $string7 = "%s\\%s\\%s\\%.6s_%d.dat" wide
  41. $string8 = "_%s_"
  42.  
  43. condition:
  44. 5 of ($string*) and filesize > 800KB
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement