James_inthe_box

Bifrost #yara sig

Aug 22nd, 2019
1,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. rule Bifrost_bin
  2. {
  3. meta:
  4. description = "Bifrost"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/455e0ded-beff-4f9d-8174-b032ac50c6c6"
  7. date = "2019/08"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"
  12. $string2 = "TFloodParams"
  13. $string3 = "Range:bytes="
  14. $string4 = "Host:"
  15. $string5 = "Connection: keep-alive"
  16. $string6 = "User-Agent:"
  17. $string7 = "Content-Length:"
  18. $string8 = "Referer:"
  19.  
  20. condition:
  21. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  22. }
  23.  
  24. rule Bifrost_mem
  25. {
  26. meta:
  27. description = "Bifrost"
  28. author = "James_inthe_box"
  29. reference = "https://app.any.run/tasks/455e0ded-beff-4f9d-8174-b032ac50c6c6"
  30. date = "2019/08"
  31. maltype = "RAT"
  32.  
  33. strings:
  34. $string1 = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"
  35. $string2 = "TFloodParams"
  36. $string3 = "Range:bytes="
  37. $string4 = "Host:"
  38. $string5 = "Connection: keep-alive"
  39. $string6 = "User-Agent:"
  40. $string7 = "Content-Length:"
  41. $string8 = "Referer:"
  42.  
  43. condition:
  44. all of ($string*) and filesize > 800KB
  45. }
Advertisement
Add Comment
Please, Sign In to add comment