Advertisement
James_inthe_box

Seafko yara

Feb 24th, 2019
595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. rule Seagko_bin
  2. {
  3. meta:
  4. description = "Seafko botnet"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/54fe7d78-91d9-4d45-8b65-7333c2c7d480"
  7. date = "2019/02"
  8. maltype = "Bot"
  9.  
  10. strings:
  11. $string1 = "HTTPPayloads"
  12. $string2 = "DesktopScreenshot"
  13. $string3 = "DownloadExcute"
  14. $string4 = "Jan1St1970"
  15. $string5 = "SERVER_URL"
  16. $string6 = "STARTUP_INSTALL"
  17. $string7 = "IRCAgent"
  18. $string8 = "GetNickname"
  19. $string9 = "&command=RegisterNewMachine" wide
  20.  
  21. condition:
  22. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  23. }
  24.  
  25. rule Seagko_mem
  26. {
  27. meta:
  28. description = "Seafko botnet"
  29. author = "James_inthe_box"
  30. reference = "https://app.any.run/tasks/54fe7d78-91d9-4d45-8b65-7333c2c7d480"
  31. date = "2019/02"
  32. maltype = "Bot"
  33.  
  34. strings:
  35. $string1 = "HTTPPayloads"
  36. $string2 = "DesktopScreenshot"
  37. $string3 = "DownloadExcute"
  38. $string4 = "Jan1St1970"
  39. $string5 = "SERVER_URL"
  40. $string6 = "STARTUP_INSTALL"
  41. $string7 = "IRCAgent"
  42. $string8 = "GetNickname"
  43. $string9 = "&command=RegisterNewMachine" wide
  44.  
  45. condition:
  46. all of ($string*) and filesize > 800KB
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement