Advertisement
James_inthe_box

8.t crew yara sig

Apr 17th, 2019
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. rule Eightt_dll_bin
  2. {
  3. meta:
  4. description = "8t crew malware"
  5. author = "James_inthe_box"
  6. reference = "853136f00e87a1ab3e2fc3acb309573e"
  7. date = "2019/04"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "takeown /F \"%s\""
  12. $string2 = "del %%0 /q /f"
  13. $string3 = "del \"%s\" /q /f"
  14. $string4 = "Ping 127.0.0.1"
  15. $string5 = "InvokeMainViaCRT"
  16. $string6 = "\"Main Invoked.\""
  17. $string7 = "InitializeCriticalSectionAndSpinCount"
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and uint8(uint32(0x3c)+23) == 0x21 and all of ($string*) and filesize < 700KB
  21. }
  22.  
  23. rule Eightt_dll_mem
  24. {
  25. meta:
  26. description = "8t crew malware"
  27. author = "James_inthe_box"
  28. reference = "853136f00e87a1ab3e2fc3acb309573e"
  29. date = "2019/04"
  30. maltype = "RAT"
  31.  
  32. strings:
  33. $string1 = "taskkill /f /pid %s" wide
  34. $string2 = "reg delete H" wide
  35. $string3 = "ipconfig /flushdns" wide
  36. $string4 = "\\pxry.dat"
  37. $string5 = "passwd"
  38. $string6 = "OpenProcessToken Error: %d"
  39. $string7 = "rd /s/q \"%s\"" wide
  40.  
  41. condition:
  42. all of ($string*) and filesize > 700KB
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement