Advertisement
James_inthe_box

Diamondfox yara

Apr 22nd, 2019
486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. rule DiamondFox_bin
  2. {
  3. meta:
  4. description = "DiamondFox stealer"
  5. author = "James_inthe_box"
  6. reference = "cbacda5748836543ceb8710d254f954ac4ec5b130a0fecfeb1205ef9d4e5def1"
  7. date = "2019/04"
  8. maltype = "Stealer"
  9.  
  10. strings:
  11. $string1 = "POS_TIME"
  12. $string2 = "A_GRAB"
  13. $string3 = "<Panel>" wide
  14. $string4 = "&admin=" wide
  15. $string5 = "&user=" wide
  16. $string6 = "USERNAME" wide
  17. $string7 = "&gpu=" wide
  18.  
  19. condition:
  20. uint16(0) == 0x5A4D and all of ($string*) and filesize < 200KB
  21. }
  22.  
  23. rule DiamondFox_mem
  24. {
  25. meta:
  26. description = "DiamondFox stealer"
  27. author = "James_inthe_box"
  28. reference = "cbacda5748836543ceb8710d254f954ac4ec5b130a0fecfeb1205ef9d4e5def1"
  29. date = "2019/04"
  30. maltype = "Stealer"
  31.  
  32. strings:
  33. $string1 = "POS_TIME"
  34. $string2 = "A_GRAB"
  35. $string3 = "<Panel>" wide
  36. $string4 = "&admin=" wide
  37. $string5 = "&user=" wide
  38. $string6 = "USERNAME" wide
  39. $string7 = "&gpu=" wide
  40.  
  41. condition:
  42. all of ($string*) and filesize > 200KB
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement