James_inthe_box

GET2 yara sig

Oct 28th, 2019
494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. rule Get2_loader_bin
  2. {
  3. meta:
  4. description = "Get2 loader"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/2df343eb-df3b-400d-affc-3bf04fa5484c/"
  7. date = "2019/10"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "&OS=" wide
  12. $string2 = "&OSA=" wide
  13. $string3 = "Failed to open the target process"
  14. $string4 = "Failed to inject the DLL"
  15. $string5 = "&PR=" wide
  16. $string6 = "\\lowpro" wide
  17. $string7 = "shutdown /r /t"
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  21. }
  22.  
  23. rule Get2_loader_mem
  24. {
  25. meta:
  26. description = "Get2 loader"
  27. author = "James_inthe_box"
  28. reference = "https://app.any.run/tasks/2df343eb-df3b-400d-affc-3bf04fa5484c/"
  29. date = "2019/10"
  30. maltype = "Loader"
  31.  
  32. strings:
  33. $string1 = "&OS=" wide
  34. $string2 = "&OSA=" wide
  35. $string3 = "Failed to open the target process"
  36. $string4 = "Failed to inject the DLL"
  37. $string5 = "&PR=" wide
  38. $string6 = "\\lowpro" wide
  39. $string7 = "shutdown /r /t"
  40.  
  41. condition:
  42. all of ($string*) and filesize > 800KB
  43. }
Advertisement
Add Comment
Please, Sign In to add comment