Advertisement
James_inthe_box

IcedID loader yara

Apr 1st, 2020
16,412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. rule IcedID_newloader_bin
  2. {
  3. meta:
  4. description = "IcedID Loader"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/16c7bbfb-1c6a-40be-a625-bf8bc870354b/"
  7. date = "2020/03"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "; _gat=" wide
  12. $string2 = "; _ga=" wide
  13. $string3 = "; _u=" wide
  14. $string4 = "; __io=" wide
  15. $string5 = "; _gid=" wide
  16.  
  17. condition:
  18. uint16(0) == 0x5A4D and all of ($string*) and filesize < 100KB
  19. }
  20.  
  21. rule IcedID_newloader_mem
  22. {
  23. meta:
  24. description = "IcedID Loader"
  25. author = "James_inthe_box"
  26. reference = "https://app.any.run/tasks/16c7bbfb-1c6a-40be-a625-bf8bc870354b/"
  27. date = "2020/03"
  28. maltype = "Loader"
  29.  
  30. strings:
  31. $string1 = "; _gat=" wide
  32. $string2 = "; _ga=" wide
  33. $string3 = "; _u=" wide
  34. $string4 = "; __io=" wide
  35. $string5 = "; _gid=" wide
  36.  
  37. condition:
  38. all of ($string*) and filesize > 100KB
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement