Advertisement
James_inthe_box

DCRat yara

Sep 29th, 2019
1,293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. rule DCRat_bin
  2. {
  3. meta:
  4. description = "DCRat"
  5. author = "James_inthe_box"
  6. reference = "8d41d5131fac719cc11823fb57bef9ef1ea063dbb8f52b235a3948bece039d95"
  7. date = "2019/09"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "DCRatBuild"
  12.  
  13. condition:
  14. uint16(0) == 0x5A4D and all of ($string*) and filesize < 3000KB
  15. }
  16.  
  17. rule DCRat_mem
  18. {
  19. meta:
  20. description = "DCRat"
  21. author = "James_inthe_box"
  22. reference = "8d41d5131fac719cc11823fb57bef9ef1ea063dbb8f52b235a3948bece039d95"
  23. date = "2019/09"
  24. maltype = "RAT"
  25.  
  26. strings:
  27. $string1 = "DCRatBuild"
  28.  
  29. condition:
  30. all of ($string*) and filesize > 3000KB
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement