Advertisement
James_inthe_box

Kimsuky yara sig

Feb 12th, 2020
14,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. rule kimsuky_bin
  2. {
  3. meta:
  4. description = "Kimsuky"
  5. author = "James_inthe_box"
  6. reference = "cf87475a87cb2172e73ee6afa7eb6384"
  7. date = "2020/02"
  8. maltype = "APT jazz"
  9.  
  10. strings:
  11. $string1 = "tmp.LOG"
  12. $string2 = "%s_tiger"
  13. $string3 = "%s_lion"
  14. $string4 = "&NOTE="
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 800KB
  18. }
  19.  
  20. rule kimsuky_mem
  21. {
  22. meta:
  23. description = "Kimsuky"
  24. author = "James_inthe_box"
  25. reference = "cf87475a87cb2172e73ee6afa7eb6384"
  26. date = "2020/02"
  27. maltype = "APT jazz"
  28.  
  29. strings:
  30. $string1 = "tmp.LOG"
  31. $string2 = "%s_tiger"
  32. $string3 = "%s_lion"
  33. $string4 = "&NOTE="
  34.  
  35. condition:
  36. all of ($string*) and filesize > 800KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement