James_inthe_box

Teamspy yara sig

Mar 28th, 2019
2,121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. dll rules optimized by @cyb3rops
  2.  
  3. rule Teamspy_bin
  4. {
  5. meta:
  6. description = "Teamspy"
  7. author = "James_inthe_box"
  8. reference = "b4c344d31e48903f200988bb10bf5fe838fb2b089a54b6c1c3004a80e037e1d0"
  9. date = "2019/03"
  10. maltype = "Backdoor"
  11.  
  12. strings:
  13. $string1 = "\\Google\\Update\\GoogleUpdate.exe" wide
  14. $string2 = "Value_%d"
  15. $string3 = "Software\\localNETService"
  16. $string4 = "test"
  17. $string5 = "/chk" wide
  18. $string6 = ".dat"
  19. $string7 = "IgnoreNew"
  20.  
  21. condition:
  22. uint16(0) == 0x5A4D and all of ($string*) and filesize < 500KB
  23. }
  24.  
  25. rule Teamspy_mem
  26. {
  27. meta:
  28. description = "Teamspy"
  29. author = "James_inthe_box"
  30. reference = "b4c344d31e48903f200988bb10bf5fe838fb2b089a54b6c1c3004a80e037e1d0"
  31. date = "2019/03"
  32. maltype = "Backdoor"
  33.  
  34. strings:
  35. $string1 = "\\Google\\Update\\GoogleUpdate.exe" wide
  36. $string2 = "Value_%d"
  37. $string3 = "Software\\localNETService"
  38. $string4 = "test"
  39. $string5 = "/chk" wide
  40. $string6 = ".dat"
  41. $string7 = "IgnoreNew"
  42.  
  43. condition:
  44. all of ($string*) and filesize > 500KB
  45. }
  46.  
  47.  
  48. rule Teamspy_dll_bin
  49. {
  50. meta:
  51. description = "Teamspy extracted dll"
  52. author = "James_inthe_box"
  53. reference = "b4c344d31e48903f200988bb10bf5fe838fb2b089a54b6c1c3004a80e037e1d0"
  54. date = "2019/03"
  55. maltype = "Backdoor"
  56.  
  57. strings:
  58. $string1 = "client_id=%.8x&connected=%d&server_port=%d&debug=%d&os=%d.%d.%04d&dgt=%d&dti=%d"
  59.  
  60. condition:
  61. uint16(0) == 0x5A4D and all of ($string*) and filesize < 500KB
  62. }
  63.  
  64. rule Teamspy_dll_mem
  65. {
  66. meta:
  67. description = "Teamspy extracted dll"
  68. author = "James_inthe_box"
  69. reference = "b4c344d31e48903f200988bb10bf5fe838fb2b089a54b6c1c3004a80e037e1d0"
  70. date = "2019/03"
  71. maltype = "Backdoor"
  72.  
  73. strings:
  74. $string1 = "client_id=%.8x&connected=%d&server_port=%d&debug=%d&os=%d.%d.%04d&dgt=%d&dti=%d"
  75.  
  76. condition:
  77. all of ($string*) and filesize > 500KB
  78. }
Advertisement
Add Comment
Please, Sign In to add comment