Advertisement
James_inthe_box

Parallax rat yara

Dec 13th, 2019
14,219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. rule Parallax_bin
  2. {
  3. meta:
  4. description = "Parallax RAT"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/2c605bca-dd95-45fc-a8a7-79a915d2b798"
  7. date = "2019/12"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "image/jpeg" wide ascii
  12. $string2 = "[Ctrl]" wide ascii
  13. $string4 = "Clipboard End" wide ascii
  14. $string5 = "UN.vbs" wide ascii
  15. $string6 = "DeleteFile(Wscript.ScriptFullName)" wide ascii
  16. $string8 = "Clipboard Start" wide ascii
  17. $string9 = "[Alt]" wide ascii
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 200KB
  21. }
  22.  
  23. rule Parallax_mem
  24. {
  25. meta:
  26. description = "Parallax RAT"
  27. author = "James_inthe_box"
  28. reference = "https://app.any.run/tasks/2c605bca-dd95-45fc-a8a7-79a915d2b798"
  29. date = "2019/12"
  30. maltype = "RAT"
  31.  
  32. strings:
  33. $string1 = "image/jpeg" wide ascii
  34. $string2 = "[Ctrl]" wide ascii
  35. $string4 = "Clipboard End" wide ascii
  36. $string5 = "UN.vbs" wide ascii
  37. $string6 = "DeleteFile(Wscript.ScriptFullName)" wide ascii
  38. $string8 = "Clipboard Start" wide ascii
  39. $string9 = "[Alt]" wide ascii
  40.  
  41. condition:
  42. all of ($string*) and filesize > 200KB
  43. }
  44.  
  45. rule Parallax_mem_loose
  46. {
  47. meta:
  48. description = "Parallax RAT"
  49. author = "James_inthe_box"
  50. reference = "https://app.any.run/tasks/2c605bca-dd95-45fc-a8a7-79a915d2b798"
  51. date = "2019/12"
  52. maltype = "RAT"
  53.  
  54. strings:
  55. $string1 = "image/jpeg" wide ascii
  56. $string2 = "[Ctrl]" wide ascii
  57. $string4 = "Clipboard End" wide ascii
  58. $string5 = "UN.vbs" wide ascii
  59. $string6 = "DeleteFile(Wscript.ScriptFullName)" wide ascii
  60. $string8 = "Clipboard Start" wide ascii
  61. $string9 = "[Alt]" wide ascii
  62.  
  63. condition:
  64. 4 of ($string*) and filesize > 200KB
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement