Advertisement
James_inthe_box

PCrat

May 27th, 2019
713
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. rule PCRat_bin
  2. {
  3. meta:
  4. description = "PCRat"
  5. author = "James_inthe_box"
  6. reference = "2714b1626e28b57fee41734616fa88f5e60fb68e8cf210332becffc6e80cf5fc"
  7. date = "2019/05"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "k- exe.tsoh"
  12. $string2 = "eludom"
  13. $string3 = "Niamecivres" nocase
  14. $string4 = ".dat"
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 200KB
  18. }
  19.  
  20. rule PCRat_mem
  21. {
  22. meta:
  23. description = "PCRat"
  24. author = "James_inthe_box"
  25. reference = "2714b1626e28b57fee41734616fa88f5e60fb68e8cf210332becffc6e80cf5fc"
  26. date = "2019/05"
  27. maltype = "RAT"
  28.  
  29. strings:
  30. $string1 = "k- exe.tsoh"
  31. $string2 = "eludom"
  32. $string3 = "Niamecivres" nocase
  33. $string4 = ".dat"
  34.  
  35. condition:
  36. all of ($string*) and filesize > 200KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement