Advertisement
James_inthe_box

Firebird RAT

Mar 11th, 2020
14,036
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. snort / suricata
  2. alert tcp any any -> any any (msg:"Firebird RAT Detected"; flow:to_server,established; flags:PA; content:"|0001000000ffffffff01000000000000000601000000|"; depth:32; classtype:trojan-activity; sid:20166317; rev:1; metadata:created_at 2020_03_11;)
  3.  
  4. yara
  5. rule Firebird_RAT_bin
  6. {
  7. meta:
  8. description = "Firebird RAT"
  9. author = "James_inthe_box"
  10. reference = ""
  11. date = "2020/3"
  12. maltype = "RAT"
  13.  
  14. strings:
  15. $string1 = "SECAM_K1" ascii
  16. $string2 = "SECAM_L1" ascii
  17. $string3 = "Firebird" ascii
  18. $string4 = "BrowserVNC" ascii
  19. $string5 = "XOR_Universal" ascii
  20. $string6 = "UploadScreenshots" ascii
  21.  
  22. condition:
  23. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  24. }
  25.  
  26. rule Firebird_RAT_mem
  27. {
  28. meta:
  29. description = "Firebird RAT"
  30. author = "James_inthe_box"
  31. reference = ""
  32. date = "2020/3"
  33. maltype = "RAT"
  34.  
  35. strings:
  36. $string1 = "SECAM_K1" ascii
  37. $string2 = "SECAM_L1" ascii
  38. $string3 = "Firebird" ascii
  39. $string4 = "BrowserVNC" ascii
  40. $string5 = "XOR_Universal" ascii
  41. $string6 = "UploadScreenshots" ascii
  42.  
  43. condition:
  44. all of ($string*) and filesize > 800KB
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement