Advertisement
James_inthe_box

Various yara sigs

Apr 19th, 2019
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. rule LimeRAT_mem
  2. {
  3. meta:
  4. description = "LimeRAT"
  5. author = "James_inthe_box"
  6. reference = "d6955d8ae626ce1f4f2ca6f0a40805b9a14d6837e68083233944f0565bd855e1"
  7. date = "2019/04"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "LimeRAT" nocase ascii wide
  12.  
  13. condition:
  14. all of ($string*)
  15. }
  16.  
  17.  
  18. cybergate.yar
  19. rule Cybergate_bin
  20. {
  21. meta:
  22. description = "CyberGate RAT"
  23. author = "James_inthe_box"
  24. reference = "772ccf76b072bbee94695a2f7894ce162f64f12ef953412d305daf43ff98e9fe"
  25. date = "2019/04"
  26. maltype = "RAT"
  27.  
  28. strings:
  29. $string1 = "CyberGate" ascii wide
  30. $string2 = "[LogFile]"
  31.  
  32. condition:
  33. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  34. }
  35.  
  36. rule Cybergate_mem
  37. {
  38. meta:
  39. description = "CyberGate RAT"
  40. author = "James_inthe_box"
  41. reference = "772ccf76b072bbee94695a2f7894ce162f64f12ef953412d305daf43ff98e9fe"
  42. date = "2019/04"
  43. maltype = "RAT"
  44.  
  45. strings:
  46. $string1 = "CyberGate" ascii wide
  47. $string2 = "[LogFile]"
  48.  
  49. condition:
  50. all of ($string*) and filesize > 800KB
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement