Advertisement
James_inthe_box

Flawedgrace yara sig

Mar 29th, 2019
987
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. rule Flawedgrace_bin
  2. {
  3. meta:
  4. description = "Flawed Grace RAT"
  5. author = "James_inthe_box"
  6. reference = "e30c18f741916c335f7859b808929fa94295a708c19def4ca671f50909bdc225"
  7. date = "2019/03"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "AVGraceTunnelWriteThread"
  12. $string2 = "SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp" wide
  13.  
  14. condition:
  15. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  16. }
  17.  
  18. rule Flawedgrace_mem
  19. {
  20. meta:
  21. description = "Flawed Grace RAT"
  22. author = "James_inthe_box"
  23. reference = "e30c18f741916c335f7859b808929fa94295a708c19def4ca671f50909bdc225"
  24. date = "2019/03"
  25. maltype = "RAT"
  26.  
  27. strings:
  28. $string1 = "AVGraceTunnelWriteThread"
  29. $string2 = "SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp" wide
  30.  
  31. condition:
  32. all of ($string*) and filesize > 800KB
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement