James_inthe_box

Aspire stealer yara

Jul 16th, 2019
659
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. rule Aspire_stealer_dll_bin
  2. {
  3. meta:
  4. description = "Aspire stealer"
  5. author = "James_inthe_box"
  6. reference = "e6a8de879fc52e5588dc963a40aaa7fe8b2059f9ea990d5491247b1c16238358"
  7. date = "2019/07"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "action=connect&username=" wide
  12. $string2 = "&country=" wide
  13. $string3 = "&hardwareid=" wide
  14. $string4 = "&privileges=" wide
  15. $string5 = "&ip=" wide
  16. $string6 = "&os=" wide
  17. $string7 = "&gpu=" wide
  18. $string8 = "&cpu=" wide
  19. $string9 = "&av=" wide
  20.  
  21. condition:
  22. uint16(0) == 0x5A4D and uint8(uint32(0x3c)+23) == 0x21 and all of ($string*) and filesize < 7000KB
  23. }
  24.  
  25. rule Aspire_stealer_dll_mem
  26. {
  27. meta:
  28. description = "Aspire stealer"
  29. author = "James_inthe_box"
  30. reference = "e6a8de879fc52e5588dc963a40aaa7fe8b2059f9ea990d5491247b1c16238358"
  31. date = "2019/07"
  32. maltype = "Stealer"
  33.  
  34. strings:
  35. $string1 = "action=connect&username=" wide
  36. $string2 = "&country=" wide
  37. $string3 = "&hardwareid=" wide
  38. $string4 = "&privileges=" wide
  39. $string5 = "&ip=" wide
  40. $string6 = "&os=" wide
  41. $string7 = "&gpu=" wide
  42. $string8 = "&cpu=" wide
  43. $string9 = "&av=" wide
  44.  
  45. condition:
  46. all of ($string*) and filesize > 7000KB
  47. }
Add Comment
Please, Sign In to add comment