James_inthe_box

StealerNeko

Apr 22nd, 2019
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. #yara sig:
  2. rule StealerNeko_bin
  3. {
  4. meta:
  5. description = "StealerNeko"
  6. author = "James_inthe_box"
  7. reference = "a29d70f5c97d7d4242069ceff237d4946ba551b7786a2e441494f0c555aefca4"
  8. date = "2019/04"
  9. maltype = "Stealer"
  10.  
  11. strings:
  12. $string1 = "country=%s&cc=%s&desk=%s&autof=%s&cookies=%s&filezilla=%s&passwords=%s&telegram=%s&wallet=%s&winver=%s&pidgin=%s&psi=%s&psiplus=%s&steam=%s&winscp=%s&battle=%s&amazon=%s&file=%s"
  13.  
  14. condition:
  15. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  16. }
  17.  
  18. rule StealerNeko_mem
  19. {
  20. meta:
  21. description = "StealerNeko"
  22. author = "James_inthe_box"
  23. reference = "a29d70f5c97d7d4242069ceff237d4946ba551b7786a2e441494f0c555aefca4"
  24. date = "2019/04"
  25. maltype = "Stealer"
  26.  
  27. strings:
  28. $string1 = "country=%s&cc=%s&desk=%s&autof=%s&cookies=%s&filezilla=%s&passwords=%s&telegram=%s&wallet=%s&winver=%s&pidgin=%s&psi=%s&psiplus=%s&steam=%s&winscp=%s&battle=%s&amazon=%s&file=%s"
  29.  
  30. condition:
  31. all of ($string*) and filesize > 800KB
  32. }
  33.  
  34.  
  35. #snort / #suricata sig:
  36. alert tcp any any -> any $HTTP_PORTS (msg:"StealerNeko Exfiltration"; flow:established,to_server; content:"POST"; http_method; content:"country="; fast_pattern; content:"&cc="; content:"&desk="; content:"&autof="; content:"&cookies=";reference:md5,216a00647603b66967cda5d91638f18a; classtype:trojan-activity; sid:20166291; rev:1; metadata:created_at 2019_04_22;)
Add Comment
Please, Sign In to add comment