Advertisement
James_inthe_box

Truebot yara sig

Jun 20th, 2019
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. rule TrueBot_bin
  2. {
  3. meta:
  4. description = "TrueBot"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/131c3342-3edb-497a-a6dc-57975603ccc0/"
  7. date = "2019/02"
  8. maltype = "Loader"
  9.  
  10. strings:
  11. $string1 = "api-ms-win-" wide
  12. $string2 = "Tntdll.dll" wide
  13. $string3 = "Content-Type: multipart/form-data; boundary=----qwerty"
  14. $string4 = "n=%x&o=%s&a=%d"
  15. $string5 = "%s\\temps.dat"
  16.  
  17. condition:
  18. uint16(0) == 0x5A4D and all of ($string*) and filesize < 200KB
  19. }
  20.  
  21. rule TrueBot_mem
  22. {
  23. meta:
  24. description = "TrueBot"
  25. author = "James_inthe_box"
  26. reference = "https://app.any.run/tasks/131c3342-3edb-497a-a6dc-57975603ccc0/"
  27. date = "2019/02"
  28. maltype = "Loader"
  29.  
  30. strings:
  31. $string1 = "api-ms-win-" wide
  32. $string2 = "Tntdll.dll" wide
  33. $string3 = "Content-Type: multipart/form-data; boundary=----qwerty"
  34. $string4 = "n=%x&o=%s&a=%d"
  35. $string5 = "%s\\temps.dat"
  36.  
  37. condition:
  38. all of ($string*) and filesize > 200KB
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement