James_inthe_box

Arcane stealer yara

Apr 10th, 2019
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. rule Arcane_stealer_bin
  2. {
  3. meta:
  4. description = "Arcane stealer"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/eabb7c12-b0f3-46f4-b3f4-ea26870d9841"
  7. date = "2019/04"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "\\DashCore\\" wide
  12. $string2 = "wallet_path" wide
  13. $string3 = "Buy online at @arcanee_bot" wide
  14.  
  15. condition:
  16. uint16(0) == 0x5A4D and all of ($string*) and filesize < 100KB
  17. }
  18.  
  19. rule Arcane_stealer_mem
  20. {
  21. meta:
  22. description = "Arcane stealer"
  23. author = "James_inthe_box"
  24. reference = "https://app.any.run/tasks/eabb7c12-b0f3-46f4-b3f4-ea26870d9841"
  25. date = "2019/04"
  26. maltype = "Stealer"
  27.  
  28. strings:
  29. $string1 = "\\DashCore\\" wide
  30. $string2 = "wallet_path" wide
  31. $string3 = "Buy online at @arcanee_bot" wide
  32.  
  33. condition:
  34. all of ($string*) and filesize > 100KB
  35. }
Add Comment
Please, Sign In to add comment