Advertisement
James_inthe_box

Glitchpos yara sig

Aug 20th, 2019
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. rule GlitchPOS_bin
  2. {
  3. meta:
  4. description = "GlitchPOS"
  5. author = "James_inthe_box"
  6. reference = "https://app.any.run/tasks/9ff2b1a4-c847-47f4-94e2-c5b9e1fde66e/"
  7. date = "2019/08"
  8. maltype = "POS Malware"
  9.  
  10. strings:
  11. $string1 = "\\d{13,19}\\W\\d{7}\\w*" wide
  12. $string2 = "vboxmrxnp" wide
  13. $string3 = "set exename=" wide
  14.  
  15. condition:
  16. uint16(0) == 0x5A4D and all of ($string*) and filesize < 80KB
  17. }
  18.  
  19. rule GlitchPOS_mem
  20. {
  21. meta:
  22. description = "GlitchPOS"
  23. author = "James_inthe_box"
  24. reference = "https://app.any.run/tasks/9ff2b1a4-c847-47f4-94e2-c5b9e1fde66e/"
  25. date = "2019/08"
  26. maltype = "POS Malware"
  27.  
  28. strings:
  29. $string1 = "\\d{13,19}\\W\\d{7}\\w*" wide
  30. $string2 = "vboxmrxnp" wide
  31. $string3 = "set exename=" wide
  32.  
  33. condition:
  34. all of ($string*) and filesize > 80KB
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement