Advertisement
James_inthe_box

PasswordRecoveryChrome yara sig

Apr 11th, 2019
556
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. rule PasswordRecoveryChrome_bin
  2. {
  3. meta:
  4. description = "PasswordRecoveryChrome"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/85249df8-bdf0-4b52-887e-e72d9dc2b7a4"
  7. date = "2019/04"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "PasswordRecoveryChrome.exe"
  12. $string2 = "OpenPrinterW"
  13. $string3 = ".aspack"
  14. $string4 = "__dbk_fcall_wrapper"
  15.  
  16. condition:
  17. uint16(0) == 0x5A4D and all of ($string*) and filesize < 2000KB
  18. }
  19.  
  20. rule PasswordRecoveryChrome_mem
  21. {
  22. meta:
  23. description = "PasswordRecoveryChrome"
  24. author = "James_inthe_box"
  25. reference = "https://app.any.run/tasks/85249df8-bdf0-4b52-887e-e72d9dc2b7a4"
  26. date = "2019/04"
  27. maltype = "Stealer"
  28.  
  29. strings:
  30. $string1 = "PasswordRecoveryChrome.exe"
  31. $string2 = "OpenPrinterW"
  32. $string3 = ".aspack"
  33. $string4 = "__dbk_fcall_wrapper"
  34.  
  35. condition:
  36. all of ($string*) and filesize > 2000KB
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement