Advertisement
James_inthe_box

BlacknixRAT snort suricata yara sig

Jul 18th, 2019
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. rule BlacknixRAT_bin
  2. {
  3. meta:
  4. description = "BlacknixRAT"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/e3d845db-09b5-462d-8290-cbb4bb4a505f/"
  7. date = "2019/02"
  8. maltype = "RAT"
  9.  
  10. strings:
  11. $string1 = "[Random-Number-Here]"
  12. $string2 = "ScreenCapture"
  13. $string3 = "TScreenSpy"
  14. $string4 = "KeyLogger"
  15. $string5 = "RemoteShell"
  16.  
  17. condition:
  18. uint16(0) == 0x5A4D and all of ($string*) and filesize < 2000KB
  19. }
  20.  
  21. alert tcp any any -> any 80 (msg:"Blacknix RAT Detected"; flow:established,to_server; content:"|32|"; depth:1; content:"|7c 78 01 6d 8e|"; within:10; reference:url,https://app.any.run/tasks/e3d845db-09b5-462d-8290-cbb4bb4a505f/; classtype:trojan-activity; sid:20166298; rev:1; metadata:created_at 2019_07_18;)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement